summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-01-25 12:28:46 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-01-25 12:28:46 +0000
commit4f255ffbeb3bf3b4076afc22c14d2641077feb0d (patch)
tree26768960186fa1b64c754ed2bcc8da8042e985b7
parent80d75b0eafb980fb186e7c4cc39f52e9b656c5dc (diff)
downloadgnurl-4f255ffbeb3bf3b4076afc22c14d2641077feb0d.tar.gz
gnurl-4f255ffbeb3bf3b4076afc22c14d2641077feb0d.tar.bz2
gnurl-4f255ffbeb3bf3b4076afc22c14d2641077feb0d.zip
make the configure script die if select() or socket() is missing
-rw-r--r--configure.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index a1af285ab..ae7ca6540 100644
--- a/configure.in
+++ b/configure.in
@@ -628,6 +628,9 @@ AC_CHECK_FUNCS( socket \
dnl removed 'getpass' check on October 26, 2000
if test "$ac_cv_func_select" != "yes"; then
+ AC_MSG_ERROR(Can't work without an existing select() function)
+fi
+if test "$ac_cv_func_socket" != "yes"; then
AC_MSG_ERROR(Can't work without an existing socket() function)
fi