diff options
author | Hans Kristian Rosbach <hk-git@circlestorm.org> | 2022-09-14 21:26:32 +0200 |
---|---|---|
committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2023-03-17 21:27:56 +0100 |
commit | 76c61a8f8aa5d1ea287e79967f731977e77896ef (patch) | |
tree | f6a7b99577bcef431f635497bc1a51c6c34f5f5d | |
parent | 01759b4f32a8b2c791335deaac81a71dc29a7a03 (diff) |
Remove errant space in cmake posix specifier
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index f8c1f13..bb29d76 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -382,7 +382,7 @@ check_function_exists(strerror HAVE_STRERROR) if(NOT HAVE_STRERROR) add_definitions(-DNO_STRERROR) endif() -set(CMAKE_REQUIRED_DEFINITIONS -D _POSIX_C_SOURCE=200112L) +set(CMAKE_REQUIRED_DEFINITIONS -D_POSIX_C_SOURCE=200112L) check_function_exists(posix_memalign HAVE_POSIX_MEMALIGN) if(HAVE_POSIX_MEMALIGN) add_definitions(-DHAVE_POSIX_MEMALIGN) |