home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / tcl / tcl+tk+t / tclx7.3bl / tclx7 / tclX7.3b / tools / libconvert.tcl < prev    next >
Encoding:
Text File  |  1994-07-16  |  1.1 KB  |  30 lines

  1. #
  2. # libconvert.tcl --
  3. #
  4. #  Interface to the convert_lib that doesn't go through the auto-load
  5. # mechanism.  This helps if something is broken with auto-load so the
  6. # build at least completes.
  7. #------------------------------------------------------------------------------
  8. # Copyright 1992-1994 Karl Lehenbauer and Mark Diekhans.
  9. #
  10. # Permission to use, copy, modify, and distribute this software and its
  11. # documentation for any purpose and without fee is hereby granted, provided
  12. # that the above copyright notice appear in all copies.  Karl Lehenbauer and
  13. # Mark Diekhans make no representations about the suitability of this
  14. # software for any purpose.  It is provided "as is" without express or
  15. # implied warranty.
  16. #------------------------------------------------------------------------------
  17. # $Id: libconvert.tcl,v 4.0 1994/07/16 05:29:21 markd Rel $
  18. #------------------------------------------------------------------------------
  19. #
  20.  
  21. if ![info exists env(TCL_LIBRARY)] {
  22.     puts stderr "This script is to only be used during the build run by"
  23.     puts stderr "the `runtcl' script."
  24.     exit 1
  25. }
  26.  
  27. source $env(TCL_LIBRARY)/tcl.tlib
  28.  
  29. eval convert_lib $argv
  30.