1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-14 11:49:53 +03:00
aports/community/cgreen/cmake-fortify-headers.patch
2024-09-26 14:36:00 +00:00

16 lines
567 B
Diff

diff --git a/cmake/Modules/DefineCompilerFlags.cmake b/cmake/Modules/DefineCompilerFlags.cmake
index 4d90f36..cf6e459 100644
--- a/cmake/Modules/DefineCompilerFlags.cmake
+++ b/cmake/Modules/DefineCompilerFlags.cmake
@@ -52,11 +52,6 @@ if (UNIX)
endif (WITH_FPIC)
endif (NOT CYGWIN)
- check_c_compiler_flag("-D_FORTIFY_SOURCE=2" WITH_FORTIFY_SOURCE)
- if (WITH_FORTIFY_SOURCE)
- add_definitions(-D_FORTIFY_SOURCE=2)
- endif (WITH_FORTIFY_SOURCE)
-
if (NOT CMAKE_BUILD_TYPE STREQUAL "Debug")
add_definitions(-O)
endif ()