Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | TEA update |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk | tdbcodbc-1-1-1 |
Files: | files | file ages | folders |
SHA3-256: |
e2009447de63fe73ccca3868bb4d3cbd |
User & Date: | dgp 2019-11-20 16:35:42.229 |
Context
2019-12-15
| ||
17:19 | Fix typo (__WIN64 -> _WIN64). Make tdbcodbc ready for the 9.0 era, in which string lengths can be >32bit check-in: 78e0a63cc6 user: jan.nijtmans tags: trunk | |
2019-11-20
| ||
16:35 | TEA update check-in: e2009447de user: dgp tags: trunk, tdbcodbc-1-1-1 | |
2019-11-03
| ||
02:41 | TEA update check-in: e2dd6503b4 user: dgp tags: trunk | |
Changes
Changes to configure.
︙ | ︙ | |||
6555 6556 6557 6558 6559 6560 6561 | SHLIB_VERSION="" else SHLIB_VERSION=".$SHLIB_VERSION" fi case $system in # TEA specific: windows) | < < < < < < < < < < < < < < < < < < < < < < < | 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 | 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 |
︙ | ︙ | |||
6616 6617 6618 6619 6620 6621 6622 | ;; *) ;; esac if test "$do64bit" != "no" ; then | < | < | | | | 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 | ;; *) ;; 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 |
︙ | ︙ |