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

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Baulig <martin.baulig@xamarin.com>2016-07-20 21:31:55 +0300
committerMartin Baulig <martin.baulig@xamarin.com>2016-07-20 21:31:55 +0300
commitf38aad388ab7aae582a77f9bc681ff6f7f1be24f (patch)
tree3c06dc6eef9fb1d87cb433fa30c6226c8fd16d05
parent2f922bd2644629f3a4d0cd8c3b6c0ce1239fa9c2 (diff)
Don't define XOPEN_SOURCE.
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 388b7505..f3c73412 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -92,7 +92,7 @@ endif()
if((CMAKE_COMPILER_IS_GNUCXX AND CMAKE_C_COMPILER_VERSION VERSION_GREATER "4.8.99") OR
CMAKE_CXX_COMPILER_ID MATCHES "Clang")
- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c11 -D_XOPEN_SOURCE=700")
+ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c11")
endif()
if(FUZZ)