os/persistentdata/persistentstorage/sqlite3api/TEST/TCL/tcldistribution/win/tclConfig.sh.in
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/sqlite3api/TEST/TCL/tcldistribution/win/tclConfig.sh.in Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,182 @@
1.4 +# tclConfig.sh --
1.5 +#
1.6 +# This shell script (for sh) is generated automatically by Tcl's
1.7 +# configure script. It will create shell variables for most of
1.8 +# the configuration options discovered by the configure script.
1.9 +# This script is intended to be included by the configure scripts
1.10 +# for Tcl extensions so that they don't have to figure this all
1.11 +# out for themselves.
1.12 +#
1.13 +# The information in this file is specific to a single platform.
1.14 +#
1.15 +# RCS: @(#) $Id: tclConfig.sh.in,v 1.8 2001/11/08 03:07:22 mdejong Exp $
1.16 +
1.17 +TCL_DLL_FILE="@TCL_DLL_FILE@"
1.18 +
1.19 +# Tcl's version number.
1.20 +TCL_VERSION='@TCL_VERSION@'
1.21 +TCL_MAJOR_VERSION='@TCL_MAJOR_VERSION@'
1.22 +TCL_MINOR_VERSION='@TCL_MINOR_VERSION@'
1.23 +TCL_PATCH_LEVEL='@TCL_PATCH_LEVEL@'
1.24 +
1.25 +# C compiler to use for compilation.
1.26 +TCL_CC='@CC@'
1.27 +
1.28 +# -D flags for use with the C compiler.
1.29 +TCL_DEFS='@DEFS@'
1.30 +
1.31 +# If TCL was built with debugging symbols, generated libraries contain
1.32 +# this string at the end of the library name (before the extension).
1.33 +TCL_DBGX=@TCL_DBGX@
1.34 +
1.35 +# Default flags used in an optimized and debuggable build, respectively.
1.36 +TCL_CFLAGS_DEBUG='@CFLAGS_DEBUG@'
1.37 +TCL_CFLAGS_OPTIMIZE='@CFLAGS_OPTIMIZE@'
1.38 +
1.39 +# Default linker flags used in an optimized and debuggable build, respectively.
1.40 +TCL_LDFLAGS_DEBUG='@LDFLAGS_DEBUG@'
1.41 +TCL_LDFLAGS_OPTIMIZE='@LDFLAGS_OPTIMIZE@'
1.42 +
1.43 +# Flag, 1: we built a shared lib, 0 we didn't
1.44 +TCL_SHARED_BUILD=@TCL_SHARED_BUILD@
1.45 +
1.46 +# The name of the Tcl library (may be either a .a file or a shared library):
1.47 +TCL_LIB_FILE='@TCL_LIB_FILE@'
1.48 +
1.49 +# Flag to indicate whether shared libraries need export files.
1.50 +TCL_NEEDS_EXP_FILE=@TCL_NEEDS_EXP_FILE@
1.51 +
1.52 +# String that can be evaluated to generate the part of the export file
1.53 +# name that comes after the "libxxx" (includes version number, if any,
1.54 +# extension, and anything else needed). May depend on the variables
1.55 +# VERSION. On most UNIX systems this is ${VERSION}.exp.
1.56 +TCL_EXPORT_FILE_SUFFIX='@CFG_TCL_EXPORT_FILE_SUFFIX@'
1.57 +
1.58 +# Additional libraries to use when linking Tcl.
1.59 +TCL_LIBS='@LIBS@'
1.60 +
1.61 +# Top-level directory in which Tcl's platform-independent files are
1.62 +# installed.
1.63 +TCL_PREFIX='@prefix@'
1.64 +
1.65 +# Top-level directory in which Tcl's platform-specific files (e.g.
1.66 +# executables) are installed.
1.67 +TCL_EXEC_PREFIX='@exec_prefix@'
1.68 +
1.69 +# Flags to pass to cc when compiling the components of a shared library:
1.70 +TCL_SHLIB_CFLAGS='@SHLIB_CFLAGS@'
1.71 +
1.72 +# Flags to pass to cc to get warning messages
1.73 +TCL_CFLAGS_WARNING='@CFLAGS_WARNING@'
1.74 +
1.75 +# Extra flags to pass to cc:
1.76 +TCL_EXTRA_CFLAGS='@EXTRA_CFLAGS@'
1.77 +
1.78 +# Base command to use for combining object files into a shared library:
1.79 +TCL_SHLIB_LD='@SHLIB_LD@'
1.80 +
1.81 +# Base command to use for combining object files into a static library:
1.82 +TCL_STLIB_LD='@STLIB_LD@'
1.83 +
1.84 +# Either '$LIBS' (if dependent libraries should be included when linking
1.85 +# shared libraries) or an empty string. See Tcl's configure.in for more
1.86 +# explanation.
1.87 +TCL_SHLIB_LD_LIBS='@SHLIB_LD_LIBS@'
1.88 +
1.89 +# Suffix to use for the name of a shared library.
1.90 +TCL_SHLIB_SUFFIX='@SHLIB_SUFFIX@'
1.91 +
1.92 +# Library file(s) to include in tclsh and other base applications
1.93 +# in order to provide facilities needed by DLOBJ above.
1.94 +TCL_DL_LIBS='@DL_LIBS@'
1.95 +
1.96 +# Flags to pass to the compiler when linking object files into
1.97 +# an executable tclsh or tcltest binary.
1.98 +TCL_LD_FLAGS='@LDFLAGS@'
1.99 +
1.100 +# Flags to pass to ld, such as "-R /usr/local/tcl/lib", that tell the
1.101 +# run-time dynamic linker where to look for shared libraries such as
1.102 +# libtcl.so. Used when linking applications. Only works if there
1.103 +# is a variable "LIB_RUNTIME_DIR" defined in the Makefile.
1.104 +TCL_LD_SEARCH_FLAGS='@TCL_LD_SEARCH_FLAGS@'
1.105 +
1.106 +# Additional object files linked with Tcl to provide compatibility
1.107 +# with standard facilities from ANSI C or POSIX.
1.108 +TCL_COMPAT_OBJS='@LIBOBJS@'
1.109 +
1.110 +# Name of the ranlib program to use.
1.111 +TCL_RANLIB='@RANLIB@'
1.112 +
1.113 +# -l flag to pass to the linker to pick up the Tcl library
1.114 +TCL_LIB_FLAG='@TCL_LIB_FLAG@'
1.115 +
1.116 +# String to pass to linker to pick up the Tcl library from its
1.117 +# build directory.
1.118 +TCL_BUILD_LIB_SPEC='@TCL_BUILD_LIB_SPEC@'
1.119 +
1.120 +# String to pass to linker to pick up the Tcl library from its
1.121 +# installed directory.
1.122 +TCL_LIB_SPEC='@TCL_LIB_SPEC@'
1.123 +
1.124 +# String to pass to the compiler so that an extension can
1.125 +# find installed Tcl headers.
1.126 +TCL_INCLUDE_SPEC='@TCL_INCLUDE_SPEC@'
1.127 +
1.128 +# Indicates whether a version numbers should be used in -l switches
1.129 +# ("ok" means it's safe to use switches like -ltcl7.5; "nodots" means
1.130 +# use switches like -ltcl75). SunOS and FreeBSD require "nodots", for
1.131 +# example.
1.132 +TCL_LIB_VERSIONS_OK='@TCL_LIB_VERSIONS_OK@'
1.133 +
1.134 +# String that can be evaluated to generate the part of a shared library
1.135 +# name that comes after the "libxxx" (includes version number, if any,
1.136 +# extension, and anything else needed). May depend on the variables
1.137 +# VERSION and SHLIB_SUFFIX. On most UNIX systems this is
1.138 +# ${VERSION}${SHLIB_SUFFIX}.
1.139 +TCL_SHARED_LIB_SUFFIX='@CFG_TCL_SHARED_LIB_SUFFIX@'
1.140 +
1.141 +# String that can be evaluated to generate the part of an unshared library
1.142 +# name that comes after the "libxxx" (includes version number, if any,
1.143 +# extension, and anything else needed). May depend on the variable
1.144 +# VERSION. On most UNIX systems this is ${VERSION}.a.
1.145 +TCL_UNSHARED_LIB_SUFFIX='@CFG_TCL_UNSHARED_LIB_SUFFIX@'
1.146 +
1.147 +# Location of the top-level source directory from which Tcl was built.
1.148 +# This is the directory that contains a README file as well as
1.149 +# subdirectories such as generic, unix, etc. If Tcl was compiled in a
1.150 +# different place than the directory containing the source files, this
1.151 +# points to the location of the sources, not the location where Tcl was
1.152 +# compiled.
1.153 +TCL_SRC_DIR='@TCL_SRC_DIR@'
1.154 +
1.155 +# List of standard directories in which to look for packages during
1.156 +# "package require" commands. Contains the "prefix" directory plus also
1.157 +# the "exec_prefix" directory, if it is different.
1.158 +TCL_PACKAGE_PATH='@TCL_PACKAGE_PATH@'
1.159 +
1.160 +# Tcl supports stub.
1.161 +TCL_SUPPORTS_STUBS=1
1.162 +
1.163 +# The name of the Tcl stub library (.a):
1.164 +TCL_STUB_LIB_FILE='@TCL_STUB_LIB_FILE@'
1.165 +
1.166 +# -l flag to pass to the linker to pick up the Tcl stub library
1.167 +TCL_STUB_LIB_FLAG='@TCL_STUB_LIB_FLAG@'
1.168 +
1.169 +# String to pass to linker to pick up the Tcl stub library from its
1.170 +# build directory.
1.171 +TCL_BUILD_STUB_LIB_SPEC='@TCL_BUILD_STUB_LIB_SPEC@'
1.172 +
1.173 +# String to pass to linker to pick up the Tcl stub library from its
1.174 +# installed directory.
1.175 +TCL_STUB_LIB_SPEC='@TCL_STUB_LIB_SPEC@'
1.176 +
1.177 +# Path to the Tcl stub library in the build directory.
1.178 +TCL_BUILD_STUB_LIB_PATH='@TCL_BUILD_STUB_LIB_PATH@'
1.179 +
1.180 +# Path to the Tcl stub library in the install directory.
1.181 +TCL_STUB_LIB_PATH='@TCL_STUB_LIB_PATH@'
1.182 +
1.183 +# Flag, 1: we built Tcl with threads enables, 0 we didn't
1.184 +TCL_THREADS=@TCL_THREADS@
1.185 +