diff options
author | dgp <dgp@users.sourceforge.net> | 2012-09-13 19:13:29 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2012-09-13 19:13:29 (GMT) |
commit | 0e809f8dd3305b97598597b825333fc85204a6ef (patch) | |
tree | 2600609a3ca43a95995e4b085b729ae96442e9a5 /unix/configure.in | |
parent | 613b11b96f3952debe6c90fd79fa83c69da66d57 (diff) | |
download | tk-0e809f8dd3305b97598597b825333fc85204a6ef.zip tk-0e809f8dd3305b97598597b825333fc85204a6ef.tar.gz tk-0e809f8dd3305b97598597b825333fc85204a6ef.tar.bz2 |
Building Tk 8.6 requires Tcl 8.6 headers.
Diffstat (limited to 'unix/configure.in')
-rw-r--r-- | unix/configure.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/unix/configure.in b/unix/configure.in index bfe145c..7964bc2 100644 --- a/unix/configure.in +++ b/unix/configure.in @@ -36,6 +36,15 @@ LOCALES="cs da de el en en_gb eo es fr hu it nl pl pt ru sv" SC_PATH_TCLCONFIG SC_LOAD_TCLCONFIG +if test "${TCL_MAJOR_VERSION}" -ne 8 ; then + AC_MSG_ERROR([${PACKAGE_NAME} ${PACKAGE_VERSION} requires Tcl 8.6+ +Found config for Tcl ${TCL_VERSION}]) +fi +if test "${TCL_MINOR_VERSION}" -lt 6 ; then + AC_MSG_ERROR([${PACKAGE_NAME} ${PACKAGE_VERSION} requires Tcl 8.6+ +Found config for Tcl ${TCL_VERSION}]) +fi + SC_PROG_TCLSH SC_BUILD_TCLSH |