diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2011-04-06 14:51:57 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2011-04-06 14:51:57 (GMT) |
commit | 963b72a978e2d4330b46c084effc90fd45b503d5 (patch) | |
tree | 3d13794e12e1ee15347be0e543ef3b522c41bfa0 /unix/configure | |
parent | 7207d9a57abd342956e228d594c8e4a70a03030a (diff) | |
download | tcl-963b72a978e2d4330b46c084effc90fd45b503d5.zip tcl-963b72a978e2d4330b46c084effc90fd45b503d5.tar.gz tcl-963b72a978e2d4330b46c084effc90fd45b503d5.tar.bz2 |
Don't use -fvisibility=hidden with static libraries (--disable-shared)
Diffstat (limited to 'unix/configure')
-rwxr-xr-x | unix/configure | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/unix/configure b/unix/configure index 8701f7e..4fdddd4 100755 --- a/unix/configure +++ b/unix/configure @@ -6479,7 +6479,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 @@ -6550,11 +6550,6 @@ _ACEOF else - -cat >>confdefs.h <<\_ACEOF -#define NO_VIZ -_ACEOF - hold_cflags=$CFLAGS; CFLAGS="$CFLAGS -Werror" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ |