Skip to content
Snippets Groups Projects
Commit 4f255ffb authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

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

parent 80d75b0e
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment