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