[cairo-commit] pycairo ChangeLog,1.43,1.44 autogen.sh,1.2,1.3

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


Committed by: cworth

Update of /cvs/cairo/pycairo
In directory gabe:/tmp/cvs-serv32332

Modified Files:
	ChangeLog autogen.sh 
Log Message:

        * cairo/pycairo.h: Wrap include of cairo-xlib.h in
        CAIRO_HAS_XLIB_SURFACE.

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


Index: ChangeLog
===================================================================
RCS file: /cvs/cairo/pycairo/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -d -r1.43 -r1.44
--- ChangeLog	16 Feb 2005 02:26:29 -0000	1.43
+++ ChangeLog	16 Feb 2005 23:16:33 -0000	1.44
@@ -1,3 +1,11 @@
+2005-02-16  Carl Worth  <cworth at cworth.org>
+
+	* cairo/pycairo.h: Wrap include of cairo-xlib.h in
+	CAIRO_HAS_XLIB_SURFACE.
+
+	* autogen.sh: Call all autotool commands through environment
+	variables. Thanks to Rui Lopes.
+
 2005-02-16  Steve Chaplin  <steve1097 at yahoo.com.au>
 
 	* configure.ac: add examples/Makefile to AC_CONFIG_FILES (omitted from

Index: autogen.sh
===================================================================
RCS file: /cvs/cairo/pycairo/autogen.sh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- autogen.sh	1 Nov 2004 16:29:45 -0000	1.2
+++ autogen.sh	16 Feb 2005 23:16:33 -0000	1.3
@@ -14,8 +14,10 @@
 
 test -z "$AUTOCONF" && AUTOCONF=autoconf
 test -z "$AUTOHEADER" && AUTOHEADER=autoheader
+test -z "$LIBTOOL" && LIBTOOL=libtool
+test -z "$LIBTOOLIZE" && LIBTOOLIZE=libtoolize
 
-(autoconf --version) < /dev/null > /dev/null 2>&1 || {
+($AUTOCONF --version) < /dev/null > /dev/null 2>&1 || {
 	echo
 	echo "You must have autoconf installed to compile $PROJECT."
 	echo "Download the appropriate package for your distribution,"
@@ -23,7 +25,7 @@
 	DIE=1
 }
 
-(libtool --version) < /dev/null > /dev/null 2>&1 || {
+($LIBTOOL --version) < /dev/null > /dev/null 2>&1 || {
         echo
         echo "You must have libtool installed to compile $PROJECT."
         echo "Get ftp://ftp.gnu.org/gnu/libtool/libtool-1.4.tar.gz"
@@ -92,7 +94,7 @@
 ($AUTOHEADER --version)  < /dev/null > /dev/null 2>&1 && $AUTOHEADER
 
 # run libtoolize ...
-libtoolize --force
+$LIBTOOLIZE --force
 
 $AUTOMAKE -a $am_opt
 $AUTOHEADER




More information about the cairo-commit mailing list