home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / TCL / BLT / _BLT.TAR / usr / lib / blt / applications / extloader / extensions.tcl < prev    next >
Encoding:
Text File  |  1994-04-22  |  1.2 KB  |  52 lines

  1. # -------------------------------------------------------------------------
  2. # Edit this file to reflect to locations of the shared libraries for
  3. # the extensions.  The contents of the variable "tcl_extloadpath"
  4. # tell the extension command where to look for the libraries.
  5. #
  6. set tcl_extloadpath { 
  7.     /usr/local/blt/lib
  8.     /usr/local/lib
  9.     /opt/cellar/tcl/tcl7.3/lib
  10.     /opt/cellar/tk/tk3.6/lib
  11.     /opt/cellar/deli/lib
  12.     /opt/cellar/deli/blt/lib
  13.     /opt/cellar/tcl/tcl7.3/lib
  14.     /opt/cellar/tk/tk3.6/lib
  15. }
  16.  
  17. # -------------------------------------------------------------------------
  18. # The format of the an entry in the tcl_extensions array is 
  19. #   initRoutine shlib ?shlib...?
  20. #
  21.  
  22. #
  23. # [incr tcl] library
  24. #
  25.  
  26. set tcl_extensions(itcl) { Itcl_Init libitcl.so.1.3 }
  27.  
  28. if ![info exists tk_library] {
  29.     return
  30. }
  31.  
  32. # -------------------------------------------------------------------------
  33. #
  34. #     Put extensions that require Tk after this point
  35. #
  36. # -------------------------------------------------------------------------
  37.  
  38. #
  39. # BLT library 
  40. #
  41.  
  42. set tcl_extensions(blt) { Blt_Init libBLT.so.1.7 }
  43.  
  44. #
  45. # VUW widget set (bargraph, piechart, etc.)
  46. #
  47.  
  48. #set tcl_extensions(vuw) { Vuw_Init libVUW.so.1.0 }
  49.