From 4a5f3b09ab09eeac09d9c14265f4cb0a13e63ade Mon Sep 17 00:00:00 2001 From: martti Date: Mon, 16 Oct 2006 17:00:29 +0000 Subject: Fix test == --- editors/vim-share/patches/patch-aa | 11 ++++++++++- editors/vim-share/patches/patch-ac | 13 +++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 editors/vim-share/patches/patch-ac (limited to 'editors/vim-share/patches') 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) -- cgit v1.2.3