diff src/osdef.sh @ 5436:efa40be729c2 v7.4.068

updated for version 7.4.068 Problem: Cannot build Vim on Mac with non-Apple compilers. Solution: Remove the -no-cpp-precomp flag. (Misty De Meo)
author Bram Moolenaar <bram@vim.org>
date Mon, 04 Nov 2013 04:57:50 +0100
parents 3fc0f57ecb91
children c4f8b1d48f20
line wrap: on
line diff
--- a/src/osdef.sh
+++ b/src/osdef.sh
@@ -47,11 +47,7 @@ cat << EOF > osdef0.c
 #endif
 EOF
 
-# Mac uses precompiled headers, but we need real headers here.
-case `uname` in
-    Darwin)	$CC -I. -I$srcdir -E -no-cpp-precomp osdef0.c >osdef0.cc;;
-    *)		$CC -I. -I$srcdir -E osdef0.c >osdef0.cc;;
-esac
+$CC -I. -I$srcdir -E osdef0.c >osdef0.cc
 
 # insert a space in front of each line, so that a function name at the
 # start of the line is matched with "[)*, 	]\1[ 	(]"