summaryrefslogtreecommitdiff
path: root/editors/vim-share/patches
diff options
context:
space:
mode:
authormartti <martti>2006-10-16 17:00:29 +0000
committermartti <martti>2006-10-16 17:00:29 +0000
commit4a5f3b09ab09eeac09d9c14265f4cb0a13e63ade (patch)
tree85fc340211b34d79b2239582bc2dc313ab976d30 /editors/vim-share/patches
parent7ae23235b1f648c076d0b92674f9e38e226afb19 (diff)
downloadpkgsrc-4a5f3b09ab09eeac09d9c14265f4cb0a13e63ade.tar.gz
Fix test ==
Diffstat (limited to 'editors/vim-share/patches')
-rw-r--r--editors/vim-share/patches/patch-aa11
-rw-r--r--editors/vim-share/patches/patch-ac13
2 files changed, 23 insertions, 1 deletions
diff --git a/editors/vim-share/patches/patch-aa b/editors/vim-share/patches/patch-aa
index ef60b625d8c..cff8ccfa922 100644
--- a/editors/vim-share/patches/patch-aa
+++ b/editors/vim-share/patches/patch-aa
@@ -1,4 +1,4 @@
-$NetBSD: patch-aa,v 1.10 2006/05/09 06:36:48 martti Exp $
+$NetBSD: patch-aa,v 1.11 2006/10/16 17:00:29 martti Exp $
--- src/auto/configure.orig 2006-05-04 13:46:19.000000000 +0300
+++ src/auto/configure 2006-05-08 10:00:33.000000000 +0300
@@ -11,3 +11,12 @@ $NetBSD: patch-aa,v 1.10 2006/05/09 06:36:48 martti Exp $
GUI_INC_LOC="`echo $GUI_INC_LOC|sed 's%-I%%g'`"
echo "$as_me:$LINENO: checking for location of Motif GUI includes" >&5
+@@ -15302,7 +15302,7 @@
+ && test "x$GUITYPE" != "xCARBONGUI"; then
+ echo "$as_me:$LINENO: checking whether we need -framework Carbon" >&5
+ echo $ECHO_N "checking whether we need -framework Carbon... $ECHO_C" >&6
+- if test "x$enable_multibyte" = "xyes" || test "x$features" == "xbig" \
++ if test "x$enable_multibyte" = "xyes" || test "x$features" = "xbig" \
+ || test "x$features" = "xhuge"; then
+ LIBS="$LIBS -framework Carbon"
+ echo "$as_me:$LINENO: result: yes" >&5
diff --git a/editors/vim-share/patches/patch-ac b/editors/vim-share/patches/patch-ac
new file mode 100644
index 00000000000..51a3390a646
--- /dev/null
+++ b/editors/vim-share/patches/patch-ac
@@ -0,0 +1,13 @@
+$NetBSD: patch-ac,v 1.8 2006/10/16 17:00:29 martti Exp $
+
+--- src/configure.in.orig 2006-10-16 19:41:43.000000000 +0000
++++ src/configure.in 2006-10-16 19:42:02.000000000 +0000
+@@ -2835,7 +2835,7 @@
+ && test "x$GUITYPE" != "xCARBONGUI"; then
+ AC_MSG_CHECKING(whether we need -framework Carbon)
+ dnl check for MACOSX without Carbon GUI, but with FEAT_MBYTE
+- if test "x$enable_multibyte" = "xyes" || test "x$features" == "xbig" \
++ if test "x$enable_multibyte" = "xyes" || test "x$features" = "xbig" \
+ || test "x$features" = "xhuge"; then
+ LIBS="$LIBS -framework Carbon"
+ AC_MSG_RESULT(yes)