summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog19
-rw-r--r--unix/tcl.m410
2 files changed, 27 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 73715c1..fc30260 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,25 @@
* generic/tclExecute.c: removed Tcl_DuplicateObj in INST_DUP
+2001-05-21 Jeff Hobbs <jeffh@ActiveState.com>
+
+ * tests/tcltest.test (tcltest-19.1): fixed failing test that was
+ getting affected by Windows env handling of empty valued elements.
+
+ * unix/tcl.m4: added more common install directories in which to
+ search for *Config.sh [Bug #419812]
+
+ * tests/cmdMZ.test (cmdMZ-1.4): added notLinux constraint to test
+ to prevent failure message on Linux due to OS caching bug.
+
+ * tests/httpd (httpdRespond): added response to timeout value in
+ query string.
+
+ * tests/http.test: removed unused notLinux constraint setting
+
+ * generic/tclRegexp.c (Tcl_RegExpExecObj): added use of
+ Tcl_GetUnicodeFromObj.
+
2001-05-19 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* Note that "tclbench" (see project "tcllib") was extended with
diff --git a/unix/tcl.m4 b/unix/tcl.m4
index be1ba45..5a224e0 100644
--- a/unix/tcl.m4
+++ b/unix/tcl.m4
@@ -59,7 +59,10 @@ AC_DEFUN(SC_PATH_TCLCONFIG, [
# check in a few common install locations
if test x"${ac_cv_c_tclconfig}" = x ; then
for i in `ls -d ${prefix}/lib 2>/dev/null` \
- `ls -d /usr/local/lib 2>/dev/null` ; do
+ `ls -d /usr/local/lib 2>/dev/null` \
+ `ls -d /usr/contrib/lib 2>/dev/null` \
+ `ls -d /usr/lib 2>/dev/null` \
+ ; do
if test -f "$i/tclConfig.sh" ; then
ac_cv_c_tclconfig=`(cd $i; pwd)`
break
@@ -151,7 +154,10 @@ AC_DEFUN(SC_PATH_TKCONFIG, [
# check in a few common install locations
if test x"${ac_cv_c_tkconfig}" = x ; then
for i in `ls -d ${prefix}/lib 2>/dev/null` \
- `ls -d /usr/local/lib 2>/dev/null` ; do
+ `ls -d /usr/local/lib 2>/dev/null` \
+ `ls -d /usr/contrib/lib 2>/dev/null` \
+ `ls -d /usr/lib 2>/dev/null` \
+ ; do
if test -f "$i/tkConfig.sh" ; then
ac_cv_c_tkconfig=`(cd $i; pwd)`
break