summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rwxr-xr-xunix/configure2
-rw-r--r--unix/tcl.m42
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 894f5f8..fb784e2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-01-22 Kevin B. Kenny <kennykb@acm.org>
+
+ * unix/tcl.m4: Corrected a typo ($(SHLIB_VEERSION) should be
+ ${SHLIB_VERSION}).
+ * unix/configure: Autoconf 2.59
+
2009-01-21 Andreas Kupries <andreask@activestate.com>
* generic/tclIORChan.c (ReflectClose): Fix for [Bug 2458202].
diff --git a/unix/configure b/unix/configure
index 88021cd..e45d666 100755
--- a/unix/configure
+++ b/unix/configure
@@ -6621,7 +6621,7 @@ fi
# Require ranlib early so we can override it in special cases below.
LDAIX_SRC=""
- if test x"$(SHLIB_VERSION)" = x; then
+ if test x"${SHLIB_VERSION}" = x; then
SHLIB_VERSION="1.0"
fi
diff --git a/unix/tcl.m4 b/unix/tcl.m4
index 4a44599..c7f26ca 100644
--- a/unix/tcl.m4
+++ b/unix/tcl.m4
@@ -1122,7 +1122,7 @@ AC_DEFUN([SC_CONFIG_CFLAGS], [
# Require ranlib early so we can override it in special cases below.
LDAIX_SRC=""
- AS_IF([test x"$(SHLIB_VERSION)" = x], [SHLIB_VERSION="1.0"])
+ AS_IF([test x"${SHLIB_VERSION}" = x], [SHLIB_VERSION="1.0"])
AC_REQUIRE([AC_PROG_RANLIB])