* configure.ac: Removed the extra definition of

HAVE_C_TYPE_SOCKLEN_T, which is unused.
This commit is contained in:
Roland Illig 2005-05-17 17:06:14 +00:00
parent 6cabb46ac9
commit 2e7fa0fa37
2 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2005-05-17 Roland Illig <roland.illig@gmx.de>
* configure.ac: Removed the extra definition of
HAVE_C_TYPE_SOCKLEN_T, which is unused.
2005-05-14 Roland Illig <roland.illig@gmx.de>
* syntax/diff.syntax: Lines starting with a <tab> character are

View File

@ -216,10 +216,11 @@ AC_CHECK_TYPE(off_t, long)
AC_TYPE_PID_T
AC_TYPE_UID_T
AC_CHECK_TYPE(nlink_t, unsigned int)
AC_CHECK_TYPES([socklen_t],
AC_DEFINE([HAVE_C_TYPE_SOCKLEN_T], [1], [Define to 1 if socklen_t is defined by <sys/socket.h>]),,
[#include <sys/types.h>
#include <sys/socket.h>])
AC_CHECK_TYPES([socklen_t],,,
[
#include <sys/types.h>
#include <sys/socket.h>
])
dnl This is needed for regex.c only
AC_CHECK_TYPE(uintptr_t,