[axel-commits] r53 - /trunk/configure

phihag-guest at users.alioth.debian.org phihag-guest at users.alioth.debian.org
Mon Oct 13 17:09:54 UTC 2008


Author: phihag-guest
Date: Mon Oct 13 17:09:54 2008
New Revision: 53

URL: http://svn.debian.org/wsvn/axel/?sc=1&rev=53
Log:
Metalink configure option

Modified:
    trunk/configure

Modified: trunk/configure
URL: http://svn.debian.org/wsvn/axel/trunk/configure?rev=53&op=diff
==============================================================================
--- trunk/configure (original)
+++ trunk/configure Mon Oct 13 17:09:54 2008
@@ -16,6 +16,7 @@
 debug=0
 strip=1
 ftp=1
+metalink=0
 search=0
 ssl=0
 
@@ -41,6 +42,7 @@
 --debug=0/1	Disable/enable debugging		$debug
 --strip=0/1	Disable/enable binary stripping		$strip
 --ftp=0/1	Disable/enable FTP support		$ftp
+--metalink=0/1	Disable/enable Metalink support		$metalink
 --search=0/1	Disable/enable filehosting.com support	$search
 --ssl=0/1	Disable/enable HTTPS/FTPS support	$ssl
 EOF
@@ -144,6 +146,10 @@
 	echo '#define FTP' >> config.h;
 fi
 
+if [ "$metalink" = "1" ]; then
+	echo '#define METALINK' >> config.h;
+fi
+
 if [ "$ssl" = "1" ]; then
 	echo '#define SSL' >> config.h;
 fi
@@ -247,6 +253,11 @@
 else
 	echo '  FTP support disabled.';
 fi
+if [ "$metalink" = "1" ]; then
+	echo '  Metalink support enabled.';
+else
+	echo '  Metalink support disabled.';
+fi
 if [ "$search" = "1" ]; then
 	echo '  filesearching.com support enabled.';
 else




More information about the axel-commits mailing list