1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

make the configure script die if select() or socket() is missing

This commit is contained in:
Daniel Stenberg 2001-01-25 12:28:46 +00:00
parent 80d75b0eaf
commit 4f255ffbeb

View File

@ -628,6 +628,9 @@ AC_CHECK_FUNCS( socket \
dnl removed 'getpass' check on October 26, 2000 dnl removed 'getpass' check on October 26, 2000
if test "$ac_cv_func_select" != "yes"; then 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) AC_MSG_ERROR(Can't work without an existing socket() function)
fi fi