summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorhobbs <hobbs>2001-05-23 06:02:28 (GMT)
committerhobbs <hobbs>2001-05-23 06:02:28 (GMT)
commit2b259a4ad4a1b11495f55e0530c3c2635a111d66 (patch)
tree16058b4e9c68efead20e6385c41e37a11afdaf2f /unix
parent53974cfe3afedf2b57c2bf571a26dcf1b4975c04 (diff)
downloadtcl-2b259a4ad4a1b11495f55e0530c3c2635a111d66.zip
tcl-2b259a4ad4a1b11495f55e0530c3c2635a111d66.tar.gz
tcl-2b259a4ad4a1b11495f55e0530c3c2635a111d66.tar.bz2
* unix/tcl.m4: added more common install directories in which to
search for *Config.sh [Bug #419812]
Diffstat (limited to 'unix')
-rw-r--r--unix/tcl.m410
1 files changed, 8 insertions, 2 deletions
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