mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
a8c72e3fdf
A Tcl/Tk library with support for many image types. PR: 11337 Submitted by: KIRIYAMA Kazuhiko <kiri@pis.toba-cmt.ac.jp>
21 lines
912 B
Plaintext
21 lines
912 B
Plaintext
--- configure.in.orig Fri Nov 20 15:14:25 1998
|
|
+++ configure.in Thu Mar 25 16:30:20 1999
|
|
@@ -111,6 +111,8 @@
|
|
TCL_INC_DIR=${TCL_EXEC_PREFIX}/include
|
|
elif test -d ${TCL_EXEC_PREFIX}/include -a -f ${TCL_EXEC_PREFIX}/include/tcl.h; then
|
|
TCL_INC_DIR=${TCL_EXEC_PREFIX}/include
|
|
+elif test -d ${TCL_EXEC_PREFIX}/include/tcl${TCL_VERSION} -a -f ${TCL_EXEC_PREFIX}/include/tcl${TCL_VERSION}/tcl.h; then
|
|
+ TCL_INC_DIR=${TCL_EXEC_PREFIX}/include/tcl${TCL_VERSION}
|
|
else
|
|
TCL_INC_DIR=$prefix/include
|
|
fi
|
|
@@ -210,6 +212,8 @@
|
|
TK_INC_DIR=${TK_EXEC_PREFIX}/include
|
|
elif test -d ${TK_EXEC_PREFIX}/include -a -f ${TK_EXEC_PREFIX}/include/tk.h; then
|
|
TK_INC_DIR=${TK_EXEC_PREFIX}/include
|
|
+elif test -d ${TK_EXEC_PREFIX}/include/tk${TK_VERSION} -a -f ${TK_EXEC_PREFIX}/include/tk${TK_VERSION}/tk.h; then
|
|
+ TK_INC_DIR=${TK_EXEC_PREFIX}/include/tk${TK_VERSION}
|
|
else
|
|
TK_INC_DIR=$prefix/include
|
|
fi
|