[cairo-commit] cairo ChangeLog, 1.1026.2.35,
1.1026.2.36 configure.in, 1.140.2.6, 1.140.2.7
Carl Worth
commit at pdx.freedesktop.org
Wed Dec 7 11:45:17 PST 2005
Committed by: cworth
Update of /cvs/cairo/cairo
In directory gabe:/tmp/cvs-serv10052
Modified Files:
Tag: BRANCH_1_0
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.1026.2.35
retrieving revision 1.1026.2.36
diff -u -d -r1.1026.2.35 -r1.1026.2.36
--- ChangeLog 21 Nov 2005 19:49:34 -0000 1.1026.2.35
+++ ChangeLog 7 Dec 2005 19:45:15 -0000 1.1026.2.36
@@ -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-11-21 Carl Worth <cworth at cworth.org>
* src/pixman-remap.h: Remove duplicate definitions of
Index: configure.in
===================================================================
RCS file: /cvs/cairo/cairo/configure.in,v
retrieving revision 1.140.2.6
retrieving revision 1.140.2.7
diff -u -d -r1.140.2.6 -r1.140.2.7
--- configure.in 8 Oct 2005 17:58:11 -0000 1.140.2.6
+++ configure.in 7 Dec 2005 19:45:15 -0000 1.140.2.7
@@ -559,26 +559,26 @@
*** 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
-if test x"$use_pdf" == "xyes" ; then
+if test x"$use_pdf" = "xyes" ; then
echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/PDF/'
fi
-if test x"$use_ps" == "xyes" ; then
+if test x"$use_ps" = "xyes" ; then
echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/PostScript/'
fi
More information about the cairo-commit
mailing list