[axel-commits] r121 - in /trunk: ROADMAP configure

phihag-guest at users.alioth.debian.org phihag-guest at users.alioth.debian.org
Tue Jan 12 07:02:27 UTC 2010


Author: phihag-guest
Date: Tue Jan 12 07:02:25 2010
New Revision: 121

URL: http://svn.debian.org/wsvn/axel/?sc=1&rev=121
Log:
Correct argument order for HP UX

Modified:
    trunk/ROADMAP
    trunk/configure

Modified: trunk/ROADMAP
URL: http://svn.debian.org/wsvn/axel/trunk/ROADMAP?rev=121&op=diff
==============================================================================
--- trunk/ROADMAP (original)
+++ trunk/ROADMAP Tue Jan 12 07:02:25 2010
@@ -1,7 +1,6 @@
 Roadmap for Axel v2
 ===================
 
-* Replace old gettext with new one
 * Check if strrstr is provided by environment
 * Use SI prefixes
 

Modified: trunk/configure
URL: http://svn.debian.org/wsvn/axel/trunk/configure?rev=121&op=diff
==============================================================================
--- trunk/configure (original)
+++ trunk/configure Tue Jan 12 07:02:25 2010
@@ -199,14 +199,13 @@
 ;;
 HP-UX )
 	echo '#define NOGETOPTLONG' >> config.h
-	AXEL_LFLAGS="${AXEL_LFLAGS} -lpthread"
-	if [ "$i18n" = "1" ]; then
-		AXEL_LFLAGS="${AXEL_LFLAGS} -lintl"
-	
+	if [ "$i18n" = "1" ]; then
 		if [ -d /usr/local/lib/hpux32 ]; then
 			AXEL_LFLAGS="${AXEL_LFLAGS} -L/usr/local/lib/hpux32"
 		fi
-	fi
+		AXEL_LFLAGS="${AXEL_LFLAGS} -lintl"
+	fi
+	AXEL_LFLAGS="${AXEL_LFLAGS} -lpthread"
 ;;
 CYGWIN_* )
 	AXEL_LFLAGS="${AXEL_LFLAGS} -pthread"




More information about the axel-commits mailing list