changeset 93:97b3d5c022af

2003-1-21 Brian Masney <masneyb@gftp.org> * configure.in - fix for Solaris. Move the initial declaration up in the source file
author masneyb
date Wed, 22 Jan 2003 00:00:26 +0000
parents c11cef32103e
children 74287e8950da
files ChangeLog configure.in
diffstat 2 files changed, 8 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Tue Jan 21 23:58:25 2003 +0000
+++ b/ChangeLog	Wed Jan 22 00:00:26 2003 +0000
@@ -1,3 +1,7 @@
+2003-1-21 Brian Masney <masneyb@gftp.org>
+	* configure.in - fix for Solaris. Move the initial declaration up
+	in the source file
+
 2003-1-21 Brian Masney <masneyb@gftp.org>
 	* lib/gftp.h - added server type defines. Added server_type field to 
 	gftp_request
@@ -463,7 +467,7 @@
 
 	* cvsclean - added this script
 
-	* *.[ch] - added $Id: ChangeLog,v 1.53 2003/01/21 23:46:01 masneyb Exp $ tags
+	* *.[ch] - added $Id: ChangeLog,v 1.54 2003/01/22 00:00:26 masneyb Exp $ tags
 
 	* debian/* - updated files from Debian maintainer
 
--- a/configure.in	Tue Jan 21 23:58:25 2003 +0000
+++ b/configure.in	Wed Jan 22 00:00:26 2003 +0000
@@ -24,7 +24,7 @@
 AC_SUBST(VERSION)
 AC_SUBST(PREFIX)
 
-ALL_LINGUAS="bg cs da de es fi fr hu it ja ko nl no pl pt_BR ro ru sv tr zh_CN zh_TW"
+ALL_LINGUAS="ar bg cs da de es fi fr hu it ja ko nl no pl pt_BR ro ru sv tr zh_CN zh_TW"
 
 AC_DEFINE(_GNU_SOURCE, 1, [Define for setting a GNU environment])
 
@@ -76,12 +76,13 @@
   AM_PATH_GLIB(1.2.3, , AC_MSG_ERROR(gFTP needs GLIB 1.2.3 or higher))
 fi
 
+EXTRA_LIBS=""
+
 AC_CHECK_LIB(socket, socket, EXTRA_LIBS="-lsocket")
   
 AC_CHECK_LIB(nsl, gethostbyname, EXTRA_LIBS="$EXTRA_LIBS -lnsl")
 
 GFTP_TEXT=""
-EXTRA_LIBS=""
 USE_READLINE="yes"
 READLINE_LIBS=""
 if test "x$enable_textport" = "xyes" ; then