mirror of https://github.com/MidnightCommander/mc
* configure.ac: Removed the extra definition of
HAVE_C_TYPE_SOCKLEN_T, which is unused.
This commit is contained in:
parent
6cabb46ac9
commit
2e7fa0fa37
|
@ -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
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue