TDBC

Timeline
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

49 check-ins occurring around 84dffcb5f233eedb.

2021-02-11
10:53
Update to autoconf-2.70. Update win/rules.vc. Add github actions build on Linux check-in: f1b6c00e00 user: jan.nijtmans tags: trunk, main
2020-12-23
09:03
Update rules.vc to latest version check-in: 888b9bddb5 user: jan.nijtmans tags: trunk, main, tdbc-1-1-2
2020-10-19
08:59
Update "rules.vc" to latest version check-in: be24f0ca7e user: jan.nijtmans tags: trunk, main
08:49
New "main" branch, with propagating tag "trunk" check-in: bc32771d01 user: jan.nijtmans tags: trunk, main
2020-07-09
15:01
Update to latest TEA (for TCL_DBGX removal) Closed-Leaf check-in: 4e6b72e13b user: jan.nijtmans tags: trunk
2020-02-12
12:37
Version 1.1.1 -> 1.1.2 check-in: 3afaad492c user: jan.nijtmans tags: trunk
12:37
Make everything compile warning-free with -Wall -Werror check-in: a32258454c user: jan.nijtmans tags: trunk
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
2019-10-03
15:04
Update version number to 1.1.1 for release. Complete Tcl 9.0 compatibility (by merging "novem-support" branch, which was already almost done) check-in: 19c8f6675a user: jan.nijtmans tags: trunk
2019-09-29
13:55
Update latest rules.vc check-in: f620d57ff5 user: jan.nijtmans tags: trunk
2019-09-19
19:20
Make tdbc work in combination with trunk (Tcl 9.0) check-in: 396b663a38 user: jan.nijtmans tags: trunk
2019-08-30
12:58
Make tdbc run when it's compiled with a C++ compiler. Also remove end-of-line spacings. check-in: 1fe4cd73a5 user: jan.nijtmans tags: trunk
2019-08-29
11:02
Re-generate configure script with latest TEA check-in: 812b3840d8 user: jan.nijtmans tags: trunk
10:59
Updated to latest Tcl nmake files. Bug fix [d6c4db25560b1a8c3a26f9369e57cf00327cb9b4]. check-in: fd662fcdd2 user: apnadkarni tags: trunk
2019-02-10
16:57
Re-generate configure script with latest TEA check-in: 2a9a688c5b user: jan.nijtmans tags: trunk
2018-11-01
16:02
TEA update check-in: f8d10aed99 user: dgp tags: trunk, tdbc-1-1-0
2018-10-16
15:29
Bump to version 1.1.0 for release. Want all tdbc* packages in sync, and there are some incompatibilities too in the build reform. check-in: 0230fc1890 user: dgp tags: trunk
2018-07-01
05:12
Update to latest TEA. check-in: c626278762 user: stu tags: trunk
2018-01-05
05:52
Merge stu-pkgIndex2. Implements a solution for when the shared object and the pkgIndex.tcl reside in different dirs during build/test. Fixes [625f0ee464]. check-in: 2386d26cfb user: stu tags: trunk
05:38
Merge trunk. Closed-Leaf check-in: 8d7e50c2f8 user: stu tags: stu-pkgIndex2
2018-01-04
08:39
Use INSTALL_* and new DIST_INSTALL_* macros to make dist. Align with latest TEA. check-in: 8886c1d546 user: stu tags: trunk
2017-12-22
13:34
Convert all win/*.vc files to crlf line-ending check-in: 70c2c13363 user: jan.nijtmans tags: trunk
2017-12-21
06:28
Add rules-ext.vc and targets.vc to distribution. check-in: 84dffcb5f2 user: apnadkarni tags: trunk, tdbc-1-0-6
2017-12-17
16:13
Another way:

Have pkgIndex.tcl make use of TDBC_LIBRARY.

This is better than mangling the pkgIndex.tcl on install. check-in: daa7ace8b7 user: stu tags: stu-pkgIndex2

2017-12-16
23:03
When testing (against) tdbc in the build dir, tdbc.tcl is presumed found in $srcdir/library, not in the same dir as the built shared object.

When testing against an installed tdbc, tdbc.tcl is presumed found in the same dir as the shared object.

This makes the pkgIndex.tcl in the build dir unusable for testing. Makefile targets affected: test, shell, gdb, valgrind, etc.

This can be a problem for other extensions as well.

One solution has been to have a [package ifneeded script] generated and used by the Makefile. This is a bit messy and is needed for all affected targets. Extensions building against tdbc would also have to act accordingly, which can be argued is not their responsibility.

This solution uses a pkgIndex.tcl that looks for tdbc.tcl in $srcdir/library. The $srcdir/library path is stripped-out when pkgIndex.tcl is installed. With this in place, [package require] simply works. It is, admittedly, a bit ugly but I think it's the better than:

- Use two pkgIndex.tcl files: one to use when testing and one to install. - The original method: copy file(s) from the library dir into the build dir and remember to clean them up.

The implementation on this branch also removes the extra copying and cleaning-up of tdbc.tcl, which is no longer necessary. This has been done in this branch for tdbc.

The tdbc-* extensions building against tdbc would simply have to add $(TDBC_BIN_DIR) to the existing $(TCLLIBPATH) in their Makefiles to work with this new scheme.

This has been done in this branch for tdbc-*.

The remaining tdbc-* Makefile targets (shell, gdb, valgrind, etc.) remain broken but can be fixed as was done with tdbc. Closed-Leaf check-in: c5f7bcffcb user: stu tags: stu-pkgIndex

01:14
Move tdbc.tcl to its own target. Add tdbc.tcl to BINARIES to ensure it gets copied once during build and removed with "make clean". Fixes [625f0ee464]. check-in: 239b87734b user: stu tags: trunk
00:24
Add tdbcConfig.sh to CONFIG_CLEAN_FILES so that "make distclean" will remove it. check-in: 72ca85415c user: stu tags: trunk
2017-12-13
11:12
Merge vc-reform: new nmake build system check-in: 1e8eda7f51 user: apnadkarni tags: trunk
10:46
Use nmakehlp -L to locate TDBC directories Closed-Leaf check-in: bf96767d46 user: apnadkarni tags: vc-reform
2017-12-11
16:29
Updated copy of Tcl nmake support files and make use of default stubs and header installs check-in: 501f635181 user: apnadkarni tags: vc-reform
09:09
Do not need Tcl sources. Also fix rc file macro name. check-in: 3ee1af86cf user: apnadkarni tags: vc-reform
2017-12-10
13:06
Do not need the cwarn macro check-in: 2fee183e61 user: apnadkarni tags: vc-reform
12:47
Get rid of custom test and shell targets as built-in ones suffice check-in: 1e733cc160 user: apnadkarni tags: vc-reform
11:13
Turn off Unicode to match older nmake build check-in: 79e65ab0a3 user: apnadkarni tags: vc-reform
08:23
Intermediate check-in for new nmake system (non-functional!) check-in: 8fcb66a50a user: apnadkarni tags: vc-reform
04:52
Create new branch named "vc-reform" check-in: 6f6e19a9ac user: apnadkarni tags: vc-reform
2017-12-08
13:38
Bump to 1.0.6 check-in: 71b1f2c185 user: dgp tags: trunk
2017-12-06
18:39
Ensure consistent results. From kbk. check-in: ccbfd35b36 user: stu tags: trunk
2017-05-26
18:33
rm -f not needed before ${INSTALL_*}. A ghost of past installing. check-in: 43b96d33bb user: stu tags: trunk, tdbc-1-0-5
2017-05-25
16:10
obect -> object. Closes [cf073c38f2]. check-in: da98ff490b user: stu tags: trunk
2017-05-04
18:53
[5f95cdd83c] Avoid trouble when directory does not exist (yet). check-in: ab533463bb user: dgp tags: trunk
17:25
Improper value for tdbc_BUILD_LIB_SPEC check-in: ab6983f505 user: dgp tags: trunk
17:04
TEA_INIT required bump to TEA 3.10 as well. check-in: 5defe85817 user: dgp tags: trunk
2017-04-18
17:06
Bump to 1.0.5 (TEA changes only). check-in: ae6dd8f833 user: dgp tags: trunk
2016-02-18
20:37
typo check-in: 4dec62a1ee user: dgp tags: trunk, tdbc-1-0-4, rc1
2016-01-28
19:28
Bump to 1.0.4 check-in: 4921326d77 user: dgp tags: trunk
2015-10-13
13:11
Revert [7f0253a5c5aa2bdc]: It causes test-failures in the other tdbc* packages. check-in: 255ee301f9 user: jan.nijtmans tags: trunk