Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2016-01-16 07:34:49 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-01-16 07:38:57 +0300
commit31375a1b21a98f5ce6abdd46a41a1e287d3d5050 (patch)
tree00deaadbbe4e66173cab1008bd553459315db9d4 /build_files
parent92b222a158877eeb90cc391ff8f64c133153bdf9 (diff)
Cleanup: stdbool no longer optional, remove checks
Diffstat (limited to 'build_files')
-rw-r--r--build_files/cmake/macros.cmake11
1 files changed, 0 insertions, 11 deletions
diff --git a/build_files/cmake/macros.cmake b/build_files/cmake/macros.cmake
index edc5cf925c9..00313ba36d7 100644
--- a/build_files/cmake/macros.cmake
+++ b/build_files/cmake/macros.cmake
@@ -799,17 +799,6 @@ macro(TEST_SSE_SUPPORT
unset(CMAKE_REQUIRED_FLAGS)
endmacro()
-macro(TEST_STDBOOL_SUPPORT)
- include(CheckCSourceRuns)
-
- # This program will compile correctly if and only if
- # this C compiler supports C99 stdbool.
- check_c_source_runs("
- #include <stdbool.h>
- int main(void) { return (int)false; }"
- HAVE_STDBOOL_H)
-endmacro()
-
# Only print message if running CMake first time
macro(message_first_run)
if(FIRST_RUN)