Re: A small VIM patch

2006-10-17 Thread Bram Moolenaar

Martti Kuparinen wrote:

> Please apply the attached patch to remove an invalid usage of the test
> command.  I have tested this against VIM 7.0.121 in NetBSD pkgsrc.

Thanks for the fix!

-- 
hundred-and-one symptoms of being an internet addict:
49. You never have to deal with busy signals when calling your ISP...because
you never log off.

 /// Bram Moolenaar -- [EMAIL PROTECTED] -- http://www.Moolenaar.net   \\\
///sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\download, build and distribute -- http://www.A-A-P.org///
 \\\help me help AIDS victims -- http://ICCF-Holland.org///


A small VIM patch

2006-10-16 Thread Martti Kuparinen
Please apply the attached patch to remove an invalid usage of the test command.
I have tested this against VIM 7.0.121 in NetBSD pkgsrc.

Martti
$NetBSD: patch-ac,v 1.8 2006/10/16 17:00:29 martti Exp $

--- src/configure.in.orig   2006-10-16 19:41:43.0 +
+++ src/configure.in2006-10-16 19:42:02.0 +
@@ -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)