summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorescoffon <escoffon@noemail.net>1998-07-14 12:24:35 (GMT)
committerescoffon <escoffon@noemail.net>1998-07-14 12:24:35 (GMT)
commite3f6353c4d6f81effda04daaab12f33aa8549748 (patch)
tree2988b92b525b23a20a1a2b7ca7e47ba54df78b1a
parentf5e25ab18a060e9c179b6ee6004877b950a3bdc4 (diff)
downloadtk-e3f6353c4d6f81effda04daaab12f33aa8549748.zip
tk-e3f6353c4d6f81effda04daaab12f33aa8549748.tar.gz
tk-e3f6353c4d6f81effda04daaab12f33aa8549748.tar.bz2
the Tk library is now created with the DBGX extension (g for debug, empty for
nodebug) FossilOrigin-Name: 8d1248c4bffb5f7d68f40a8e1b21bc9e02eba0fd
-rw-r--r--unix/configure.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/unix/configure.in b/unix/configure.in
index f7a0ef4..5379266 100644
--- a/unix/configure.in
+++ b/unix/configure.in
@@ -384,11 +384,11 @@ fi
# up the Tcl library.
if test "${TCL_LIB_VERSIONS_OK}" = "ok"; then
- TK_BUILD_LIB_SPEC="-L`pwd` -ltk${VERSION}"
- TK_LIB_SPEC="-L${exec_prefix}/lib -ltk${VERSION}"
+ TK_BUILD_LIB_SPEC="-L`pwd` -ltk${VERSION}\${DBGX}"
+ TK_LIB_SPEC="-L${exec_prefix}/lib -ltk${VERSION}\${DBGX}"
else
- TK_BUILD_LIB_SPEC="-L`pwd` -ltk`echo ${VERSION} | tr -d .`"
- TK_LIB_SPEC="-L${exec_prefix}/lib -ltk`echo ${VERSION} | tr -d .`"
+ TK_BUILD_LIB_SPEC="-L`pwd` -ltk`echo ${VERSION} | tr -d .`\${DBGX}"
+ TK_LIB_SPEC="-L${exec_prefix}/lib -ltk`echo ${VERSION} | tr -d .`\${DBGX}"
fi
echo CFLAGS_DEBUG=$CFLAGS_DEBUG