[cairo-commit] libsvg ChangeLog, 1.59, 1.60 NEWS, 1.2, 1.3 autogen.sh, 1.4, 1.5

Carl Worth commit at pdx.freedesktop.org
Wed Feb 16 15:11:32 PST 2005


Committed by: cworth

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

Modified Files:
	ChangeLog NEWS autogen.sh 
Log Message:

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

        * NEWS: Fix typo in release date.


Index: ChangeLog
===================================================================
RCS file: /cvs/cairo/libsvg/ChangeLog,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -d -r1.59 -r1.60
--- ChangeLog	14 Feb 2005 17:26:26 -0000	1.59
+++ ChangeLog	16 Feb 2005 23:11:30 -0000	1.60
@@ -1,3 +1,10 @@
+2005-02-16  Carl Worth  <cworth at cworth.org>
+
+	* autogen.sh: Call all autotool commands through environment
+	variables. Thanks to Rui Lopes.
+
+	* NEWS: Fix typo in release date.
+
 2005-02-14  Phil Blundell  <philb at gnu.org>
 
 	* configure.in: Add "--with-expat" flag.

Index: NEWS
===================================================================
RCS file: /cvs/cairo/libsvg/NEWS,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- NEWS	13 Feb 2005 13:23:28 -0000	1.2
+++ NEWS	16 Feb 2005 23:11:30 -0000	1.3
@@ -1,4 +1,4 @@
-Snapshot 0.1.3 (2005-01-21 Carl Worth <cworth at cworth.org>)
+Snapshot 0.1.3 (2005-02-13 Carl Worth <cworth at cworth.org>)
 ==========================================================
 Add extern "C" stuff to svg.h for easier use from C++.
 

Index: autogen.sh
===================================================================
RCS file: /cvs/cairo/libsvg/autogen.sh,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- autogen.sh	31 Mar 2004 03:14:36 -0000	1.4
+++ autogen.sh	16 Feb 2005 23:11:30 -0000	1.5
@@ -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
 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