commit 5af85205cb2b2cd5583e3de0fef4ec87ef70fa30
parent f3634111c5c3a794478a6f04fb09453408b8efc1
Author: Frederic Cambus <fred@statdns.com>
Date: Tue, 30 Mar 2021 21:35:46 +0200
Stop defining _GNU_SOURCE in CMakeLists.txt, it's not needed anymore.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
@@ -46,7 +46,7 @@ if(NOT HAVE_PLEDGE)
set (SRC ${SRC} compat/pledge.cpp)
endif()
-add_definitions(-D_GNU_SOURCE -Wall -Wextra -std=c++11 -pedantic)
+add_definitions(-Wall -Wextra -std=c++11 -pedantic)
add_executable(statzone ${SRC})
install(TARGETS statzone DESTINATION ${CMAKE_INSTALL_BINDIR})