- Fix broken autoconf typedef detection. Report from Marc G.

Fournier <marc.fournier@acadiau.ca>
This commit is contained in:
Damien Miller 1999-12-31 08:59:04 +11:00
parent 8eb0fd6d6f
commit f3e8be87eb
2 changed files with 6 additions and 3 deletions

View File

@ -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 <haruyama@nt.phys.s.u-tokyo.ac.jp>
- Fix broken autoconf typedef detection. Report from Marc G.
Fournier <marc.fournier@acadiau.ca>
19991230
- OpenBSD CVS updates:

View File

@ -184,8 +184,10 @@ AC_TRY_COMPILE(
AC_MSG_CHECKING([For socklen_t])
AC_TRY_COMPILE(
[#include <sys/types.h>],
[#include <sys/socket.h>],
[
#include <sys/types.h>
#include <sys/socket.h>
],
[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 <sys/types.h>],
[#include <sys/socket.h>],
[size_t foo; foo = 1235;],
[
AC_DEFINE(HAVE_SIZE_T)