Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | TEA update |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk | tdbc-1-1-1 |
Files: | files | file ages | folders |
SHA3-256: |
01cac2bbfbc39d7d64117d73691d04e5 |
User & Date: | dgp 2019-11-20 16:33:19.652 |
Context
2020-02-11
| ||
11:03 | TEA update. From now on, compile with -DTCL_NO_DEPRECATED=1. Add missing LDFLAGS and LDFLAGS_DEFAULT to Makefile.in check-in: ce948b780b user: jan.nijtmans tags: trunk | |
2019-11-20
| ||
16:33 | TEA update check-in: 01cac2bbfb user: dgp tags: trunk, tdbc-1-1-1 | |
2019-11-03
| ||
02:40 | TEA update check-in: c9f38dc8e1 user: dgp tags: trunk | |
Changes
Changes to configure.
︙ | ︙ | |||
6211 6212 6213 6214 6215 6216 6217 | SHLIB_VERSION="" else SHLIB_VERSION=".$SHLIB_VERSION" fi case $system in # TEA specific: windows) | < < < < < < < < < < < < < < < < < < < < < < < | 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 | SHLIB_VERSION="" else SHLIB_VERSION=".$SHLIB_VERSION" fi case $system in # TEA specific: windows) MACHINE="X86" if test "$do64bit" != "no" ; then case "$do64bit" in amd64|x64|yes) MACHINE="AMD64" ; # default to AMD64 64-bit build ;; ia64) MACHINE="IA64" ;; esac fi if test "$GCC" != "yes" ; then if test "${SHARED_BUILD}" = "0" ; then runtime=-MT else runtime=-MD |
︙ | ︙ | |||
6272 6273 6274 6275 6276 6277 6278 | ;; *) ;; esac if test "$do64bit" != "no" ; then | < | < | | | | 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 | ;; *) ;; esac if test "$do64bit" != "no" ; then CC="cl.exe" RC="rc.exe" lflags="${lflags} -nologo -MACHINE:${MACHINE} " LINKBIN="link.exe" CFLAGS_DEBUG="-nologo -Zi -Od -W3 ${runtime}d" CFLAGS_OPTIMIZE="-nologo -O2 -W2 ${runtime}" # Avoid 'unresolved external symbol __security_cookie' # errors, c.f. http://support.microsoft.com/?id=894573 vars="bufferoverflowU.lib" for i in $vars; do |
︙ | ︙ |