diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-04-14 13:29:44 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-04-14 13:29:44 +0800 |
commit | bebaa90ca905cdb5007c3f7e65432f0f2963c408 (patch) | |
tree | 00527fe8a8b4b40aa384be1cf917f5f1dcd705d3 /configure.in | |
parent | 2337f88f58f539528d3be11278f3fd9927a0bec5 (diff) | |
download | gsoc2013-evolution-bebaa90ca905cdb5007c3f7e65432f0f2963c408.tar gsoc2013-evolution-bebaa90ca905cdb5007c3f7e65432f0f2963c408.tar.gz gsoc2013-evolution-bebaa90ca905cdb5007c3f7e65432f0f2963c408.tar.bz2 gsoc2013-evolution-bebaa90ca905cdb5007c3f7e65432f0f2963c408.tar.lz gsoc2013-evolution-bebaa90ca905cdb5007c3f7e65432f0f2963c408.tar.xz gsoc2013-evolution-bebaa90ca905cdb5007c3f7e65432f0f2963c408.tar.zst gsoc2013-evolution-bebaa90ca905cdb5007c3f7e65432f0f2963c408.zip |
Check for socklen_t and if it doesn't exist, define it as unsigned int.
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.
svn path=/trunk/; revision=16462
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 2 insertions, 0 deletions
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' |