home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 May / PCWorld_2002-05_cd.bin / Software / TemaCD / activetcltk / ActiveTcl8.3.4.1-8.win32-ix86.exe / ActiveTcl8.3.4.1-win32-ix86 / lib / tclConfig.sh < prev    next >
Encoding:
Text File  |  2001-10-22  |  6.2 KB  |  175 lines

  1. # tclConfig.sh --
  2. # This shell script (for sh) is generated automatically by Tcl's
  3. # configure script.  It will create shell variables for most of
  4. # the configuration options discovered by the configure script.
  5. # This script is intended to be included by the configure scripts
  6. # for Tcl extensions so that they don't have to figure this all
  7. # out for themselves.
  8. #
  9. # The information in this file is specific to a single platform.
  10. #
  11. # RCS: @(#) $Id: tclConfig.sh.in,v 1.3.10.2 2000/07/28 07:58:28 mo Exp $
  12.  
  13. TCL_DLL_FILE="tcl83.dll"
  14.  
  15. # Tcl's version number.
  16. TCL_VERSION='8.3'
  17. TCL_MAJOR_VERSION='8'
  18. TCL_MINOR_VERSION='3'
  19. TCL_PATCH_LEVEL='.4'
  20.  
  21. # C compiler to use for compilation.
  22. TCL_CC='cl'
  23.  
  24. # -D flags for use with the C compiler.
  25. TCL_DEFS=' '
  26.  
  27. # If TCL was built with debugging symbols, generated libraries contain
  28. # this string at the end of the library name (before the extension).
  29. TCL_DBGX=
  30.  
  31. # Default flags used in an optimized and debuggable build, respectively.
  32. TCL_CFLAGS_DEBUG='-nologo -Z7 -Od -WX -MDd'
  33. TCL_CFLAGS_OPTIMIZE='-nologo -Oti -Gs -GD -MD'
  34.  
  35. # Default linker flags used in an optimized and debuggable build, respectively.
  36. TCL_LDFLAGS_DEBUG='-debug:full -debugtype:cv'
  37. TCL_LDFLAGS_OPTIMIZE='-release'
  38.  
  39. # Flag, 1: we built a shared lib, 0 we didn't
  40. TCL_SHARED_BUILD=1
  41.  
  42. # The name of the Tcl library (may be either a .a file or a shared library):
  43. TCL_LIB_FILE='tcl83.lib'
  44.  
  45. # Flag to indicate whether shared libraries need export files.
  46. TCL_NEEDS_EXP_FILE=
  47.  
  48. # String that can be evaluated to generate the part of the export file
  49. # name that comes after the "libxxx" (includes version number, if any,
  50. # extension, and anything else needed).  May depend on the variables
  51. # VERSION.  On most UNIX systems this is ${VERSION}.exp.
  52. TCL_EXPORT_FILE_SUFFIX='${NODOT_VERSION}${DBGX}.lib'
  53.  
  54. # Additional libraries to use when linking Tcl.
  55. TCL_LIBS='user32.lib advapi32.lib'
  56.  
  57. # Top-level directory in which Tcl's platform-independent files are
  58. # installed.
  59. TCL_PREFIX='k:/activetcl/8341_nb/src/out'
  60.  
  61. # Top-level directory in which Tcl's platform-specific files (e.g.
  62. # executables) are installed.
  63. TCL_EXEC_PREFIX='k:/activetcl/8341_nb/src/out/win32-ix86'
  64.  
  65. # Flags to pass to cc when compiling the components of a shared library:
  66. TCL_SHLIB_CFLAGS=''
  67.  
  68. # Flags to pass to cc to get warning messages
  69. TCL_CFLAGS_WARNING='-W3'
  70.  
  71. # Extra flags to pass to cc:
  72. TCL_EXTRA_CFLAGS='-YX'
  73.  
  74. # Base command to use for combining object files into a shared library:
  75. TCL_SHLIB_LD='link -link50compat -dll -nologo -incremental:no'
  76.  
  77. # Base command to use for combining object files into a static library:
  78. TCL_STLIB_LD='lib -nologo'
  79.  
  80. # Either '$LIBS' (if dependent libraries should be included when linking
  81. # shared libraries) or an empty string.  See Tcl's configure.in for more
  82. # explanation.
  83. TCL_SHLIB_LD_LIBS='user32.lib advapi32.lib'
  84.  
  85. # Suffix to use for the name of a shared library.
  86. TCL_SHLIB_SUFFIX=''
  87.  
  88. # Library file(s) to include in tclsh and other base applications
  89. # in order to provide facilities needed by DLOBJ above.
  90. TCL_DL_LIBS=''
  91.  
  92. # Flags to pass to the compiler when linking object files into
  93. # an executable tclsh or tcltest binary.
  94. TCL_LD_FLAGS=''
  95.  
  96. # Flags to pass to ld, such as "-R /usr/local/tcl/lib", that tell the
  97. # run-time dynamic linker where to look for shared libraries such as
  98. # libtcl.so.  Used when linking applications.  Only works if there
  99. # is a variable "LIB_RUNTIME_DIR" defined in the Makefile.
  100. TCL_LD_SEARCH_FLAGS=''
  101.  
  102. # Additional object files linked with Tcl to provide compatibility
  103. # with standard facilities from ANSI C or POSIX.
  104. TCL_COMPAT_OBJS=''
  105.  
  106. # Name of the ranlib program to use.
  107. TCL_RANLIB=''
  108.  
  109. # -l flag to pass to the linker to pick up the Tcl library
  110. TCL_LIB_FLAG=''
  111.  
  112. # String to pass to linker to pick up the Tcl library from its
  113. # build directory.
  114. TCL_BUILD_LIB_SPEC=''
  115.  
  116. # String to pass to linker to pick up the Tcl library from its
  117. # installed directory.
  118. TCL_LIB_SPEC=''
  119.  
  120. # Indicates whether a version numbers should be used in -l switches
  121. # ("ok" means it's safe to use switches like -ltcl7.5;  "nodots" means
  122. # use switches like -ltcl75).  SunOS and FreeBSD require "nodots", for
  123. # example.
  124. TCL_LIB_VERSIONS_OK=''
  125.  
  126. # String that can be evaluated to generate the part of a shared library
  127. # name that comes after the "libxxx" (includes version number, if any,
  128. # extension, and anything else needed).  May depend on the variables
  129. # VERSION and SHLIB_SUFFIX.  On most UNIX systems this is
  130. # ${VERSION}${SHLIB_SUFFIX}.
  131. TCL_SHARED_LIB_SUFFIX='${NODOT_VERSION}${DBGX}.dll'
  132.  
  133. # String that can be evaluated to generate the part of an unshared library
  134. # name that comes after the "libxxx" (includes version number, if any,
  135. # extension, and anything else needed).  May depend on the variable
  136. # VERSION.  On most UNIX systems this is ${VERSION}.a.
  137. TCL_UNSHARED_LIB_SUFFIX='${NODOT_VERSION}${DBGX}.lib'
  138.  
  139. # Location of the top-level source directory from which Tcl was built.
  140. # This is the directory that contains a README file as well as
  141. # subdirectories such as generic, unix, etc.  If Tcl was compiled in a
  142. # different place than the directory containing the source files, this
  143. # points to the location of the sources, not the location where Tcl was
  144. # compiled.
  145. TCL_SRC_DIR='/cygdrive/k/activetcl/8341_nb/src/tcl8.3'
  146.  
  147. # List of standard directories in which to look for packages during
  148. # "package require" commands.  Contains the "prefix" directory plus also
  149. # the "exec_prefix" directory, if it is different.
  150. TCL_PACKAGE_PATH=''
  151.  
  152. # Tcl supports stub.
  153. TCL_SUPPORTS_STUBS=1
  154.  
  155. # The name of the Tcl stub library (.a):
  156. TCL_STUB_LIB_FILE='tclstub83.lib'
  157.  
  158. # -l flag to pass to the linker to pick up the Tcl stub library
  159. TCL_STUB_LIB_FLAG='-ltclstub83'
  160.  
  161. # String to pass to linker to pick up the Tcl stub library from its
  162. # build directory.
  163. TCL_BUILD_STUB_LIB_SPEC='-L/cygdrive/k/activetcl/8341_nb/src/tcl8.3/win/win32-ix86 -ltclstub83'
  164.  
  165. # String to pass to linker to pick up the Tcl stub library from its
  166. # installed directory.
  167. TCL_STUB_LIB_SPEC='-Lk:/activetcl/8341_nb/src/out/win32-ix86/lib -ltclstub83'
  168.  
  169. # Path to the Tcl stub library in the build directory.
  170. TCL_BUILD_STUB_LIB_PATH='/cygdrive/k/activetcl/8341_nb/src/tcl8.3/win/win32-ix86/tclstub83.lib'
  171.  
  172. # Path to the Tcl stub library in the install directory.
  173. TCL_STUB_LIB_PATH='k:/activetcl/8341_nb/src/out/win32-ix86/lib/tclstub83.lib'
  174.