summaryrefslogtreecommitdiff
path: root/x11/XFree86/scripts/configure
diff options
context:
space:
mode:
authorJean-Marc Zucconi <jmz@FreeBSD.org>1998-03-15 23:48:16 +0000
committerJean-Marc Zucconi <jmz@FreeBSD.org>1998-03-15 23:48:16 +0000
commita3d7c75c6317187f44e78c60445c265c90a73c38 (patch)
tree73dc59d80c21343cbb7a92d3dc051156387456f4 /x11/XFree86/scripts/configure
parentupdate to handle SCSI changes made on FreeBSD 2.2.5-RELEASE. (diff)
Built XF86Setup only if tk4.2/tcl7.6 is there. Other versions do not seem to
work.
Notes
Notes: svn path=/head/; revision=10164
Diffstat (limited to '')
-rw-r--r--x11/XFree86/scripts/configure7
1 files changed, 4 insertions, 3 deletions
diff --git a/x11/XFree86/scripts/configure b/x11/XFree86/scripts/configure
index 24ae1683d3b4..fcc38caf0028 100644
--- a/x11/XFree86/scripts/configure
+++ b/x11/XFree86/scripts/configure
@@ -21,7 +21,8 @@ rm -f $F
# Tk detection
tkversion=
-for v in 1 2; do
+###### only tk 4.2/tcl 7.6 is known to work
+for v in 2; do
if [ -f /usr/local/lib/libtk4$v.a ]; then
tkversion=$v
fi
@@ -46,9 +47,9 @@ if [ X$tkversion != X ]; then
echo "#define TclLibName tcl7$tclversion" >>$F
else
cat <<EOF
-*** I don't see the static library for tk version 4 in /usr/local/lib.
+*** I don't see the static library for tk version 4.2 in /usr/local/lib.
*** XF86Setup will not be installed. If you want to build this program
-*** install tk first.
+*** install tk 4.2 first.
EOF
fi