summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--changes6
-rwxr-xr-xunix/configure7
-rw-r--r--unix/configure.in9
4 files changed, 12 insertions, 16 deletions
diff --git a/ChangeLog b/ChangeLog
index 54ee4a5..1f75ecb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-03-13 Don Porter <dgp@users.sourceforge.net>
+
+ * unix/configure.in: Revert change from 2005-07-26 that sometimes
+ * unix/configure: added $prefix/share to the tcl_pkgPath.
+ See [Patch 1231015]. autoconf-2.13.
+
2006-03-10 Zoran Vasiljevic <vasiljevic@users.sourceforge.net>
-- Summary of changes fixing Tcl Bug #1437595 --
diff --git a/changes b/changes
index 2cc8d58..205678d 100644
--- a/changes
+++ b/changes
@@ -1,6 +1,6 @@
Recent user-visible changes to Tcl:
-RCS: @(#) $Id: changes,v 1.79.2.36 2006/03/07 20:35:53 dgp Exp $
+RCS: @(#) $Id: changes,v 1.79.2.37 2006/03/13 20:41:52 dgp Exp $
1. No more [command1] [command2] construct for grouping multiple
commands on a single command line.
@@ -6336,4 +6336,8 @@ Restores Tcl 8.4.9 behavior (porter)
2006-03-06 (bug fix)[1439836,1444291] fix TCL_EVAL_{GLOBAL,INVOKE} handling
when auto-loading or exec traces are present (porter)
+2006-03-10 (bug fix)[1437595] Win socket finalize with threads (vasiljevic)
+
+2005-03-13 (revert 2005-07-26 change) ${prefix}/share on ::tcl_pkgPath (porter)
+
--- Released 8.4.13, March 17, 2006 --- See ChangeLog for details ---
diff --git a/unix/configure b/unix/configure
index 69f1d6d..d9a7c3a 100755
--- a/unix/configure
+++ b/unix/configure
@@ -7928,13 +7928,6 @@ else
TCL_PACKAGE_PATH="${prefix}/lib"
fi
-# If a system share directory like /usr/local/share already exists, then add
-# it to the package search path.
-
-if test -d "${prefix}/share" ; then
- TCL_PACKAGE_PATH="${TCL_PACKAGE_PATH} ${prefix}/share"
-fi
-
#--------------------------------------------------------------------
# The statements below define various symbols relating to Tcl
# stub support.
diff --git a/unix/configure.in b/unix/configure.in
index 99dd1a6..f4caa29 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 Tcl installation
dnl to configure the system for the local environment.
#
-# RCS: @(#) $Id: configure.in,v 1.106.2.25 2006/03/07 05:30:29 dgp Exp $
+# RCS: @(#) $Id: configure.in,v 1.106.2.26 2006/03/13 20:41:56 dgp Exp $
AC_INIT(../generic/tcl.h)
AC_PREREQ(2.13)
@@ -571,13 +571,6 @@ else
TCL_PACKAGE_PATH="${prefix}/lib"
fi
-# If a system share directory like /usr/local/share already exists, then add
-# it to the package search path.
-
-if test -d "${prefix}/share" ; then
- TCL_PACKAGE_PATH="${TCL_PACKAGE_PATH} ${prefix}/share"
-fi
-
#--------------------------------------------------------------------
# The statements below define various symbols relating to Tcl
# stub support.