repo: ngircd
action: commit
revision: 
path_from: 
revision_from: 0c33f46fc2b52ed4c3a74cf62c8120721941ab6e:
path_to: 
revision_to: 
git.thebackupbox.net
ngircd
git clone git://git.thebackupbox.net/ngircd
commit 0c33f46fc2b52ed4c3a74cf62c8120721941ab6e
Author: Alexander Barton 
Date:   Sun Jun 26 13:42:11 2005 +0000

    Fixed wrong order of #includes in test for "socklen_t" (caused problems on OpenBSD).

diff --git a/configure.in b/configure.in
index 1ebaadbf6711495898f1a35e643da29bcf97e855..
index ..698fd4fe8f7528b7c1abba4db58a15c1171be0a8 100644
--- a/configure.in
+++ b/configure.in
@@ -8,7 +8,7 @@
 # (at your option) any later version.
 # Please read the file COPYING, README and AUTHORS for more information.
 #
-# $Id: configure.in,v 1.110 2005/05/21 21:34:47 alex Exp $
+# $Id: configure.in,v 1.111 2005/06/26 13:42:11 alex Exp $
 #

 # -- Initialisation --
@@ -91,8 +91,8 @@ AC_CHECK_HEADERS([arpa/inet.h ctype.h malloc.h stdbool.h stddef.h varargs.h])

 AC_MSG_CHECKING(whether socklen_t exists)
 AC_TRY_COMPILE([
-#include 
 #include 
+#include 
 	],[
 	socklen_t a, b;
 	a = 2; b = 4; a += b;

-----END OF PAGE-----