From f3e8be87ebf4eb489bcf983cf60f5f55755a8740 Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Fri, 31 Dec 1999 08:59:04 +1100 Subject: - Fix broken autoconf typedef detection. Report from Marc G. Fournier --- ChangeLog | 2 ++ configure.in | 7 ++++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index cacdb852f..4dac089f0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,8 @@ - Fix password support on systems with a mixture of shadowed and non-shadowed passwords (e.g. NIS). Report and fix from HARUYAMA Seigo + - Fix broken autoconf typedef detection. Report from Marc G. + Fournier 19991230 - OpenBSD CVS updates: diff --git a/configure.in b/configure.in index 4e5bc602d..dd3e16841 100644 --- a/configure.in +++ b/configure.in @@ -184,8 +184,10 @@ AC_TRY_COMPILE( AC_MSG_CHECKING([For socklen_t]) AC_TRY_COMPILE( - [#include ], - [#include ], + [ + #include + #include + ], [socklen_t foo; foo = 1235;], [ AC_DEFINE(HAVE_SOCKLEN_T) @@ -197,7 +199,6 @@ AC_TRY_COMPILE( AC_MSG_CHECKING([For size_t]) AC_TRY_COMPILE( [#include ], - [#include ], [size_t foo; foo = 1235;], [ AC_DEFINE(HAVE_SIZE_T) -- cgit v1.2.3