Frusta

Check-in [dd5551ec8d]
Login

Check-in [dd5551ec8d]

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: dd5551ec8df9d7578979517a8ac767b57a733262
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
Unified Diff Ignore Whitespace Patch
Changes to kits/sqlite3/pkgIndex.tcl.
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.dyliblib] Sqlite3
    }
    default {
      error "ERROR: I do not have an sqlite3 library for the '$::tcl_platform(os)' platform"
    }
  }
}]








|







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"
    }
  }
}]