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.0.7~29 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=76c61a8f8aa5d1ea287e79967f731977e77896ef;p=thirdparty%2Fzlib-ng.git Remove errant space in cmake posix specifier --- diff --git a/CMakeLists.txt b/CMakeLists.txt index f8c1f137..bb29d76d 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)