From: Chris Hanson Date: Tue, 29 Jan 2002 06:12:55 +0000 (+0000) Subject: In socklen_t test, must include also. X-Git-Tag: 20090517-FFI~2281 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=eda4654b59fd213fe752a121bb1e80ecc3f9fa5e;p=mit-scheme.git In socklen_t test, must include also. --- diff --git a/v7/src/microcode/configure.in b/v7/src/microcode/configure.in index 328b51cb0..e40446c94 100644 --- a/v7/src/microcode/configure.in +++ b/v7/src/microcode/configure.in @@ -17,7 +17,7 @@ dnl along with this program; if not, write to the Free Software dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA dnl 02111-1307, USA. -AC_REVISION([$Id: configure.in,v 11.14 2002/01/29 04:59:03 cph Exp $]) +AC_REVISION([$Id: configure.in,v 11.15 2002/01/29 06:12:55 cph Exp $]) AC_INIT(boot.c) AC_CONFIG_HEADER(config.h) @@ -166,8 +166,9 @@ fi if test "${ac_cv_header_sys_socket_h}" = "yes"; then AC_MSG_CHECKING([for socklen_t]) - AC_TRY_COMPILE( - [#include ], + AC_TRY_COMPILE([ +#include +#include ], [socklen_t x;], [scheme_cv_type_socklen_t=yes], [scheme_cv_type_socklen_t=no])