From: Jon TURNEY Date: Tue, 26 Apr 2011 10:49:01 +0000 (+0100) Subject: Fix config check that claims to test if CXX supports -fvisibility=hidden option to... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=560f76227ccc848390095414e93d199e588b0c92;p=mesa.git Fix config check that claims to test if CXX supports -fvisibility=hidden option to actually test the C++ compiler. Reviewed-by: Dan Nicholson Signed-off-by: Jon TURNEY --- diff --git a/configure.ac b/configure.ac index 0346a8ade67..74357a2e24c 100644 --- a/configure.ac +++ b/configure.ac @@ -177,8 +177,10 @@ if test "x$GXX" = xyes; then AC_MSG_CHECKING([whether $CXX supports -fvisibility=hidden]) VISIBILITY_CXXFLAGS="-fvisibility=hidden" CXXFLAGS="$CXXFLAGS $VISIBILITY_CXXFLAGS" + AC_LANG_PUSH([C++]) AC_LINK_IFELSE([AC_LANG_PROGRAM()], AC_MSG_RESULT([yes]), [VISIBILITY_CXXFLAGS="" ; AC_MSG_RESULT([no])]); + AC_LANG_POP([C++]) # Restore CXXFLAGS; VISIBILITY_CXXFLAGS are added to it where needed. CXXFLAGS=$save_CXXFLAGS