diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-03-14 16:05:31 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-03-14 16:05:31 +0000 |
commit | 92186dc3d3344353246e2e12f6e9730bd6178dd5 (patch) | |
tree | 921f96d44d26cb985c6fc3a6a4704ca102390180 | |
parent | 7bd6507eec7cff0e2a4673a0feaca3378f2d0f45 (diff) | |
download | curl-92186dc3d3344353246e2e12f6e9730bd6178dd5.tar.gz |
checks for a few functions and include files more for the new getpwuid()
stuff in lib/netrc.c
-rw-r--r-- | configure.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 6451473a6..24e470cbd 100644 --- a/configure.in +++ b/configure.in @@ -673,6 +673,7 @@ AC_CHECK_HEADERS( \ winsock.h \ time.h \ io.h \ + pwd.h ) dnl Check for libz header @@ -746,7 +747,9 @@ AC_CHECK_FUNCS( socket \ sigaction \ signal \ getpass_r \ - strlcat + strlcat \ + getpwuid \ + geteuid ) dnl removed 'getpass' check on October 26, 2000 |