From 32b5537ac7b0d3a854c62727d6dc7ef27ad0f038 Mon Sep 17 00:00:00 2001 From: Bruno Cabral Date: Thu, 12 Dec 2013 16:18:18 +0000 Subject: Don't use ancient -no-cpp-precomp flag on OS X. Straight copy from WxWidgets : See http://trac.wxwidgets.org/ticket/14029 for a discussion of the problems it causes when using non-Apple compiler. Even for Apple's GCC, it does nothing these days and we no longer support OS X 10.3, so there's no point in continuing to use it. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index fcec00df0..dd099513f 100644 --- a/configure.ac +++ b/configure.ac @@ -75,7 +75,7 @@ case "$host_os" in *darwin* | *rhapsody* | *macosx*) AC_DEFINE_UNQUOTED(DARWIN,1,[This is an Apple Darwin system]) CPPFLAGS="-D_APPLE_C_SOURCE $CPPFLAGS" - CFLAGS="-no-cpp-precomp -fno-common $CFLAGS" + CFLAGS="-fno-common $CFLAGS" AC_MSG_WARN([The VPN application cannot be compiled on your OS]) build_target="darwin" DEFAULT_INTERFACE="\"en0\"" -- cgit v1.2.3