summaryrefslogtreecommitdiffstats
path: root/unix/tclConfig.sh.in
diff options
context:
space:
mode:
authorhypnotoad <yoda@etoyoc.com>2014-09-09 13:59:09 (GMT)
committerhypnotoad <yoda@etoyoc.com>2014-09-09 13:59:09 (GMT)
commitd224e0841dc47eb837cd8d1172b8437de59a09c2 (patch)
treeb9d3a27e14457f380cc172bbcaf2d825428ae992 /unix/tclConfig.sh.in
parent982533993687abc861d0008a992585b4529fd400 (diff)
downloadtcl-d224e0841dc47eb837cd8d1172b8437de59a09c2.zip
tcl-d224e0841dc47eb837cd8d1172b8437de59a09c2.tar.gz
tcl-d224e0841dc47eb837cd8d1172b8437de59a09c2.tar.bz2
Add Static library link instructions to tclConfig.shcore_zip_vfs_static
Diffstat (limited to 'unix/tclConfig.sh.in')
-rw-r--r--unix/tclConfig.sh.in28
1 files changed, 28 insertions, 0 deletions
diff --git a/unix/tclConfig.sh.in b/unix/tclConfig.sh.in
index b58e9fd..976bd7f 100644
--- a/unix/tclConfig.sh.in
+++ b/unix/tclConfig.sh.in
@@ -39,6 +39,9 @@ TCL_SHARED_BUILD=@TCL_SHARED_BUILD@
# The name of the Tcl library (may be either a .a file or a shared library):
TCL_LIB_FILE='@TCL_LIB_FILE@'
+# The name of the static Tcl library (intended for kits):
+TCL_KIT_LIB_FILE='@TCL_KIT_LIB_FILE@'
+
# Additional libraries to use when linking Tcl.
TCL_LIBS='@TCL_LIBS@'
@@ -142,6 +145,31 @@ TCL_SRC_DIR='@TCL_SRC_DIR@'
# the "exec_prefix" directory, if it is different.
TCL_PACKAGE_PATH='@TCL_PACKAGE_PATH@'
+# Core VFS Kit Support
+TCL_SUPPORT_KITS=1
+
+# The name of the Tcl kit library (.a):
+TCL_KIT_LIB_FILE='@TCL_KIT_LIB_FILE@'
+
+# -l flag to pass to the linker to pick up the Tcl kit library
+TCL_KIT_LIB_FLAG='@TCL_KIT_LIB_FLAG@'
+
+# String to pass to linker to pick up the Tcl kit library from its
+# build directory.
+TCL_BUILD_KIT_LIB_SPEC='@TCL_BUILD_KIT_LIB_SPEC@'
+
+# String to pass to linker to pick up the Tcl kit library from its
+# installed directory.
+TCL_KIT_LIB_SPEC='@TCL_KIT_LIB_SPEC@'
+
+# Path to the Tcl kit library in the build directory.
+TCL_BUILD_KIT_LIB_PATH='@TCL_BUILD_KIT_LIB_PATH@'
+
+# Path to the Tcl kit library in the install directory.
+TCL_KIT_LIB_PATH='@TCL_KIT_LIB_PATH@'
+
+# END VFS SUPPORT
+
# Tcl supports stub.
TCL_SUPPORTS_STUBS=1