|
Karsten Hopp |
b85ecc |
To: vim-dev@vim.org
|
|
Karsten Hopp |
b85ecc |
Subject: Patch 7.0.137
|
|
Karsten Hopp |
b85ecc |
Fcc: outbox
|
|
Karsten Hopp |
b85ecc |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
b85ecc |
Mime-Version: 1.0
|
|
Karsten Hopp |
b85ecc |
Content-Type: text/plain; charset=ISO-8859-1
|
|
Karsten Hopp |
b85ecc |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
b85ecc |
------------
|
|
Karsten Hopp |
b85ecc |
|
|
Karsten Hopp |
b85ecc |
Patch 7.0.137
|
|
Karsten Hopp |
b85ecc |
Problem: Configure check for big features is wrong.
|
|
Karsten Hopp |
b85ecc |
Solution: Change "==" to "=". (Martti Kuparinen)
|
|
Karsten Hopp |
b85ecc |
Files: src/auto/configure, src/configure.in
|
|
Karsten Hopp |
b85ecc |
|
|
Karsten Hopp |
b85ecc |
|
|
Karsten Hopp |
b85ecc |
*** ../vim-7.0.136/src/auto/configure Tue Oct 10 11:40:53 2006
|
|
Karsten Hopp |
b85ecc |
--- src/auto/configure Tue Oct 17 11:41:59 2006
|
|
Karsten Hopp |
b85ecc |
***************
|
|
Karsten Hopp |
b85ecc |
*** 15302,15308 ****
|
|
Karsten Hopp |
b85ecc |
&& test "x$GUITYPE" != "xCARBONGUI"; then
|
|
Karsten Hopp |
b85ecc |
echo "$as_me:$LINENO: checking whether we need -framework Carbon" >&5
|
|
Karsten Hopp |
b85ecc |
echo $ECHO_N "checking whether we need -framework Carbon... $ECHO_C" >&6
|
|
Karsten Hopp |
b85ecc |
! if test "x$enable_multibyte" = "xyes" || test "x$features" == "xbig" \
|
|
Karsten Hopp |
b85ecc |
|| test "x$features" = "xhuge"; then
|
|
Karsten Hopp |
b85ecc |
LIBS="$LIBS -framework Carbon"
|
|
Karsten Hopp |
b85ecc |
echo "$as_me:$LINENO: result: yes" >&5
|
|
Karsten Hopp |
b85ecc |
--- 15302,15308 ----
|
|
Karsten Hopp |
b85ecc |
&& test "x$GUITYPE" != "xCARBONGUI"; then
|
|
Karsten Hopp |
b85ecc |
echo "$as_me:$LINENO: checking whether we need -framework Carbon" >&5
|
|
Karsten Hopp |
b85ecc |
echo $ECHO_N "checking whether we need -framework Carbon... $ECHO_C" >&6
|
|
Karsten Hopp |
b85ecc |
! if test "x$enable_multibyte" = "xyes" || test "x$features" = "xbig" \
|
|
Karsten Hopp |
b85ecc |
|| test "x$features" = "xhuge"; then
|
|
Karsten Hopp |
b85ecc |
LIBS="$LIBS -framework Carbon"
|
|
Karsten Hopp |
b85ecc |
echo "$as_me:$LINENO: result: yes" >&5
|
|
Karsten Hopp |
b85ecc |
*** ../vim-7.0.136/src/configure.in Tue Oct 10 11:40:53 2006
|
|
Karsten Hopp |
b85ecc |
--- src/configure.in Tue Oct 17 11:40:59 2006
|
|
Karsten Hopp |
b85ecc |
***************
|
|
Karsten Hopp |
b85ecc |
*** 2838,2844 ****
|
|
Karsten Hopp |
b85ecc |
&& test "x$GUITYPE" != "xCARBONGUI"; then
|
|
Karsten Hopp |
b85ecc |
AC_MSG_CHECKING(whether we need -framework Carbon)
|
|
Karsten Hopp |
b85ecc |
dnl check for MACOSX without Carbon GUI, but with FEAT_MBYTE
|
|
Karsten Hopp |
b85ecc |
! if test "x$enable_multibyte" = "xyes" || test "x$features" == "xbig" \
|
|
Karsten Hopp |
b85ecc |
|| test "x$features" = "xhuge"; then
|
|
Karsten Hopp |
b85ecc |
LIBS="$LIBS -framework Carbon"
|
|
Karsten Hopp |
b85ecc |
AC_MSG_RESULT(yes)
|
|
Karsten Hopp |
b85ecc |
--- 2838,2844 ----
|
|
Karsten Hopp |
b85ecc |
&& test "x$GUITYPE" != "xCARBONGUI"; then
|
|
Karsten Hopp |
b85ecc |
AC_MSG_CHECKING(whether we need -framework Carbon)
|
|
Karsten Hopp |
b85ecc |
dnl check for MACOSX without Carbon GUI, but with FEAT_MBYTE
|
|
Karsten Hopp |
b85ecc |
! if test "x$enable_multibyte" = "xyes" || test "x$features" = "xbig" \
|
|
Karsten Hopp |
b85ecc |
|| test "x$features" = "xhuge"; then
|
|
Karsten Hopp |
b85ecc |
LIBS="$LIBS -framework Carbon"
|
|
Karsten Hopp |
b85ecc |
AC_MSG_RESULT(yes)
|
|
Karsten Hopp |
b85ecc |
*** ../vim-7.0.136/src/version.c Tue Oct 17 11:12:28 2006
|
|
Karsten Hopp |
b85ecc |
--- src/version.c Tue Oct 17 11:49:14 2006
|
|
Karsten Hopp |
b85ecc |
***************
|
|
Karsten Hopp |
b85ecc |
*** 668,669 ****
|
|
Karsten Hopp |
b85ecc |
--- 668,671 ----
|
|
Karsten Hopp |
b85ecc |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
b85ecc |
+ /**/
|
|
Karsten Hopp |
b85ecc |
+ 137,
|
|
Karsten Hopp |
b85ecc |
/**/
|
|
Karsten Hopp |
b85ecc |
|
|
Karsten Hopp |
b85ecc |
--
|
|
Karsten Hopp |
b85ecc |
CVS sux, men don't like commitment
|
|
Karsten Hopp |
b85ecc |
|
|
Karsten Hopp |
b85ecc |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
b85ecc |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
b85ecc |
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
|
Karsten Hopp |
b85ecc |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|