Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Don't try to dist install nonexistent files. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
25210d9554d50ac0df589086bfb6a7e3 |
User & Date: | stu 2018-07-01 05:19:25.107 |
Context
2018-07-04
| ||
10:16 | Remove experimental lib loader. check-in: 51215942e0 user: stu tags: trunk | |
2018-07-01
| ||
05:19 | Don't try to dist install nonexistent files. check-in: 25210d9554 user: stu tags: trunk | |
2018-06-21
| ||
04:56 | Update to most of latest TEA. check-in: d39d482edb user: stu tags: trunk | |
Changes
Changes to Makefile.in.
︙ | ︙ | |||
358 359 360 361 362 363 364 | $(DIST_INSTALL_DATA) \ $(srcdir)/ChangeLog \ $(srcdir)/license.terms \ $(srcdir)/README \ $(srcdir)/pkgIndex.tcl.in \ $(DIST_DIR)/ | < < < < < < | 358 359 360 361 362 363 364 365 366 367 368 369 370 371 | $(DIST_INSTALL_DATA) \ $(srcdir)/ChangeLog \ $(srcdir)/license.terms \ $(srcdir)/README \ $(srcdir)/pkgIndex.tcl.in \ $(DIST_DIR)/ $(INSTALL_DATA_DIR) $(DIST_DIR)/doc $(DIST_INSTALL_DATA) $(srcdir)/doc/tdbc_odbc.n $(DIST_DIR)/doc/ $(INSTALL_DATA_DIR) $(DIST_DIR)/generic $(DIST_INSTALL_DATA) \ $(srcdir)/generic/fakesql.h $(srcdir)/generic/odbcStubDefs.txt \ $(srcdir)/generic/odbcStubInit.c $(srcdir)/generic/odbcStubs.h \ |
︙ | ︙ |
Changes to pkgIndex.tcl.in.
|
| | | 1 2 3 4 5 6 7 8 | # Index file to load the TDBC ODBC package. if {[catch {package require Tcl @TCL_VERSION_REQ@}]} { return } package ifneeded tdbc::odbc @PACKAGE_VERSION@ \ "[list source [file join $dir @[email protected]]]\;\ [list load [file join $dir @PKG_LIB_FILE@] @PACKAGE_NAME@]" |