Ignore:
Timestamp:
May 22, 2014, 1:18:03 PM (10 years ago)
Author:
demin
Message:

add Tktable and registry, update tcllib, sqlite and zlib

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kitgen/setupvfs.tcl

    r175 r195  
    4040  exit 1
    4141}
     42
     43set tcl_library ../tcl/library
     44source ../tcl/library/init.tcl ;# for tcl::CopyDirectory
     45
     46package require platform
     47
     48set platform [lindex [split [platform::generic] -] 0]
    4249
    4350load {} zlib
     
    6471                  csr0@ csr[package require csr]]
    6572
     73if {[string equal $platform win32]} {
     74  load {} registry
     75  lappend versmap registry1@ registry[package require registry]
     76}
     77
    6678if {$debugOpt} {
    6779  puts "Starting [info script]"
     
    7486}
    7587
    76 set tcl_library ../tcl/library
    77 source ../tcl/library/init.tcl ;# for tcl::CopyDirectory
    78 
    7988# Create package index files for the static extensions.
    80 set exts {swt csr usb g2lite XOTcl zlib}
     89set exts [list swt csr usb g2lite XOTcl zlib]
     90if {[string equal $platform win32]} {
     91  lappend exts registry
     92}
    8193foreach ext $exts {
    8294  load {} $ext
     
    89101set clifiles {
    90102  boot.tcl
    91   main.tcl
    92103  config.tcl
    93104  lib/tcl8@/auto.tcl
     
    115126  lib/csr0@/pkgIndex.tcl
    116127  lib/zlib1@/pkgIndex.tcl
    117   lib/tcllib1.14/pkgIndex.tcl
    118   lib/tcllib1.14/asn
    119   lib/tcllib1.14/base64
    120   lib/tcllib1.14/comm
    121   lib/tcllib1.14/cmdline
    122   lib/tcllib1.14/fileutil
    123   lib/tcllib1.14/ldap
    124   lib/tcllib1.14/log
    125   lib/tcllib1.14/math
    126   lib/tcllib1.14/snit
    127   lib/tcllib1.14/uri}
     128  lib/tcllib1.16/pkgIndex.tcl
     129  lib/tcllib1.16/asn
     130  lib/tcllib1.16/base64
     131  lib/tcllib1.16/comm
     132  lib/tcllib1.16/cmdline
     133  lib/tcllib1.16/csv
     134  lib/tcllib1.16/fileutil
     135  lib/tcllib1.16/ldap
     136  lib/tcllib1.16/log
     137  lib/tcllib1.16/math
     138  lib/tcllib1.16/snit
     139  lib/tcllib1.16/struct
     140  lib/tcllib1.16/uri
     141}
     142
     143if {[string equal $platform win32]} {
     144  lappend clifiles lib/registry1@/pkgIndex.tcl
     145}
    128146
    129147set guifiles {
     
    168186  lib/BLT2.4/bltCanvEps.pro
    169187  lib/BLT2.4/bltGraph.pro
     188  lib/Tktable2.10/pkgIndex.tcl
     189  lib/Tktable2.10/tkTable.tcl
    170190}
    171191
Note: See TracChangeset for help on using the changeset viewer.