diff options
author | Bernhard Walle <bernhard@bwalle.de> | 2018-05-27 10:38:07 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-05-28 15:23:18 +0200 |
commit | 645948dffb363da05b2fe26e291b82f9172bab77 (patch) | |
tree | ca27c5c108a82486ff48178323d92b2b5aedad04 /CMakeLists.txt | |
parent | 06a72880d6a1bfb1517df4b24d892eb6922de114 (diff) | |
download | curl-645948dffb363da05b2fe26e291b82f9172bab77.tar.gz |
cmake: check for getpwuid_r
The autotools-based build system does it, so we do it also in CMake.
Bug: #2609
Signed-off-by: Bernhard Walle <bernhard@bwalle.de>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 685faf934..b85e1f58d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -850,6 +850,7 @@ check_symbol_exists(sigsetjmp "${CURL_INCLUDES}" HAVE_SIGSETJMP) check_symbol_exists(getpass_r "${CURL_INCLUDES}" HAVE_GETPASS_R) check_symbol_exists(strlcat "${CURL_INCLUDES}" HAVE_STRLCAT) check_symbol_exists(getpwuid "${CURL_INCLUDES}" HAVE_GETPWUID) +check_symbol_exists(getpwuid_r "${CURL_INCLUDES}" HAVE_GETPWUID_R) check_symbol_exists(geteuid "${CURL_INCLUDES}" HAVE_GETEUID) check_symbol_exists(utime "${CURL_INCLUDES}" HAVE_UTIME) check_symbol_exists(gmtime_r "${CURL_INCLUDES}" HAVE_GMTIME_R) |