summaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authormartti <martti@pkgsrc.org>2006-10-16 17:00:29 +0000
committermartti <martti@pkgsrc.org>2006-10-16 17:00:29 +0000
commitd0b0c632620b55cbd29c3b33eeed0e75e502a060 (patch)
tree85fc340211b34d79b2239582bc2dc313ab976d30 /editors
parent81a3eccc0d5a7cc8736508ad292951323f2336f6 (diff)
downloadpkgsrc-d0b0c632620b55cbd29c3b33eeed0e75e502a060.tar.gz
Fix test ==
Diffstat (limited to 'editors')
-rw-r--r--editors/vim-share/distinfo5
-rw-r--r--editors/vim-share/patches/patch-aa11
-rw-r--r--editors/vim-share/patches/patch-ac13
3 files changed, 26 insertions, 3 deletions
diff --git a/editors/vim-share/distinfo b/editors/vim-share/distinfo
index 257b031ca4c..a552114052c 100644
--- a/editors/vim-share/distinfo
+++ b/editors/vim-share/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.53 2006/10/09 11:53:30 martti Exp $
+$NetBSD: distinfo,v 1.54 2006/10/16 17:00:29 martti Exp $
SHA1 (vim/7.0.001) = 54143281b4d21a825b7bb02bdd55c4716e7b6f80
RMD160 (vim/7.0.001) = 808e7e5947fccd64ae010e37acb81890e0adc7f0
@@ -339,7 +339,8 @@ Size (vim/vim-7.0-lang.tar.gz) = 1180240 bytes
SHA1 (vim/vim-7.0.tar.bz2) = 38ef48cabf942d0dc804a794dcc6f002b9457fc8
RMD160 (vim/vim-7.0.tar.bz2) = 5c0d6f2dbd0382a432781fe6cb224028cbb783de
Size (vim/vim-7.0.tar.bz2) = 6575205 bytes
-SHA1 (patch-aa) = 6490dce35e099967272a84dd96b16cc3db0b4d53
+SHA1 (patch-aa) = e5fcfe9a599e35c17633d6bae8bc20d7957c1df9
SHA1 (patch-ab) = 1ee4f14cb6c73743704d2dd2631cb3ca48f0303e
+SHA1 (patch-ac) = 69082b576cc023e316e5c1facb01ddd3e38fb104
SHA1 (patch-ad) = 1f83cdb17f7ce367d9ae3358db7370065ab76435
SHA1 (patch-zb) = d52bdc3b77c30c804e78c2c6a4182fad8096c9f0
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)