1 --- tls1.6/tls.tcl Thu Mar 20 03:52:12 2008
2 +++ tls1.6/tls.tcl Mon Apr 21 16:36:08 2008
4 # Irrelevant to unixoids, but for Windows this enables the OS to find
5 # the dependent DLL's in the CWD, where they may be.
7 + if {$::tcl_platform(wordSize) == 8} {
11 set res [catch {uplevel #0 [list load [file join [pwd] $dll]]} err]
13 --- tls1.6/configure Wed Mar 19 15:37:51 2008
14 +++ tls1.6/configure Mon Jul 4 23:20:00 2011
16 echo "$as_me: WARNING: 64bit mode not supported with GCC on $system" >&2;}
19 - CFLAGS="$CFLAGS -xarch=amd64"
20 - LDFLAGS="$LDFLAGS -xarch=amd64"
21 + CFLAGS="$CFLAGS -m64"
22 + LDFLAGS="$LDFLAGS -m64"
25 { echo "$as_me:$LINENO: WARNING: 64bit mode not supported for $arch" >&5
26 @@ -10126,7 +10126,12 @@
27 eval "LD_SEARCH_FLAGS=\"${LD_SEARCH_FLAGS}\""
28 if test -n "${OPENSSL}"; then
30 - vars="${LD_SEARCH_FLAGS} -L${SSL_LIB_DIR} -lssl -lcrypto ${GCCPATH} ${GCCLIB}"
31 + if test "${with_ssl_dir+set}" = set; then
32 + vars="${LD_SEARCH_FLAGS} -L${SSL_LIB_DIR} -lssl -lcrypto ${GCCPATH} ${GCCLIB}"
34 + vars="${LD_SEARCH_FLAGS} -lssl -lcrypto ${GCCPATH} ${GCCLIB}"
38 if test "${TEA_PLATFORM}" = "windows" -a "$GCC" = "yes" ; then
39 # Convert foo.lib to -lfoo for GCC. No-op if not *.lib
40 @@ -10170,6 +10175,11 @@
42 TCLSH_PROG="${TCL_BIN_DIR}/tclsh"
44 + if test "$do64bit_ok" = "yes" ; then
45 + TCLSH_PROG="${TCL_BIN_DIR}/${MACH64DIR}/${TCLSH_PROG}"
47 + TCLSH_PROG="${TCL_BIN_DIR}/${TCLSH_PROG}"
50 # tclConfig.sh is in install location
51 if test "${TEA_PLATFORM}" = "windows"; then
52 @@ -10186,7 +10196,11 @@
56 - TCLSH_PROG="${REAL_TCL_BIN_DIR}/${TCLSH_PROG}"
57 + if test "$do64bit_ok" = "yes" ; then
58 + TCLSH_PROG="${REAL_TCL_BIN_DIR}/${MACH64DIR}/${TCLSH_PROG}"
60 + TCLSH_PROG="${REAL_TCL_BIN_DIR}/${TCLSH_PROG}"
63 echo "$as_me:$LINENO: result: ${TCLSH_PROG}" >&5
64 echo "${ECHO_T}${TCLSH_PROG}" >&6