summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2006-03-13 20:42:21 (GMT)
committerdgp <dgp@users.sourceforge.net>2006-03-13 20:42:21 (GMT)
commitd973ba3d9d0f917be5aab2ae8abbf049d2311540 (patch)
treef170c50d77f0700dd72d8eb36fbabbbea1e9cfc6
parent0090672a25372ba0e9c52f4aa25c45aa995adcc5 (diff)
downloadtcl-d973ba3d9d0f917be5aab2ae8abbf049d2311540.zip
tcl-d973ba3d9d0f917be5aab2ae8abbf049d2311540.tar.gz
tcl-d973ba3d9d0f917be5aab2ae8abbf049d2311540.tar.bz2
* 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.59.
-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 98288c7..2626be6 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.59.
+
2006-03-10 Miguel Sofer <msofer@users.sf.net>
* generic/tclProc.c (ObjInterpProcEx):
diff --git a/changes b/changes
index d79b6f4..457a696 100644
--- a/changes
+++ b/changes
@@ -1,6 +1,6 @@
Recent user-visible changes to Tcl:
-RCS: @(#) $Id: changes,v 1.98 2006/03/07 20:58:53 dgp Exp $
+RCS: @(#) $Id: changes,v 1.99 2006/03/13 20:42:21 dgp Exp $
1. No more [command1] [command2] construct for grouping multiple
commands on a single command line.
@@ -6700,6 +6700,10 @@ Reduces the ***POTENTIAL INCOMPATIBILITY*** from 2005-05-17.
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)
+
(platform support) Use of _ANSI_ARGS_ purged. ANSI compiler required (fellows)
Documentation improvements [1211078,1190891,1292427,1277503,1104682,1359183,
diff --git a/unix/configure b/unix/configure
index f5eacd5..81a323c 100755
--- a/unix/configure
+++ b/unix/configure
@@ -15068,13 +15068,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 fc44205..6ffca54 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.140 2006/01/10 05:36:25 das Exp $
+# RCS: @(#) $Id: configure.in,v 1.141 2006/03/13 20:42:22 dgp Exp $
AC_INIT([tcl],[8.5])
AC_PREREQ(2.59)
@@ -567,13 +567,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.