summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorstu <stwo@users.sourceforge.net>2018-06-15 10:24:06 (GMT)
committerstu <stwo@users.sourceforge.net>2018-06-15 10:24:06 (GMT)
commitab3286e299f2ee68fbc5db0ac843285a01e78b15 (patch)
tree61f9537a432165fecf1ea4fe385bca80698323e3 /unix
parent919ec44584344d71c8ddad8d14d58adfdec28e8b (diff)
downloadtcl-ab3286e299f2ee68fbc5db0ac843285a01e78b15.zip
tcl-ab3286e299f2ee68fbc5db0ac843285a01e78b15.tar.gz
tcl-ab3286e299f2ee68fbc5db0ac843285a01e78b15.tar.bz2
Align common install locations in SC_PATH_TCLCONFIG and SC_PATH_TKCONFIG.
Add FreeBSD (closes [d6d60efd35]) and OpenBSD 8.6 paths.
Diffstat (limited to 'unix')
-rw-r--r--unix/tcl.m47
1 files changed, 6 insertions, 1 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4
index cf6345f..713cb37 100644
--- a/unix/tcl.m4
+++ b/unix/tcl.m4
@@ -96,6 +96,8 @@ AC_DEFUN([SC_PATH_TCLCONFIG], [
`ls -d /usr/pkg/lib 2>/dev/null` \
`ls -d /usr/lib 2>/dev/null` \
`ls -d /usr/lib64 2>/dev/null` \
+ `ls -d /usr/local/lib/tcl8.6 2>/dev/null` \
+ `ls -d /usr/local/lib/tcl/tcl8.6 2>/dev/null` \
; do
if test -f "$i/tclConfig.sh" ; then
ac_cv_c_tclconfig="`(cd $i; pwd)`"
@@ -222,10 +224,13 @@ AC_DEFUN([SC_PATH_TKCONFIG], [
for i in `ls -d ${libdir} 2>/dev/null` \
`ls -d ${exec_prefix}/lib 2>/dev/null` \
`ls -d ${prefix}/lib 2>/dev/null` \
- `ls -d /usr/local/lib 2>/dev/null` \
`ls -d /usr/contrib/lib 2>/dev/null` \
+ `ls -d /usr/local/lib 2>/dev/null` \
+ `ls -d /usr/pkg/lib 2>/dev/null` \
`ls -d /usr/lib 2>/dev/null` \
`ls -d /usr/lib64 2>/dev/null` \
+ `ls -d /usr/local/lib/tk8.6 2>/dev/null` \
+ `ls -d /usr/local/lib/tcl/tk8.6 2>/dev/null` \
; do
if test -f "$i/tkConfig.sh" ; then
ac_cv_c_tkconfig="`(cd $i; pwd)`"