# HG changeset patch # User Matti Hamalainen # Date 1208752257 -10800 # Node ID 042eaca39ded46982bfd39bfd9c0e0c5d1be9f3b # Parent 1f0aa82891a5c139a6d7d0ff0508f6f95c43abe9 Test for socklen_t was accidentally reversed, and socklen_t replacement got defined when it was available; fixed. diff -r 1f0aa82891a5 -r 042eaca39ded configure.ac --- 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 #include -], [socklen_t s;], [ +], [socklen_t s;],, [ AC_DEFINE([socklen_t], [int], [Define to int if the socklen_t type is missing]) ])