Skip to content

Commit

Permalink
make the configure script die if select() or socket() is missing
Browse files Browse the repository at this point in the history
  • Loading branch information
bagder committed Jan 25, 2001
1 parent 80d75b0 commit 4f255ff
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 4f255ff

Please sign in to comment.