summaryrefslogtreecommitdiff
path: root/graphics/libgdiplus/patches/patch-ad
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2006-10-22 20:44:53 +0000
committerrillig <rillig@pkgsrc.org>2006-10-22 20:44:53 +0000
commit5ffe7c735729b5d06f51e2344c4e00abf1ab34e5 (patch)
tree2f58932710c0221d9ac9cdc21dfc132c28168d57 /graphics/libgdiplus/patches/patch-ad
parentba51e39984756820975611c44cf3774a1fd99cde (diff)
downloadpkgsrc-5ffe7c735729b5d06f51e2344c4e00abf1ab34e5.tar.gz
Fixed "test ==".
Diffstat (limited to 'graphics/libgdiplus/patches/patch-ad')
-rw-r--r--graphics/libgdiplus/patches/patch-ad37
1 files changed, 37 insertions, 0 deletions
diff --git a/graphics/libgdiplus/patches/patch-ad b/graphics/libgdiplus/patches/patch-ad
new file mode 100644
index 00000000000..cfe4ce50af5
--- /dev/null
+++ b/graphics/libgdiplus/patches/patch-ad
@@ -0,0 +1,37 @@
+$NetBSD: patch-ad,v 1.3 2006/10/22 20:44:53 rillig Exp $
+
+--- cairo/configure.in.orig 2006-10-22 22:43:31.000000000 +0200
++++ cairo/configure.in 2006-03-14 07:52:10.000000000 +0100
+@@ -554,26 +554,26 @@ WARNING_MESSAGE='
+ *** to @BACKEND@-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