[cairo-commit] cairo ChangeLog, 1.1155, 1.1156 configure.in, 1.149,
1.150
Carl Worth
commit at pdx.freedesktop.org
Wed Dec 7 11:44:30 PST 2005
Committed by: cworth
Update of /cvs/cairo/cairo
In directory gabe:/tmp/cvs-serv9906
Modified Files:
ChangeLog configure.in
Log Message:
2005-12-07 Carl Worth <cworth at cworth.org>
* configure.in: Use more portable shell syntax, ('test =' rather
than 'test =='). Thanks to Richard Lloyd and Klaus Heinz. Closes
bug #4823.
Index: ChangeLog
===================================================================
RCS file: /cvs/cairo/cairo/ChangeLog,v
retrieving revision 1.1155
retrieving revision 1.1156
diff -u -d -r1.1155 -r1.1156
--- ChangeLog 5 Dec 2005 16:33:04 -0000 1.1155
+++ ChangeLog 7 Dec 2005 19:44:28 -0000 1.1156
@@ -1,3 +1,9 @@
+2005-12-07 Carl Worth <cworth at cworth.org>
+
+ * configure.in: Use more portable shell syntax, ('test =' rather
+ than 'test =='). Thanks to Richard Lloyd and Klaus Heinz. Closes
+ bug #4823.
+
2005-12-05 David Reveman <davidr at novell.com>
* src/cairo-glitz-surface.c (_cairo_glitz_pattern_acquire_surface):
Index: configure.in
===================================================================
RCS file: /cvs/cairo/cairo/configure.in,v
retrieving revision 1.149
retrieving revision 1.150
diff -u -d -r1.149 -r1.150
--- configure.in 13 Oct 2005 14:30:16 -0000 1.149
+++ configure.in 7 Dec 2005 19:44:28 -0000 1.150
@@ -559,19 +559,19 @@
*** to @BACKEND at -backend specific API.
'
-if test x"$use_glitz" == "xyes" ; then
+if test x"$use_glitz" = "xyes" ; then
echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/Glitz/'
fi
-if test x"$use_xcb" == "xyes" ; then
+if test x"$use_xcb" = "xyes" ; then
echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/XCB/'
fi
-if test x"$use_quartz" == "xyes" ; then
+if test x"$use_quartz" = "xyes" ; then
echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/Quartz/'
fi
-if test x"$use_quartz" == "xyes" ; then
+if test x"$use_quartz" = "xyes" ; then
echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/ATSUI/'
fi
More information about the cairo-commit
mailing list