From 3a056edace8d44354fc6b7a5483461e10700ac0f Mon Sep 17 00:00:00 2001 From: "jan.nijtmans" Date: Fri, 16 Aug 2024 15:30:41 +0000 Subject: [PATCH] See if renaming the Tk 9 MacOS library name has any undesired side effects --- unix/configure | 4 ++-- unix/configure.ac | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/unix/configure b/unix/configure index 85b1fb61f..99bb7c479 100755 --- a/unix/configure +++ b/unix/configure @@ -8985,10 +8985,10 @@ printf "%s\n" "#define TK_FRAMEWORK 1" >>confdefs.h if test ${TCL_MAJOR_VERSION} = 8 ; then TK_LIB_FILE="Tk" else - TK_LIB_FILE="Tk" + TK_LIB_FILE="tcl9Tk" fi TK_LIB_FILE_TCL8="Tk" - TK_LIB_FILE_TCL9="Tk" + TK_LIB_FILE_TCL9="tcl9Tk" TK_LIB_FLAG="-framework Tk" TK_BUILD_LIB_SPEC="-F`pwd | sed -e 's/ /\\\\ /g'` -framework Tk" TK_LIB_SPEC="-F${libdir} -framework Tk" diff --git a/unix/configure.ac b/unix/configure.ac index a532ac598..c82e7ebac 100644 --- a/unix/configure.ac +++ b/unix/configure.ac @@ -649,10 +649,10 @@ if test "$FRAMEWORK_BUILD" = "1" ; then if test ${TCL_MAJOR_VERSION} = 8 ; then TK_LIB_FILE="Tk" else - TK_LIB_FILE="Tk" + TK_LIB_FILE="tcl9Tk" fi TK_LIB_FILE_TCL8="Tk" - TK_LIB_FILE_TCL9="Tk" + TK_LIB_FILE_TCL9="tcl9Tk" TK_LIB_FLAG="-framework Tk" TK_BUILD_LIB_SPEC="-F`pwd | sed -e 's/ /\\\\ /g'` -framework Tk" TK_LIB_SPEC="-F${libdir} -framework Tk"