Skip to content
Snippets Groups Projects
Commit 44656809 authored by Ivica Bukvic's avatar Ivica Bukvic
Browse files

Added support for tcl/tk8.6

parent d14ed01d
No related branches found
No related tags found
No related merge requests found
......@@ -149,6 +149,7 @@ then
# exit -1
fi
AC_CHECK_LIB(tcl8.6, main,,
AC_CHECK_LIB(tcl85, main,,
AC_CHECK_LIB(tcl8.5, main,,
AC_CHECK_LIB(tcl84, main,,
......@@ -156,16 +157,17 @@ AC_CHECK_LIB(tcl85, main,,
AC_CHECK_LIB(tcl8.3, main,,
AC_CHECK_LIB(tcl8.2, main,,
AC_CHECK_LIB(tcl8.0, main,,
echo no tcl library found; exit 1)))))))
echo no tcl library found; exit 1))))))))
AC_CHECK_LIB(tk8.6, main,,
AC_CHECK_LIB(tk85, main,,
AC_CHECK_LIB(tk8.5, main,,
AC_CHECK_LIB(tk8.5, main,,
AC_CHECK_LIB(tk84, main,,
AC_CHECK_LIB(tk8.4, main,,
AC_CHECK_LIB(tk8.3, main,,
AC_CHECK_LIB(tk8.2, main,,
AC_CHECK_LIB(tk8.0, main,,
echo no tk library found; exit 1)))))))
echo no tk library found; exit 1))))))))
if test x$tk != "xno"; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment