summaryrefslogtreecommitdiffstats
path: root/unix/tkConfig.sh.in
diff options
context:
space:
mode:
authormdejong <mdejong>2003-04-04 19:29:33 (GMT)
committermdejong <mdejong>2003-04-04 19:29:33 (GMT)
commit7da91f4ded6684e544186183922f03297ff2eeb1 (patch)
tree61073b2439ecc4db824226610c02c10203606a3c /unix/tkConfig.sh.in
parentc0d490caba1f47f95ebb1aeb5e83794329b88293 (diff)
downloadtk-7da91f4ded6684e544186183922f03297ff2eeb1.zip
tk-7da91f4ded6684e544186183922f03297ff2eeb1.tar.gz
tk-7da91f4ded6684e544186183922f03297ff2eeb1.tar.bz2
* unix/Makefile.in: Subst TCL_LIBS instead of
DL_LIBS and MATH_LIBS. * unix/configure: Regen. * unix/configure.in: Remove SC_ENABLE_THREADS invocation. Thread support in an extension should be automatic when Tcl is compiled with thread support. Add AC_DEFINE calls to set TCL_THREADS, _REENTRANT, and _THREAD_SAFE since this was done in SC_ENABLE_THREADS. Remove socket and math lib checks since these are already done in the Tcl configure script. * unix/tcl.m4: Update from Tcl to get TCL_LIBS fix. This fixes bug 597847 which was caused by improper linking. * unix/tkConfig.sh.in: Subst TCL_LIBS instead of MATH_LIBS and DL_LIBS. [Bug 597847]
Diffstat (limited to 'unix/tkConfig.sh.in')
-rw-r--r--unix/tkConfig.sh.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tkConfig.sh.in b/unix/tkConfig.sh.in
index f8d43f1..735adba 100644
--- a/unix/tkConfig.sh.in
+++ b/unix/tkConfig.sh.in
@@ -11,7 +11,7 @@
#
# The information in this file is specific to a single platform.
#
-# RCS: @(#) $Id: tkConfig.sh.in,v 1.8 2002/07/28 03:23:08 mdejong Exp $
+# RCS: @(#) $Id: tkConfig.sh.in,v 1.9 2003/04/04 19:29:51 mdejong Exp $
# Tk's version number.
TK_VERSION='@TK_VERSION@'
@@ -32,7 +32,7 @@ TK_DBGX=@TK_DBGX@
TK_LIB_FILE='@TK_LIB_FILE@'
# Additional libraries to use when linking Tk.
-TK_LIBS='@XLIBSW@ @DL_LIBS@ @LIBS@ @MATH_LIBS@'
+TK_LIBS='@XLIBSW@ @LIBS@ @TCL_LIBS@'
# Top-level directory in which Tcl's platform-independent files are
# installed.