Ticket #23752: tcl85.diff
File tcl85.diff, 2.0 KB (added by gjasny@…, 12 years ago) |
---|
-
unix/configure.in
old new 9 9 10 10 TNM_VERSION=3.0.0 11 11 TKI_VERSION=1.5.0 12 TCL_VERSION=8. 413 TK_VERSION=8. 412 TCL_VERSION=8.5 13 TK_VERSION=8.5 14 14 15 15 #---------------------------------------------------------------------------- 16 16 # Load the tcl configuration file. 17 17 #---------------------------------------------------------------------------- 18 18 19 AC_PATH_PROG(tclsh,tclsh 8.4)19 AC_PATH_PROG(tclsh,tclsh) 20 20 if test -n "$tclsh" ; then 21 21 tclsh_prefix=`dirname $tclsh` 22 22 tclsh_prefix=`dirname $tclsh_prefix` … … 71 71 72 72 AC_MSG_CHECKING(for tcl version) 73 73 AC_MSG_RESULT("$TCL_VERSION") 74 if test "$TCL_VERSION" != "8.4" ; then75 AC_MSG_ERROR("Tcl version 8.4 needed")76 fi74 #if test "$TCL_VERSION" != "8.4" ; then 75 # AC_MSG_ERROR("Tcl version 8.4 needed") 76 #fi 77 77 78 78 BUILD_TARGETS="$BUILD_TARGETS scotty" 79 79 INSTALL_TARGETS="$INSTALL_TARGETS tnm-install" … … 82 82 # Load the tk configuration file. 83 83 #---------------------------------------------------------------------------- 84 84 85 AC_PATH_PROG(wish,wish 8.4)85 AC_PATH_PROG(wish,wish) 86 86 if test -n "$wish" ; then 87 87 wish_prefix=`dirname $wish` 88 88 wish_prefix=`dirname $wish_prefix` … … 122 122 123 123 AC_MSG_CHECKING(for tk version) 124 124 AC_MSG_RESULT("$TK_VERSION") 125 if test "$TK_VERSION" != "8.4" ; then126 AC_MSG_ERROR("Tk version 8.4 needed")127 fi125 # if test "$TK_VERSION" != "8.4" ; then 126 # AC_MSG_ERROR("Tk version 8.4 needed") 127 # fi 128 128 129 129 BUILD_TARGETS="$BUILD_TARGETS tkined" 130 130 INSTALL_TARGETS="$INSTALL_TARGETS tki-install" … … 259 259 # Check for sin_len field in struct sockaddr (BSD-ish). 260 260 #---------------------------------------------------------------------------- 261 261 262 AC_CHECK_TYPE(socklen_t,AC_DEFINE(HAVE_SOCKLEN_T) )262 AC_CHECK_TYPE(socklen_t,AC_DEFINE(HAVE_SOCKLEN_T),,[#include <sys/socket.h>]) 263 263 264 264 AC_CACHE_CHECK([for 'sa_len' in 'struct sockaddr'], ac_cv_struct_sa_len, 265 265 [AC_TRY_COMPILE([#include <sys/types.h>