[cairo-commit] libsvg-cairo ChangeLog,1.46,1.47 autogen.sh,1.6,1.7

Carl Worth commit at pdx.freedesktop.org
Wed Feb 16 15:12:53 PST 2005


Committed by: cworth

Update of /cvs/cairo/libsvg-cairo
In directory gabe:/tmp/cvs-serv31884

Modified Files:
	ChangeLog autogen.sh 
Log Message:

        * autogen.sh: Call all autotool commands through environment
        variables. Thanks to Rui Lopes.


Index: ChangeLog
===================================================================
RCS file: /cvs/cairo/libsvg-cairo/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- ChangeLog	13 Feb 2005 22:49:00 -0000	1.46
+++ ChangeLog	16 Feb 2005 23:12:51 -0000	1.47
@@ -1,3 +1,8 @@
+2005-02-16  Carl Worth  <cworth at cworth.org>
+
+	* autogen.sh: Call all autotool commands through environment
+	variables. Thanks to Rui Lopes.
+
 2005-02-13  Carl Worth  <cworth at cworth.org>
 
 	* configure.in: Bump version to 0.1.5-head after tagging.

Index: autogen.sh
===================================================================
RCS file: /cvs/cairo/libsvg-cairo/autogen.sh,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- autogen.sh	31 Mar 2004 03:15:40 -0000	1.6
+++ autogen.sh	16 Feb 2005 23:12:51 -0000	1.7
@@ -4,6 +4,12 @@
 set -e
 
 LIBTOOLIZE=${LIBTOOLIZE-libtoolize}
+LIBTOOLIZE_FLAGS="--copy --force"
+ACLOCAL=${ACLOCAL-aclocal}
+AUTOHEADER=${AUTOHEADER-autoheader}
+AUTOMAKE=${AUTOMAKE-automake}
+AUTOMAKE_FLAGS="--add-missing"
+AUTOCONF=${AUTOCONF-autoconf}
 
 PKG_NAME=libsvg-cairo
 ARGV0=$0
@@ -20,14 +26,14 @@
     $@
 }
 
-do_cmd ${LIBTOOLIZE} --force --copy
+do_cmd $LIBTOOLIZE $LIBTOOLIZE_FLAGS
 
-do_cmd aclocal
+do_cmd $ACLOCAL $ACLOCAL_FLAGS
 
-do_cmd autoheader
+do_cmd $AUTOHEADER
 
-do_cmd automake --add-missing
+do_cmd $AUTOMAKE $AUTOMAKE_FLAGS
 
-do_cmd autoconf
+do_cmd $AUTOCONF
 
 do_cmd ./configure --enable-maintainer-mode $@ && echo "Now type \`make' to compile $PKG_NAME" || exit 1




More information about the cairo-commit mailing list