diff options
author | Nick Wellnhofer <[email protected]> | 2015-02-01 23:46:48 +0100 |
---|---|---|
committer | Nick Wellnhofer <[email protected]> | 2015-02-02 15:25:09 +0100 |
commit | cd9a269bbda29a26a9bf6b8b47bd12dec64e3df2 (patch) | |
tree | 7237e969b252f233e069a2e00c3064929dbebf99 /src/CMakeLists.txt | |
parent | 57a756462f30d7f2f03c8d8de9ea874cf9536fa9 (diff) |
Don't rely on strnlen being available
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 044b7e4..2179c08 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -136,7 +136,7 @@ if(MSVC) endif() set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /wd4127 /wd4244 /wd4267 /wd4706 /wd4800 /D_CRT_SECURE_NO_WARNINGS") elseif(CMAKE_COMPILER_IS_GNUCC OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -std=c99 -pedantic -D_GNU_SOURCE") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -std=c99 -pedantic") endif() # Compile as C++ under MSVC |