diff configure.ac @ 4486:042eaca39ded

Test for socklen_t was accidentally reversed, and socklen_t replacement got defined when it was available; fixed.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 21 Apr 2008 07:30:57 +0300
parents 925df071b0c7
children a3566b1f5222
line wrap: on
line diff
--- a/configure.ac	Mon Apr 21 07:30:11 2008 +0300
+++ b/configure.ac	Mon Apr 21 07:30:57 2008 +0300
@@ -145,7 +145,7 @@
 AUD_TRY_COMPILE([for socklen_t], [have_socklen_t], [
 #include <sys/types.h>
 #include <sys/socket.h>
-], [socklen_t s;], [
+], [socklen_t s;],, [
     AC_DEFINE([socklen_t], [int], [Define to int if the socklen_t type is missing])
 ])