[cairo-commit] cairo ChangeLog,1.404,1.405 configure.in,1.86,1.87

David Reveman commit at pdx.freedesktop.org
Thu Mar 3 19:09:26 PST 2005


Committed by: davidr

Update of /cvs/cairo/cairo
In directory gabe:/tmp/cvs-serv32465

Modified Files:
	ChangeLog configure.in 
Log Message:
Fixed variable assignments in configure.in

Index: ChangeLog
===================================================================
RCS file: /cvs/cairo/cairo/ChangeLog,v
retrieving revision 1.404
retrieving revision 1.405
diff -u -d -r1.404 -r1.405
--- ChangeLog	4 Mar 2005 02:55:28 -0000	1.404
+++ ChangeLog	4 Mar 2005 03:09:24 -0000	1.405
@@ -1,5 +1,7 @@
 2005-03-04  David Reveman  <davidr at novell.com>
 
+	* configure.in: Fixed variable assignments.
+
 	* src/cairo_glitz_surface.c: Add overall alpha acceleration
 	to a few cases not covered by _cairo_pattern_acquire_surfaces but
 	possible to accelerate by glitz.

Index: configure.in
===================================================================
RCS file: /cvs/cairo/cairo/configure.in,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -d -r1.86 -r1.87
--- configure.in	4 Mar 2005 02:04:51 -0000	1.86
+++ configure.in	4 Mar 2005 03:09:24 -0000	1.87
@@ -79,7 +79,7 @@
 
 AC_ARG_ENABLE(quartz,
   [  --disable-quartz          Disable cairo's quartz backend],
-  [use_quartz=$enableval], [use_quartz=no (temporarily disabled while code is out of sync)])
+  [use_quartz=$enableval], [use_quartz="no (temporarily disabled while code is out of sync)"])
 
 if test "x$use_quartz" = "xyes"; then
   dnl There is no pkgconfig for quartz; lets do a header check
@@ -137,7 +137,7 @@
 
 AC_ARG_ENABLE(win32,
   [  --disable-win32          Disable cairo's Microsoft Windows backend],
-  [use_win32=$enableval], [use_win32=no (temporarily disabled while code is out of sync)])
+  [use_win32=$enableval], [use_win32="no (temporarily disabled while code is out of sync)"])
 
 if test "x$cairo_platform_win32" != "xyes" ; then
   use_win32=no




More information about the cairo-commit mailing list