[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] autoconf: add file missing from 26123:f6d5b3bf74a8
# HG changeset patch # User Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> # Date 1351620731 0 # Node ID bf249cd5f2c1266875acc9c33c5172d94b77a897 # Parent f6d5b3bf74a83fe84eb2909657b7f1db7f0f8253 autoconf: add file missing from 26123:f6d5b3bf74a8 This file was in 26123:f6d5b3bf74a8 as submitted but I failed to add it. Committed-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> --- diff -r f6d5b3bf74a8 -r bf249cd5f2c1 tools/m4/fetcher.m4 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tools/m4/fetcher.m4 Tue Oct 30 18:12:11 2012 +0000 @@ -0,0 +1,14 @@ +AC_DEFUN([AX_CHECK_FETCHER], [ +AC_PATH_PROG([WGET],[wget], [no]) +AS_IF([test x"$WGET" != x"no"], [ + FETCHER="$WGET -c -O" +], [ + AC_PATH_PROG([FTP],[ftp], [no]) + AS_IF([test x"$FTP" != x"no"], [ + FETCHER="$FTP -o" + ], [ + AC_MSG_ERROR([cannot find wget or ftp]) + ]) +]) +AC_SUBST(FETCHER) +]) _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |