gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 42/163: cmake: check for getpwuid_r


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 42/163: cmake: check for getpwuid_r
Date: Sun, 05 Aug 2018 12:36:08 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit 645948dffb363da05b2fe26e291b82f9172bab77
Author: Bernhard Walle <address@hidden>
AuthorDate: Sun May 27 10:38:07 2018 +0200

    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 <address@hidden>
---
 CMakeLists.txt          | 1 +
 lib/curl_config.h.cmake | 3 +++
 2 files changed, 4 insertions(+)

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)
diff --git a/lib/curl_config.h.cmake b/lib/curl_config.h.cmake
index 4b12083f2..a890d8ce6 100644
--- a/lib/curl_config.h.cmake
+++ b/lib/curl_config.h.cmake
@@ -235,6 +235,9 @@
 /* Define to 1 if you have the `getpwuid' function. */
 #cmakedefine HAVE_GETPWUID 1
 
+/* Define to 1 if you have the `getpwuid_r' function. */
+#cmakedefine HAVE_GETPWUID_R 1
+
 /* Define to 1 if you have the `getrlimit' function. */
 #cmakedefine HAVE_GETRLIMIT 1
 

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]