summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--unix/configure.in6
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index f133a94..011f8fd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+1999-07-08 <redman@scriptics.com>
+
+ * unix/configure.in: Fix Tk stub lib file names and flags.
+
1999-06-30 <redman@scriptics.com>
* generic/tkGrid.c: removed deprecated functions (applied patch
diff --git a/unix/configure.in b/unix/configure.in
index fc33d14..890c0d4 100644
--- a/unix/configure.in
+++ b/unix/configure.in
@@ -3,7 +3,7 @@ dnl This file is an input file used by the GNU "autoconf" program to
dnl generate the file "configure", which is run during Tk installation
dnl to configure the system for the local environment.
AC_INIT(../generic/tk.h)
-# RCS: @(#) $Id: configure.in,v 1.37 1999/06/25 23:30:26 welch Exp $
+# RCS: @(#) $Id: configure.in,v 1.38 1999/07/08 01:11:33 redman Exp $
TK_VERSION=8.2
TK_MAJOR_VERSION=8
@@ -398,12 +398,14 @@ fi
# Replace ${VERSION} with contents of ${TK_VERSION}
eval "STUB_LIB_FILE=libtkstub${TK_UNSHARED_LIB_SUFFIX}"
+# Replace DBGX with TK_DBGX
+eval "STUB_LIB_FILE=\"${STUB_LIB_FILE}\""
MAKE_STUB_LIB="ar cr \${STUB_LIB_FILE} \${STUB_LIB_OBJS}"
TK_STUB_LIB_FILE=${STUB_LIB_FILE}
-if test "${TK_LIB_VERSIONS_OK}" = "ok"; then
+if test "${TCL_LIB_VERSIONS_OK}" = "ok"; then
TK_STUB_LIB_FLAG="-ltkstub${TK_VERSION}\${TK_DBGX}"
else
TK_STUB_LIB_FLAG="-ltkstub`echo ${TK_VERSION} | tr -d .`\${TK_DBGX}"