|
Karsten Hopp |
67f46d |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
67f46d |
Subject: Patch 7.4.924
|
|
Karsten Hopp |
67f46d |
Fcc: outbox
|
|
Karsten Hopp |
67f46d |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
67f46d |
Mime-Version: 1.0
|
|
Karsten Hopp |
67f46d |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
67f46d |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
67f46d |
------------
|
|
Karsten Hopp |
67f46d |
|
|
Karsten Hopp |
67f46d |
Patch 7.4.924
|
|
Karsten Hopp |
67f46d |
Problem: DEVELOPER_DIR gets reset by configure.
|
|
Karsten Hopp |
67f46d |
Solution: Do not reset DEVELOPER_DIR when there is no --with-developer-dir
|
|
Karsten Hopp |
67f46d |
argument. (Kazuki Sakamoto, closes #482)
|
|
Karsten Hopp |
67f46d |
Files: src/configure.in, src/auto/configure
|
|
Karsten Hopp |
67f46d |
|
|
Karsten Hopp |
67f46d |
|
|
Karsten Hopp |
67f46d |
*** ../vim-7.4.923/src/configure.in 2015-09-09 20:26:58.905675773 +0200
|
|
Karsten Hopp |
67f46d |
--- src/configure.in 2015-11-19 13:43:01.060995654 +0100
|
|
Karsten Hopp |
67f46d |
***************
|
|
Karsten Hopp |
67f46d |
*** 153,159 ****
|
|
Karsten Hopp |
67f46d |
AC_MSG_CHECKING(--with-developer-dir argument)
|
|
Karsten Hopp |
67f46d |
AC_ARG_WITH(developer-dir, [ --with-developer-dir=PATH use PATH as location for Xcode developer tools],
|
|
Karsten Hopp |
67f46d |
DEVELOPER_DIR="$withval"; AC_MSG_RESULT($DEVELOPER_DIR),
|
|
Karsten Hopp |
67f46d |
! DEVELOPER_DIR=""; AC_MSG_RESULT(not present))
|
|
Karsten Hopp |
67f46d |
|
|
Karsten Hopp |
67f46d |
if test "x$DEVELOPER_DIR" = "x"; then
|
|
Karsten Hopp |
67f46d |
AC_PATH_PROG(XCODE_SELECT, xcode-select)
|
|
Karsten Hopp |
67f46d |
--- 153,159 ----
|
|
Karsten Hopp |
67f46d |
AC_MSG_CHECKING(--with-developer-dir argument)
|
|
Karsten Hopp |
67f46d |
AC_ARG_WITH(developer-dir, [ --with-developer-dir=PATH use PATH as location for Xcode developer tools],
|
|
Karsten Hopp |
67f46d |
DEVELOPER_DIR="$withval"; AC_MSG_RESULT($DEVELOPER_DIR),
|
|
Karsten Hopp |
67f46d |
! AC_MSG_RESULT(not present))
|
|
Karsten Hopp |
67f46d |
|
|
Karsten Hopp |
67f46d |
if test "x$DEVELOPER_DIR" = "x"; then
|
|
Karsten Hopp |
67f46d |
AC_PATH_PROG(XCODE_SELECT, xcode-select)
|
|
Karsten Hopp |
67f46d |
*** ../vim-7.4.923/src/auto/configure 2015-09-09 20:26:58.905675773 +0200
|
|
Karsten Hopp |
67f46d |
--- src/auto/configure 2015-11-19 13:44:23.596083275 +0100
|
|
Karsten Hopp |
67f46d |
***************
|
|
Karsten Hopp |
67f46d |
*** 4198,4204 ****
|
|
Karsten Hopp |
67f46d |
withval=$with_developer_dir; DEVELOPER_DIR="$withval"; { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DEVELOPER_DIR" >&5
|
|
Karsten Hopp |
67f46d |
$as_echo "$DEVELOPER_DIR" >&6; }
|
|
Karsten Hopp |
67f46d |
else
|
|
Karsten Hopp |
67f46d |
! DEVELOPER_DIR=""; { $as_echo "$as_me:${as_lineno-$LINENO}: result: not present" >&5
|
|
Karsten Hopp |
67f46d |
$as_echo "not present" >&6; }
|
|
Karsten Hopp |
67f46d |
fi
|
|
Karsten Hopp |
67f46d |
|
|
Karsten Hopp |
67f46d |
--- 4198,4204 ----
|
|
Karsten Hopp |
67f46d |
withval=$with_developer_dir; DEVELOPER_DIR="$withval"; { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DEVELOPER_DIR" >&5
|
|
Karsten Hopp |
67f46d |
$as_echo "$DEVELOPER_DIR" >&6; }
|
|
Karsten Hopp |
67f46d |
else
|
|
Karsten Hopp |
67f46d |
! { $as_echo "$as_me:${as_lineno-$LINENO}: result: not present" >&5
|
|
Karsten Hopp |
67f46d |
$as_echo "not present" >&6; }
|
|
Karsten Hopp |
67f46d |
fi
|
|
Karsten Hopp |
67f46d |
|
|
Karsten Hopp |
67f46d |
*** ../vim-7.4.923/src/version.c 2015-11-19 13:14:26.031915183 +0100
|
|
Karsten Hopp |
67f46d |
--- src/version.c 2015-11-19 13:44:44.391853422 +0100
|
|
Karsten Hopp |
67f46d |
***************
|
|
Karsten Hopp |
67f46d |
*** 743,744 ****
|
|
Karsten Hopp |
67f46d |
--- 743,746 ----
|
|
Karsten Hopp |
67f46d |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
67f46d |
+ /**/
|
|
Karsten Hopp |
67f46d |
+ 924,
|
|
Karsten Hopp |
67f46d |
/**/
|
|
Karsten Hopp |
67f46d |
|
|
Karsten Hopp |
67f46d |
--
|
|
Karsten Hopp |
67f46d |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
67f46d |
113. You are asked about a bus schedule, you wonder if it is 16 or 32 bits.
|
|
Karsten Hopp |
67f46d |
|
|
Karsten Hopp |
67f46d |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
67f46d |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
67f46d |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
67f46d |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|