diff options
author | tux3 <barrdetwix@gmail.com> | 2018-12-14 14:38:35 +0100 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2018-12-15 09:18:02 -0600 |
commit | a675d33eab0fa524211918fdd0da0810343f0b59 (patch) | |
tree | a1a5021d837d4026531f123cb44881b1f81bd8e7 | |
parent | 4842b6964d1cd3c5cb1495807212b95d11535540 (diff) | |
download | portable-a675d33eab0fa524211918fdd0da0810343f0b59.tar.gz portable-a675d33eab0fa524211918fdd0da0810343f0b59.tar.bz2 portable-a675d33eab0fa524211918fdd0da0810343f0b59.zip |
Fix CMake not finding getpagesize for Android 19
-rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 8fde8cf..5b5ca8f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
@@ -1,5 +1,6 @@ | |||
1 | cmake_minimum_required (VERSION 2.8.8) | 1 | cmake_minimum_required (VERSION 3.0) |
2 | include(CheckFunctionExists) | 2 | include(CheckFunctionExists) |
3 | include(CheckSymbolExists) | ||
3 | include(CheckLibraryExists) | 4 | include(CheckLibraryExists) |
4 | include(CheckIncludeFiles) | 5 | include(CheckIncludeFiles) |
5 | include(CheckTypeSize) | 6 | include(CheckTypeSize) |
@@ -229,7 +230,7 @@ if(HAVE_GETENTROPY) | |||
229 | add_definitions(-DHAVE_GETENTROPY) | 230 | add_definitions(-DHAVE_GETENTROPY) |
230 | endif() | 231 | endif() |
231 | 232 | ||
232 | check_function_exists(getpagesize HAVE_GETPAGESIZE) | 233 | check_symbol_exists(getpagesize unistd.h HAVE_GETPAGESIZE) |
233 | if(HAVE_GETPAGESIZE) | 234 | if(HAVE_GETPAGESIZE) |
234 | add_definitions(-DHAVE_GETPAGESIZE) | 235 | add_definitions(-DHAVE_GETPAGESIZE) |
235 | endif() | 236 | endif() |