# HG changeset patch # User Sam Lantinga # Date 1198990820 0 # Node ID 21d48dbc2ca88a27c1d603f3d719214287dab25c # Parent df2f562890a0b45a59083417b08874017b87dc35 Don't use -fvisibility if it generates warnings ... like this one: warning: visibility attribute not supported in this configuration; ignored diff -r df2f562890a0 -r 21d48dbc2ca8 configure.in --- a/configure.in Sat Dec 29 21:41:48 2007 +0000 +++ b/configure.in Sun Dec 30 05:00:20 2007 +0000 @@ -833,7 +833,7 @@ visibility_CFLAGS="-fvisibility=hidden" save_CFLAGS="$CFLAGS" - CFLAGS="$save_CFLAGS $visibility_CFLAGS" + CFLAGS="$save_CFLAGS $visibility_CFLAGS -Werror" AC_TRY_COMPILE([ #if !defined(__GNUC__) || __GNUC__ < 4 #error SDL only uses visibility attributes in GCC 4 or newer