summaryrefslogtreecommitdiff
path: root/textproc/libxslt
diff options
context:
space:
mode:
authorkim <kim@pkgsrc.org>2005-12-24 20:34:55 +0000
committerkim <kim@pkgsrc.org>2005-12-24 20:34:55 +0000
commitc67067590bd148b50c89fad6e64872b3180db00f (patch)
tree01b51bb773bdb42e901ace40c3e67c31524bcefe /textproc/libxslt
parenta5f13cba0a4228aef24b1744889b609660dc3d88 (diff)
downloadpkgsrc-c67067590bd148b50c89fad6e64872b3180db00f.tar.gz
There is no "==" operator in test(1).
Diffstat (limited to 'textproc/libxslt')
-rw-r--r--textproc/libxslt/patches/patch-ac13
-rw-r--r--textproc/libxslt/patches/patch-ad13
2 files changed, 26 insertions, 0 deletions
diff --git a/textproc/libxslt/patches/patch-ac b/textproc/libxslt/patches/patch-ac
new file mode 100644
index 00000000000..5578b27c231
--- /dev/null
+++ b/textproc/libxslt/patches/patch-ac
@@ -0,0 +1,13 @@
+$NetBSD: patch-ac,v 1.4 2005/12/24 20:34:55 kim Exp $
+
+--- configure.in.orig 2005-09-05 01:19:44.000000000 +0300
++++ configure.in 2005-12-24 22:32:02.000000000 +0200
+@@ -469,7 +469,7 @@
+ fi
+
+ AC_SUBST(WITH_MODULES)
+-AM_CONDITIONAL(WITH_MODULES, test "$WITH_MODULES" == "1")
++AM_CONDITIONAL(WITH_MODULES, test "$WITH_MODULES" = "1")
+
+ dnl
+ dnl setup default module path
diff --git a/textproc/libxslt/patches/patch-ad b/textproc/libxslt/patches/patch-ad
new file mode 100644
index 00000000000..d27cf2504e3
--- /dev/null
+++ b/textproc/libxslt/patches/patch-ad
@@ -0,0 +1,13 @@
+$NetBSD: patch-ad,v 1.1 2005/12/24 20:34:55 kim Exp $
+
+--- configure.orig 2005-09-05 01:28:05.000000000 +0300
++++ configure 2005-12-24 22:33:33.000000000 +0200
+@@ -22590,7 +22590,7 @@
+
+
+
+-if test "$WITH_MODULES" == "1"; then
++if test "$WITH_MODULES" = "1"; then
+ WITH_MODULES_TRUE=
+ WITH_MODULES_FALSE='#'
+ else