pkgIndex.tcl 541 B

1234567891011121314
  1. # Index file to load the TDBC MySQL package.
  2. if {![package vsatisfies [package provide Tcl] 8.6-]} {
  3. return
  4. }
  5. if {[package vsatisfies [package provide Tcl] 9.0-]} {
  6. package ifneeded tdbc::mysql 1.1.3 \
  7. "[list source [file join $dir tdbcmysql.tcl]]\;\
  8. [list load [file join $dir libtcl9tdbcmysql1.1.3.so] [string totitle tdbcmysql]]"
  9. } else {
  10. package ifneeded tdbc::mysql 1.1.3 \
  11. "[list source [file join $dir tdbcmysql.tcl]]\;\
  12. [list load [file join $dir libtdbcmysql1.1.3.so] [string totitle tdbcmysql]]"
  13. }