aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--configure.in2
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 3d410222cf..fd0a3beff0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-04-14 Jeffrey Stedfast <fejj@ximian.com>
+
+ * configure.in: Check for socklen_t and if it doesn't exist,
+ define it as unsigned int.
+
2002-04-04 JP Rosevear <jpr@ximian.com>
* configure.in: Fix static linking on solaris which doesn't have a
diff --git a/configure.in b/configure.in
index 6a677a8828..29c8da0212 100644
--- a/configure.in
+++ b/configure.in
@@ -117,6 +117,8 @@ GNOME_X_CHECKS
EVO_CHECK_LIB(gnome-libs, gnome, 1.2.9)
AC_CHECK_HEADERS(alloca.h)
+AC_CHECK_TYPE(socklen_t, unsigned int)
+
ALL_LINGUAS="az bg ca da de el en_AU en_GB es et eu fi fr ga gl hu it ja ko lt lv nl nn no pl pt pt_BR ro ru sk sl sv tr uk zh_CN zh_TW"
AM_GNOME_GETTEXT
localedir='$(prefix)/$(DATADIRNAME)/locale'