diff options
Diffstat (limited to '')
-rw-r--r-- | src/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 9758c2e..9174061 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -4,6 +4,9 @@ else() add_compile_options(-std=c17 -Wpedantic -Wall -Wextra -Werror) endif() +# Even w/ _POSIX_C_SOURCE=200809L, we still need accept4, pipe2, execvpe, etc., +# which are all _GNU_SOURCE-only (at least for glibc). Try compiling without +# any features macros defined at all, and prepare to be amazed! add_compile_definitions(_GNU_SOURCE) add_compile_definitions(VERSION="${PROJECT_VERSION}") |