summaryrefslogtreecommitdiffstats
path: root/unix/tcl.m4
diff options
context:
space:
mode:
authorhobbs <hobbs>2001-05-22 00:23:26 (GMT)
committerhobbs <hobbs>2001-05-22 00:23:26 (GMT)
commit2a1a7f289a4f8d35d3e59a449726aa0204a56345 (patch)
treee4b8d332cd11a7514c8402baa86580870a4c83a6 /unix/tcl.m4
parent8b6e69e2aee288cb8f4bba2cc1c44342d1fd2703 (diff)
downloadtk-2a1a7f289a4f8d35d3e59a449726aa0204a56345.zip
tk-2a1a7f289a4f8d35d3e59a449726aa0204a56345.tar.gz
tk-2a1a7f289a4f8d35d3e59a449726aa0204a56345.tar.bz2
unix/tcl.m4: synced up wih Tcl tcl.m4. [Bug #419812]
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r--unix/tcl.m410
1 files changed, 8 insertions, 2 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4
index 5925196..efe87cf 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