- Fix broken autoconf typedef detection. Report from Marc G.
Fournier <marc.fournier@acadiau.ca>
This commit is contained in:
parent
8eb0fd6d6f
commit
f3e8be87eb
|
@ -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:
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue