From 2b259a4ad4a1b11495f55e0530c3c2635a111d66 Mon Sep 17 00:00:00 2001 From: hobbs Date: Wed, 23 May 2001 06:02:28 +0000 Subject: * unix/tcl.m4: added more common install directories in which to search for *Config.sh [Bug #419812] --- ChangeLog | 19 +++++++++++++++++++ unix/tcl.m4 | 10 ++++++++-- 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 + + * 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 * 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 -- cgit v0.12