Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Minimal fix so that `make test` will work again. A better reform effort will eliminate pkgIndex.tcl from this package completely. We install as TM only. pkgIndex.tcl can only be used for build testing, but it is not needed for that either, and it is broken to boot. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
b97df4e05e22d717fefde5b94538445d |
User & Date: | dgp 2018-10-16 14:06:46.379 |
Context
2018-10-16
| ||
15:35 | Bump to version 1.1.0 for release. check-in: d8cb645597 user: dgp tags: trunk, tdbcsqlite3-1-1-0 | |
14:06 | Minimal fix so that `make test` will work again. A better reform effort will eliminate pkgIndex.tcl from this package completely. We install as TM only. pkgIndex.tcl can only be used for build testing, but it is not needed for that either, and it is broken to boot. check-in: b97df4e05e user: dgp tags: trunk | |
2018-07-01
| ||
14:15 | Update to latest TEA. check-in: 0ddd2abc82 user: stu tags: trunk | |
Changes
Changes to Makefile.in.
︙ | ︙ | |||
248 249 250 251 252 253 254 | @list='$(srcdir)/doc/*.n'; for i in $$list; do \ echo "Installing $$i"; \ $(INSTALL_DATA) $$i $(DESTDIR)$(mandir)/mann ; \ done test: binaries libraries $(TCLSH) `@CYGPATH@ $(srcdir)/tests/all.tcl` $(TESTFLAGS) \ | | | | | | 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 | @list='$(srcdir)/doc/*.n'; for i in $$list; do \ echo "Installing $$i"; \ $(INSTALL_DATA) $$i $(DESTDIR)$(mandir)/mann ; \ done test: binaries libraries $(TCLSH) `@CYGPATH@ $(srcdir)/tests/all.tcl` $(TESTFLAGS) \ -load "package ifneeded tdbc::sqlite3 $(PACKAGE_VERSION) \ [list source `@CYGPATH@ $(srcdir)/library/tdbcsqlite3.tcl`]" shell: binaries libraries @$(TCLSH) $(SCRIPT) gdb: $(TCLSH_ENV) $(PKG_ENV) $(GDB) $(TCLSH_PROG) $(SCRIPT) gdb-test: binaries libraries $(TCLSH_ENV) $(PKG_ENV) $(GDB) \ --args $(TCLSH_PROG) `@CYGPATH@ $(srcdir)/tests/all.tcl` \ $(TESTFLAGS) -singleproc 1 \ -load "package ifneeded tdbc::sqlite3 $(PACKAGE_VERSION) \ [list source `@CYGPATH@ $(srcdir)/library/tdbcsqlite3.tcl`]" valgrind: binaries libraries $(TCLSH_ENV) $(PKG_ENV) $(VALGRIND) $(VALGRINDARGS) $(TCLSH_PROG) \ `@CYGPATH@ $(srcdir)/tests/all.tcl` $(TESTFLAGS) valgrindshell: binaries libraries $(TCLSH_ENV) $(PKG_ENV) $(VALGRIND) $(VALGRINDARGS) $(TCLSH_PROG) $(SCRIPT) |
︙ | ︙ |