diff options
author | jmz <jmz@FreeBSD.org> | 1999-11-29 17:55:38 +0000 |
---|---|---|
committer | jmz <jmz@FreeBSD.org> | 1999-11-29 17:55:38 +0000 |
commit | 84049c3f1175a1c457443adcbad54b838fb85a76 (patch) | |
tree | f3d8cb26681b18f16eee4af64e88f8674cc68e94 /x11/XFree86-4/scripts/configure | |
parent | d8f9b6546ce4b28b4b5c5b70fe556723e80725c2 (diff) | |
download | FreeBSD-ports-84049c3f1175a1c457443adcbad54b838fb85a76.zip FreeBSD-ports-84049c3f1175a1c457443adcbad54b838fb85a76.tar.gz |
Allow building XF86Setp with japanese tcl/tk
Submitted by: kiri@pis.toba-cmt.ac.jp
Diffstat (limited to 'x11/XFree86-4/scripts/configure')
-rw-r--r-- | x11/XFree86-4/scripts/configure | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/x11/XFree86-4/scripts/configure b/x11/XFree86-4/scripts/configure index 40e3399..4120f92 100644 --- a/x11/XFree86-4/scripts/configure +++ b/x11/XFree86-4/scripts/configure @@ -36,7 +36,7 @@ rm -f $F # Tk detection tkversion= -for v in 42 80 81 82; do +for v in 42 80 81 82 42jp 80jp; do if [ -f /usr/local/lib/libtk$v.a ]; then tkversion=$v case $tkversion in @@ -50,6 +50,16 @@ for v in 42 80 81 82; do tclLversion=8.0 tkLversion=8.0 ;; + 42jp) + tclversion=76jp + tclLversion=7.6jp + tkLversion=4.2jp + ;; + 80jp) + tclversion=80jp + tclLversion=8.0jp + tkLversion=8.0jp + ;; 81) tclversion=81 tclLversion=8.1 |