mirror of
https://github.com/moparisthebest/curl
synced 2024-11-05 00:55:04 -05:00
configure: check for declaration of getpwuid_r
On our x86 Android toolchain, getpwuid_r is implemented but the header is missing: netrc.c:81:7: error: implicit declaration of function 'getpwuid_r' [-Werror=implicit-function-declaration] Unfortunately, the function is used in curl_ntlm_wb.c, too, so I moved the prototype to curl_setup.h. Signed-off-by: Bernhard Walle <bernhard@bwalle.de> Closes #2609
This commit is contained in:
parent
7179b8393e
commit
9c33813d83
@ -3618,6 +3618,11 @@ case $host in
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
AC_CHECK_DECLS([getpwuid_r], [], [AC_DEFINE(HAVE_DECL_GETPWUID_R_MISSING, 1, "Set if getpwuid_r() declaration is missing")],
|
||||||
|
[[#include <pwd.h>
|
||||||
|
#include <sys/types.h>]])
|
||||||
|
|
||||||
|
|
||||||
AC_CHECK_FUNCS([geteuid \
|
AC_CHECK_FUNCS([geteuid \
|
||||||
getpass_r \
|
getpass_r \
|
||||||
getppid \
|
getppid \
|
||||||
|
@ -800,4 +800,11 @@ endings either CRLF or LF so 't' is appropriate.
|
|||||||
#define CURL_SA_FAMILY_T unsigned short
|
#define CURL_SA_FAMILY_T unsigned short
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Some versions of the Android SDK is missing the declaration */
|
||||||
|
#if defined(HAVE_GETPWUID_R) && defined(HAVE_DECL_GETPWUID_R_MISSING)
|
||||||
|
struct passwd;
|
||||||
|
int getpwuid_r(uid_t uid, struct passwd *pwd, char *buf,
|
||||||
|
size_t buflen, struct passwd **result);
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* HEADER_CURL_SETUP_H */
|
#endif /* HEADER_CURL_SETUP_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user