tclConfig.sh.in
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:6k
源码类别:

通讯编程

开发平台:

Visual C++

  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.8 2001/11/08 03:07:22 mdejong Exp $
  12. TCL_DLL_FILE="@TCL_DLL_FILE@"
  13. # Tcl's version number.
  14. TCL_VERSION='@TCL_VERSION@'
  15. TCL_MAJOR_VERSION='@TCL_MAJOR_VERSION@'
  16. TCL_MINOR_VERSION='@TCL_MINOR_VERSION@'
  17. TCL_PATCH_LEVEL='@TCL_PATCH_LEVEL@'
  18. # C compiler to use for compilation.
  19. TCL_CC='@CC@'
  20. # -D flags for use with the C compiler.
  21. TCL_DEFS='@DEFS@'
  22. # If TCL was built with debugging symbols, generated libraries contain
  23. # this string at the end of the library name (before the extension).
  24. TCL_DBGX=@TCL_DBGX@
  25. # Default flags used in an optimized and debuggable build, respectively.
  26. TCL_CFLAGS_DEBUG='@CFLAGS_DEBUG@'
  27. TCL_CFLAGS_OPTIMIZE='@CFLAGS_OPTIMIZE@'
  28. # Default linker flags used in an optimized and debuggable build, respectively.
  29. TCL_LDFLAGS_DEBUG='@LDFLAGS_DEBUG@'
  30. TCL_LDFLAGS_OPTIMIZE='@LDFLAGS_OPTIMIZE@'
  31. # Flag, 1: we built a shared lib, 0 we didn't
  32. TCL_SHARED_BUILD=@TCL_SHARED_BUILD@
  33. # The name of the Tcl library (may be either a .a file or a shared library):
  34. TCL_LIB_FILE='@TCL_LIB_FILE@'
  35. # Flag to indicate whether shared libraries need export files.
  36. TCL_NEEDS_EXP_FILE=@TCL_NEEDS_EXP_FILE@
  37. # String that can be evaluated to generate the part of the export file
  38. # name that comes after the "libxxx" (includes version number, if any,
  39. # extension, and anything else needed).  May depend on the variables
  40. # VERSION.  On most UNIX systems this is ${VERSION}.exp.
  41. TCL_EXPORT_FILE_SUFFIX='@CFG_TCL_EXPORT_FILE_SUFFIX@'
  42. # Additional libraries to use when linking Tcl.
  43. TCL_LIBS='@LIBS@'
  44. # Top-level directory in which Tcl's platform-independent files are
  45. # installed.
  46. TCL_PREFIX='@prefix@'
  47. # Top-level directory in which Tcl's platform-specific files (e.g.
  48. # executables) are installed.
  49. TCL_EXEC_PREFIX='@exec_prefix@'
  50. # Flags to pass to cc when compiling the components of a shared library:
  51. TCL_SHLIB_CFLAGS='@SHLIB_CFLAGS@'
  52. # Flags to pass to cc to get warning messages
  53. TCL_CFLAGS_WARNING='@CFLAGS_WARNING@'
  54. # Extra flags to pass to cc:
  55. TCL_EXTRA_CFLAGS='@EXTRA_CFLAGS@'
  56. # Base command to use for combining object files into a shared library:
  57. TCL_SHLIB_LD='@SHLIB_LD@'
  58. # Base command to use for combining object files into a static library:
  59. TCL_STLIB_LD='@STLIB_LD@'
  60. # Either '$LIBS' (if dependent libraries should be included when linking
  61. # shared libraries) or an empty string.  See Tcl's configure.in for more
  62. # explanation.
  63. TCL_SHLIB_LD_LIBS='@SHLIB_LD_LIBS@'
  64. # Suffix to use for the name of a shared library.
  65. TCL_SHLIB_SUFFIX='@SHLIB_SUFFIX@'
  66. # Library file(s) to include in tclsh and other base applications
  67. # in order to provide facilities needed by DLOBJ above.
  68. TCL_DL_LIBS='@DL_LIBS@'
  69. # Flags to pass to the compiler when linking object files into
  70. # an executable tclsh or tcltest binary.
  71. TCL_LD_FLAGS='@LDFLAGS@'
  72. # Flags to pass to ld, such as "-R /usr/local/tcl/lib", that tell the
  73. # run-time dynamic linker where to look for shared libraries such as
  74. # libtcl.so.  Used when linking applications.  Only works if there
  75. # is a variable "LIB_RUNTIME_DIR" defined in the Makefile.
  76. TCL_LD_SEARCH_FLAGS='@TCL_LD_SEARCH_FLAGS@'
  77. # Additional object files linked with Tcl to provide compatibility
  78. # with standard facilities from ANSI C or POSIX.
  79. TCL_COMPAT_OBJS='@LIBOBJS@'
  80. # Name of the ranlib program to use.
  81. TCL_RANLIB='@RANLIB@'
  82. # -l flag to pass to the linker to pick up the Tcl library
  83. TCL_LIB_FLAG='@TCL_LIB_FLAG@'
  84. # String to pass to linker to pick up the Tcl library from its
  85. # build directory.
  86. TCL_BUILD_LIB_SPEC='@TCL_BUILD_LIB_SPEC@'
  87. # String to pass to linker to pick up the Tcl library from its
  88. # installed directory.
  89. TCL_LIB_SPEC='@TCL_LIB_SPEC@'
  90. # String to pass to the compiler so that an extension can
  91. # find installed Tcl headers.
  92. TCL_INCLUDE_SPEC='@TCL_INCLUDE_SPEC@'
  93. # Indicates whether a version numbers should be used in -l switches
  94. # ("ok" means it's safe to use switches like -ltcl7.5;  "nodots" means
  95. # use switches like -ltcl75).  SunOS and FreeBSD require "nodots", for
  96. # example.
  97. TCL_LIB_VERSIONS_OK='@TCL_LIB_VERSIONS_OK@'
  98. # String that can be evaluated to generate the part of a shared library
  99. # name that comes after the "libxxx" (includes version number, if any,
  100. # extension, and anything else needed).  May depend on the variables
  101. # VERSION and SHLIB_SUFFIX.  On most UNIX systems this is
  102. # ${VERSION}${SHLIB_SUFFIX}.
  103. TCL_SHARED_LIB_SUFFIX='@CFG_TCL_SHARED_LIB_SUFFIX@'
  104. # String that can be evaluated to generate the part of an unshared library
  105. # name that comes after the "libxxx" (includes version number, if any,
  106. # extension, and anything else needed).  May depend on the variable
  107. # VERSION.  On most UNIX systems this is ${VERSION}.a.
  108. TCL_UNSHARED_LIB_SUFFIX='@CFG_TCL_UNSHARED_LIB_SUFFIX@'
  109. # Location of the top-level source directory from which Tcl was built.
  110. # This is the directory that contains a README file as well as
  111. # subdirectories such as generic, unix, etc.  If Tcl was compiled in a
  112. # different place than the directory containing the source files, this
  113. # points to the location of the sources, not the location where Tcl was
  114. # compiled.
  115. TCL_SRC_DIR='@TCL_SRC_DIR@'
  116. # List of standard directories in which to look for packages during
  117. # "package require" commands.  Contains the "prefix" directory plus also
  118. # the "exec_prefix" directory, if it is different.
  119. TCL_PACKAGE_PATH='@TCL_PACKAGE_PATH@'
  120. # Tcl supports stub.
  121. TCL_SUPPORTS_STUBS=1
  122. # The name of the Tcl stub library (.a):
  123. TCL_STUB_LIB_FILE='@TCL_STUB_LIB_FILE@'
  124. # -l flag to pass to the linker to pick up the Tcl stub library
  125. TCL_STUB_LIB_FLAG='@TCL_STUB_LIB_FLAG@'
  126. # String to pass to linker to pick up the Tcl stub library from its
  127. # build directory.
  128. TCL_BUILD_STUB_LIB_SPEC='@TCL_BUILD_STUB_LIB_SPEC@'
  129. # String to pass to linker to pick up the Tcl stub library from its
  130. # installed directory.
  131. TCL_STUB_LIB_SPEC='@TCL_STUB_LIB_SPEC@'
  132. # Path to the Tcl stub library in the build directory.
  133. TCL_BUILD_STUB_LIB_PATH='@TCL_BUILD_STUB_LIB_PATH@'
  134. # Path to the Tcl stub library in the install directory.
  135. TCL_STUB_LIB_PATH='@TCL_STUB_LIB_PATH@'
  136. # Flag, 1: we built Tcl with threads enables, 0 we didn't
  137. TCL_THREADS=@TCL_THREADS@