diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2011-04-06 14:54:06 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2011-04-06 14:54:06 (GMT) |
commit | e536b3536ed366b76ba05f7b6bbfddbba3127965 (patch) | |
tree | c67ac77da328b014485f7794aab500dece201863 /unix/configure | |
parent | 4f7e6a5909b4916bc504be0ddecfa1e9b647bf4d (diff) | |
download | tk-e536b3536ed366b76ba05f7b6bbfddbba3127965.zip tk-e536b3536ed366b76ba05f7b6bbfddbba3127965.tar.gz tk-e536b3536ed366b76ba05f7b6bbfddbba3127965.tar.bz2 |
Don't use -fvisibility=hidden with static libraries (--disable-shared)
Diffstat (limited to 'unix/configure')
-rwxr-xr-x | unix/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/configure b/unix/configure index e44463a..79eff52 100755 --- a/unix/configure +++ b/unix/configure @@ -4316,7 +4316,7 @@ if test "${tcl_cv_cc_visibility_hidden+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else - if test "$GCC" = yes; then + if test "$GCC" = yes -a "$SHARED_BUILD" = 1; then hold_cflags=$CFLAGS; CFLAGS="$CFLAGS -fvisibility=hidden -Werror" cat >conftest.$ac_ext <<_ACEOF |