Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Bump to tdbc 1.0.3; TEA/autoconf update. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk | tdbc-1-0-3 |
Files: | files | file ages | folders |
SHA1: |
b7669d2c1cc35ecd4fbbfc7e3063327d |
User & Date: | dgp 2015-01-23 18:50:34.179 |
Context
2015-04-21
| ||
15:08 | Fix bug [2ca1f6da0dca4a33d57720a2eb9bb0992415819e|2ca1f6da0d]: Windows compilation in pkgs fails when using msys/configure. Rename configure.in -> configure.ac check-in: 86a892a16a user: jan.nijtmans tags: trunk | |
2015-04-20
| ||
11:52 | proposed fix for[2ca1f6da0dca4a33d57720a2eb9bb0992415819e|2ca1f6da0d]: Windows compilation in pkgs fails when using msys/configure Closed-Leaf check-in: 80c5063e0c user: jan.nijtmans tags: bug-2ca1f6da0d | |
2015-01-23
| ||
18:50 | Bump to tdbc 1.0.3; TEA/autoconf update. check-in: b7669d2c1c user: dgp tags: trunk, tdbc-1-0-3 | |
2014-10-23
| ||
20:01 | Bump to tdbc 1.0.2; TEA update. check-in: c02f0aa3e3 user: dgp tags: trunk, tdbc-1-0-2 | |
Changes
Changes to ChangeLog.
1 2 3 4 5 6 7 | 2014-10-23 Don Porter <[email protected]> * generic/tdbc.h: Advance version number to 1.0.2 * configure.in: * README: * configure: autoconf-2.59 | > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 2015-01-23 Don Porter <[email protected]> * generic/tdbc.h: Advance version number to 1.0.3 * configure.in: * README: * configure: autoconf-2.69 2014-10-23 Don Porter <[email protected]> * generic/tdbc.h: Advance version number to 1.0.2 * configure.in: * README: * configure: autoconf-2.59 |
︙ | ︙ |
Changes to README.
1 2 | README: tdbc | | | 1 2 3 4 5 6 7 8 9 10 | README: tdbc This is the 1.0.3 source distribution of Tcl Database Connectivity (TDBC). TDBC is available from a Fossil version control repository at http://tdbc.tcl.tk/ . RCS: @(#) $Id$ 1. Introduction |
︙ | ︙ |
Changes to configure.
more than 10,000 changes
Changes to configure.in.
︙ | ︙ | |||
9 10 11 12 13 14 15 | # Set your package name and version numbers here. # # This initializes the environment with PACKAGE_NAME and PACKAGE_VERSION # set as provided. These will also be added as -D defs in your Makefile # so you can encode the package version directly into the source files. #----------------------------------------------------------------------- | | | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # Set your package name and version numbers here. # # This initializes the environment with PACKAGE_NAME and PACKAGE_VERSION # set as provided. These will also be added as -D defs in your Makefile # so you can encode the package version directly into the source files. #----------------------------------------------------------------------- AC_INIT([tdbc], [1.0.3]) #-------------------------------------------------------------------- # Call TEA_INIT as the first TEA_ macro to set up initial vars. # This will define a ${TEA_PLATFORM} variable == "unix" or "windows" # as well as PKG_LIB_FILE and PKG_STUB_LIB_FILE. #-------------------------------------------------------------------- |
︙ | ︙ |
Changes to generic/tdbc.h.
︙ | ︙ | |||
55 56 57 58 59 60 61 | #endif /* * TDBC_VERSION and TDBC_PATCHLEVEL here must match the ones that * appear near the top of configure.in. */ | | | | 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | #endif /* * TDBC_VERSION and TDBC_PATCHLEVEL here must match the ones that * appear near the top of configure.in. */ #define TDBC_VERSION "1.0.3" #define TDBC_PATCHLEVEL "1.0.3" /* * Include the Stubs declarations for the public API, generated from * tdbc.decls. */ #include "tdbcDecls.h" |
︙ | ︙ |