diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-07-03 19:52:53 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-07-03 19:52:53 +0200 |
commit | 3437b911029ac92ae066fa861d886155a4b97064 (patch) | |
tree | e13bdf437f05194ab09bdb1db2c9a33af8dc7b08 /src/configure.in | |
parent | 32ac8cdaaaa32c09b0818c214e01e8e557d88b56 (diff) | |
download | vim-git-3437b911029ac92ae066fa861d886155a4b97064.tar.gz |
updated for version 7.3.1300v7.3.1300
Problem: Mac: tiny and small build fails.
Solution: Don't include os_macosx.m in tiny build. Include mouse support in
small build. (Kazunobu Kuriyama)
Diffstat (limited to 'src/configure.in')
-rw-r--r-- | src/configure.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/configure.in b/src/configure.in index f1720ced5..2fe5a9d8e 100644 --- a/src/configure.in +++ b/src/configure.in @@ -3698,6 +3698,13 @@ if test "x$MACOSX" = "xyes"; then else AC_MSG_RESULT(no) fi + dnl As mentioned above, tiny build implies os_macosx.m isn't needed. + dnl Exclude it from OS_EXTRA_SRC so that linker won't complain about + dnl missing Objective-C symbols. + if test "x$features" = "xtiny"; then + OS_EXTRA_SRC=`echo "$OS_EXTRA_SRC" | sed -e 's+os_macosx.m++'` + OS_EXTRA_OBJ=`echo "$OS_EXTRA_OBJ" | sed -e 's+objects/os_macosx.o++'` + fi fi if test "x$MACARCH" = "xboth" && test "x$GUITYPE" = "xCARBONGUI"; then LDFLAGS="$LDFLAGS -isysroot $DEVELOPER_DIR/SDKs/MacOSX10.4u.sdk -arch i386 -arch ppc" |