From b6a16b508597ad78096256d1b1d4d12ab31e11c0 Mon Sep 17 00:00:00 2001 From: "jan.nijtmans" Date: Mon, 11 Apr 2011 07:53:01 +0000 Subject: sync with Tcl version of tcl.m4 --- ChangeLog | 11 +++++++++++ unix/configure | 5 ++++- unix/tcl.m4 | 7 +++++-- 3 files changed, 20 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index bf42b33..a347449 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +<<<<<<< BEGIN MERGE CONFLICT: original content first <<<<<<< +2011-03-29 Jan Nijtmans + + * generic/tk.decls: [Tcl Bug 3029891]: Functions that don't belong in + * generic/tkDecls.h: the stub table. Tk part follow-up: Separate non-stub + * generic/tkStubInit.c: entries in tkDecls.h, and hide away the obsolete + stub entries using macros. + +2011-03-28 Donal K. Fellows +======= original content above; conflict below ============= 2011-04-06 Jan Nijtmans * unix/tkAppInit.c: Make symbols "main" and "Tcl_AppInit" @@ -28,6 +38,7 @@ as a container. 2011-03-28 Donal K. Fellows +>>>>>>> END MERGE CONFLICT: conflict last >>>>>>>>>>>>>>>>>> * library/tk.tcl (::tk::FindAltKeyTarget): Make this handle the traversal of the logical window manager hierarchy correctly. Based on diff --git a/unix/configure b/unix/configure index 79eff52..b830b2e 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 -a "$SHARED_BUILD" = 1; then + if test "$SHARED_BUILD" = 1; then hold_cflags=$CFLAGS; CFLAGS="$CFLAGS -fvisibility=hidden -Werror" cat >conftest.$ac_ext <<_ACEOF @@ -4329,6 +4329,9 @@ cat >>conftest.$ac_ext <<_ACEOF int main () { +#if !defined(__GNUC__) || __GNUC__ < 4 +#error visibility hidden is not supported for this compiler +#endif ; return 0; diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 9a02e4c..5f4012d 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -1044,9 +1044,12 @@ AC_DEFUN([SC_CONFIG_CFLAGS], [ AC_CACHE_CHECK([if compiler supports visibility "hidden"], tcl_cv_cc_visibility_hidden, [ - AS_IF([test "$GCC" = yes -a "$SHARED_BUILD" = 1], [ + AS_IF([test "$SHARED_BUILD" = 1], [ hold_cflags=$CFLAGS; CFLAGS="$CFLAGS -fvisibility=hidden -Werror" - AC_TRY_COMPILE(,, tcl_cv_cc_visibility_hidden=yes, + AC_TRY_COMPILE(,[#if !defined(__GNUC__) || __GNUC__ < 4 +#error visibility hidden is not supported for this compiler +#endif + ], tcl_cv_cc_visibility_hidden=yes, tcl_cv_cc_visibility_hidden=no) CFLAGS=$hold_cflags ], [ -- cgit v0.12