diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 7 insertions, 0 deletions
@@ -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' |