summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-12-31 08:59:04 +1100
committerDamien Miller <djm@mindrot.org>1999-12-31 08:59:04 +1100
commitf3e8be87ebf4eb489bcf983cf60f5f55755a8740 (patch)
tree712ad39f34ec510e249d448a4f6e8f78b5d5aec9
parent8eb0fd6d6fee368ff0c3de479b0c18763fe3ea3a (diff)
- Fix broken autoconf typedef detection. Report from Marc G.
Fournier <marc.fournier@acadiau.ca>
-rw-r--r--ChangeLog2
-rw-r--r--configure.in7
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 @@
2 - Fix password support on systems with a mixture of shadowed and 2 - Fix password support on systems with a mixture of shadowed and
3 non-shadowed passwords (e.g. NIS). Report and fix from 3 non-shadowed passwords (e.g. NIS). Report and fix from
4 HARUYAMA Seigo <haruyama@nt.phys.s.u-tokyo.ac.jp> 4 HARUYAMA Seigo <haruyama@nt.phys.s.u-tokyo.ac.jp>
5 - Fix broken autoconf typedef detection. Report from Marc G.
6 Fournier <marc.fournier@acadiau.ca>
5 7
619991230 819991230
7 - OpenBSD CVS updates: 9 - 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(
184 184
185AC_MSG_CHECKING([For socklen_t]) 185AC_MSG_CHECKING([For socklen_t])
186AC_TRY_COMPILE( 186AC_TRY_COMPILE(
187 [#include <sys/types.h>], 187 [
188 [#include <sys/socket.h>], 188 #include <sys/types.h>
189 #include <sys/socket.h>
190 ],
189 [socklen_t foo; foo = 1235;], 191 [socklen_t foo; foo = 1235;],
190 [ 192 [
191 AC_DEFINE(HAVE_SOCKLEN_T) 193 AC_DEFINE(HAVE_SOCKLEN_T)
@@ -197,7 +199,6 @@ AC_TRY_COMPILE(
197AC_MSG_CHECKING([For size_t]) 199AC_MSG_CHECKING([For size_t])
198AC_TRY_COMPILE( 200AC_TRY_COMPILE(
199 [#include <sys/types.h>], 201 [#include <sys/types.h>],
200 [#include <sys/socket.h>],
201 [size_t foo; foo = 1235;], 202 [size_t foo; foo = 1235;],
202 [ 203 [
203 AC_DEFINE(HAVE_SIZE_T) 204 AC_DEFINE(HAVE_SIZE_T)