changeset 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 1f0aa82891a5
children 171e3b90d718
files configure.ac
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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])
 ])