diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-11-04 04:57:50 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-11-04 04:57:50 +0100 |
commit | 0958e0fbe7307f0b46b8f692cbd097fbf93c90f6 (patch) | |
tree | 620743b7e3130acc074c2d96d0de952a7d54e976 /src/auto | |
parent | f332a656c3aa26ee95849341198eb730a150445d (diff) | |
download | vim-git-0958e0fbe7307f0b46b8f692cbd097fbf93c90f6.tar.gz |
updated for version 7.4.068v7.4.068
Problem: Cannot build Vim on Mac with non-Apple compilers.
Solution: Remove the -no-cpp-precomp flag. (Misty De Meo)
Diffstat (limited to 'src/auto')
-rwxr-xr-x | src/auto/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/auto/configure b/src/auto/configure index bb079f0fc..63da09823 100755 --- a/src/auto/configure +++ b/src/auto/configure @@ -4221,7 +4221,7 @@ rm -f core conftest.err conftest.$ac_objext \ MACOSX=yes OS_EXTRA_SRC="os_macosx.m os_mac_conv.c"; OS_EXTRA_OBJ="objects/os_macosx.o objects/os_mac_conv.o" - CPPFLAGS="$CPPFLAGS -DMACOS_X_UNIX -no-cpp-precomp" + CPPFLAGS="$CPPFLAGS -DMACOS_X_UNIX" # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ @@ -4311,7 +4311,7 @@ fi if test "$GCC" = yes -a "$local_dir" != no; then echo 'void f(){}' > conftest.c - have_local_include=`${CC-cc} -no-cpp-precomp -c -v conftest.c 2>&1 | grep "${local_dir}/include"` + have_local_include=`${CC-cc} -c -v conftest.c 2>&1 | grep "${local_dir}/include"` have_local_lib=`${CC-cc} -c -v conftest.c 2>&1 | grep "${local_dir}/lib"` rm -f conftest.c conftest.o fi |