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