Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | fixed osx path name for sqlite |
---|---|
Timelines: | family | ancestors | trunk |
Files: | files | file ages | folders |
SHA1: |
dd5551ec8df9d7578979517a8ac767b5 |
User & Date: | rmelton 2015-02-15 21:44:11.604 |
Context
2015-02-15
| ||
21:44 | fixed osx path name for sqlite Leaf check-in: dd5551ec8d user: rmelton tags: trunk | |
21:43 | updayed the osx canvas3d library check-in: f9b411f66f user: rmelton tags: trunk | |
Changes
Changes to kits/sqlite3/pkgIndex.tcl.
︙ | ︙ | |||
25 26 27 28 29 30 31 | puts stderr "loading library [file join {@} libsqlite3.7.9.so] Sqlite3" load [file join {@} libsqlite3.7.9.so] Sqlite3 } Win* { load [file join {@} sqlite379.dll] Sqlite3 } Darwin { | | | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | puts stderr "loading library [file join {@} libsqlite3.7.9.so] Sqlite3" load [file join {@} libsqlite3.7.9.so] Sqlite3 } Win* { load [file join {@} sqlite379.dll] Sqlite3 } Darwin { load [file join {@} libsqlite3.7.9.dylib] Sqlite3 } default { error "ERROR: I do not have an sqlite3 library for the '$::tcl_platform(os)' platform" } } }] |
︙ | ︙ |