From: Richard M. Stallman Date: Fri, 30 Jul 1993 07:55:42 +0000 (+0000) Subject: Add code to set HAVE_INET_SOCKETS. X-Git-Tag: emacs-19.34~11497 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9b973fd79bcbb6753d1495d49c58a6a1c0eac304;p=emacs.git Add code to set HAVE_INET_SOCKETS. --- diff --git a/configure1.in b/configure1.in index 368317ed498..a0ebe41aa9a 100755 --- a/configure1.in +++ b/configure1.in @@ -961,6 +961,17 @@ AC_RETSIGTYPE dnl checks for functions AC_ALLOCA AC_HAVE_FUNCS(gettimeofday gethostname dup2 rename closedir) +ok_so_far=true +AC_FUNC_CHECK(socket,, ok_so_far=) +if test -n "$ok_so_far"; then + AC_HEADER_CHECK(netinet/in.h,, ok_so_far=) +fi +if test -n "$ok_so_far"; then + AC_HEADER_CHECK(arpa/inet.h,, ok_so_far=) +fi +if test -n "$ok_so_far"; then + AC_DEFINE(HAVE_INET_SOCKETS) +fi dnl checks for structure members AC_STRUCT_TM