diff options
author | Björn Gustavsson <[email protected]> | 2011-11-15 16:40:49 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-11-25 10:59:38 +0100 |
commit | 448cf0cfe686c5bd6c1d28c08807c6c99b4c49d5 (patch) | |
tree | 4e9ba8d286ef48c6d270f2f506a3779935d37f98 /lib/erl_interface/configure.in | |
parent | fa8edf9882b0b1213018a8421f7c779be3001abc (diff) | |
download | otp-448cf0cfe686c5bd6c1d28c08807c6c99b4c49d5.tar.gz otp-448cf0cfe686c5bd6c1d28c08807c6c99b4c49d5.tar.bz2 otp-448cf0cfe686c5bd6c1d28c08807c6c99b4c49d5.zip |
MacOS X: Completely remove obsolete -no-cpp-precomp option
clang does not recognize the -no-cpp-precomp option and generates
a warning. -no-cpp-precomp is an obsolete Apple-specific gcc option,
which last had any effect in gcc 3.1 for Jaguar.
Since we cannot build for Jaguar anyway, the configure test added
in 8412a400e92d5cbcd is not needed.
Diffstat (limited to 'lib/erl_interface/configure.in')
-rw-r--r-- | lib/erl_interface/configure.in | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/erl_interface/configure.in b/lib/erl_interface/configure.in index 72ac8c7bbf..abe1602be1 100644 --- a/lib/erl_interface/configure.in +++ b/lib/erl_interface/configure.in @@ -338,12 +338,6 @@ AC_SUBST(LIB_CFLAGS) if test "X$host" = "Xwin32"; then LIB_CFLAGS="$CFLAGS" else - case $host_os in - darwin*) - CFLAGS="$CFLAGS -no-cpp-precomp" - ;; - esac - if test "x$GCC" = xyes; then LIB_CFLAGS="$CFLAGS -fPIC" else |