summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2004-06-10 22:21:53 (GMT)
committerdgp <dgp@users.sourceforge.net>2004-06-10 22:21:53 (GMT)
commit5f7f423c689fd84fd9fd9277b7d0b88508df193e (patch)
tree37e87652ff8a4dd91645c83ad41a378e1a6290ae /ChangeLog
parentf8d48a28aa88543b2a71e4f33aa1bca392898f14 (diff)
downloadtcl-5f7f423c689fd84fd9fd9277b7d0b88508df193e.zip
tcl-5f7f423c689fd84fd9fd9277b7d0b88508df193e.tar.gz
tcl-5f7f423c689fd84fd9fd9277b7d0b88508df193e.tar.bz2
* unix/tclUnixInit.c (TclpInitLibraryPath): Disabled addition of
* win/tclWinInit.c (TclpInitLibraryPath): relative-to-executable directories to the library search path. A first step in reform of Tcl's startup process. ***POTENTIAL INCOMPATIBILITY*** Attempts to directly run ./tclsh or ./tcltest out of a build directory will either fail, or will make use of an installed script library in preference to the one in the source tree. Use `make shell` or `make runtest` instead. * tests/unixInit.test: Modified tests to suit above changes.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog13
1 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 5f0df68..3544a50 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -11,6 +11,19 @@
2004-06-10 Don Porter <dgp@users.sourceforge.net>
+ * unix/tclUnixInit.c (TclpInitLibraryPath): Disabled addition of
+ * win/tclWinInit.c (TclpInitLibraryPath): relative-to-executable
+ directories to the library search path. A first step in reform of
+ Tcl's startup process.
+
+ ***POTENTIAL INCOMPATIBILITY***
+ Attempts to directly run ./tclsh or ./tcltest out of a build
+ directory will either fail, or will make use of an installed
+ script library in preference to the one in the source tree.
+ Use `make shell` or `make runtest` instead.
+
+ * tests/unixInit.test: Modified tests to suit above changes.
+
* generic/tclPathObj.c: Corrected [file tail] results when operating
on a path produced by TclNewFSPathObj(). [Bug 970529]