From 90458b4b3f837ab817b1941142a32867b10d0bdc Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Mon, 8 Jan 2007 21:48:39 +0000 Subject: [PATCH] * Fix the socklen_t type detection on Linux. --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 3d97a8b..e16aefe 100644 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,8 @@ AC_CHECK_TYPES(sighandler_t, [], [], AC_CHECK_TYPES(sig_t, [], [], [#include ]) AC_CHECK_TYPES(socklen_t, [], [], - [#include ]) + [#include + #include ]) AC_CHECK_FUNCS(getopt_long, [AC_DEFINE(HAVE_GETOPT_LONG, 1, Define to 1 if you have the `getopt_long' function.)],