From: Hans Kristian Rosbach Date: Wed, 14 Sep 2022 19:26:32 +0000 (+0200) Subject: Remove errant space in cmake posix specifier X-Git-Tag: 2.1.0-beta1~159 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb8af972f3df20b3f1e2b00c9d2895cb1981abc5;p=thirdparty%2Fzlib-ng.git Remove errant space in cmake posix specifier --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 8ca63a30f..65827c227 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -333,7 +333,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)