summaryrefslogtreecommitdiffstats
path: root/win/tclConfig.sh.in
diff options
context:
space:
mode:
authorwart <wart>1999-07-29 19:21:32 (GMT)
committerwart <wart>1999-07-29 19:21:32 (GMT)
commit832069eb84869a95bdf0741125e34bc2e672eee1 (patch)
tree24af173fbb2b40ec55d13a362131f67870d1b01a /win/tclConfig.sh.in
parent5c79295d286304b7a34f3b09812f4114d4df6089 (diff)
downloadtcl-832069eb84869a95bdf0741125e34bc2e672eee1.zip
tcl-832069eb84869a95bdf0741125e34bc2e672eee1.tar.gz
tcl-832069eb84869a95bdf0741125e34bc2e672eee1.tar.bz2
Added lines so that extensions can set up static linker (ar vs. lib) and
C compiler warning flags easily.
Diffstat (limited to 'win/tclConfig.sh.in')
-rw-r--r--win/tclConfig.sh.in8
1 files changed, 7 insertions, 1 deletions
diff --git a/win/tclConfig.sh.in b/win/tclConfig.sh.in
index 3258d3d..aaaee8d 100644
--- a/win/tclConfig.sh.in
+++ b/win/tclConfig.sh.in
@@ -9,7 +9,7 @@
#
# The information in this file is specific to a single platform.
#
-# RCS: @(#) $Id: tclConfig.sh.in,v 1.2 1999/07/28 18:51:30 wart Exp $
+# RCS: @(#) $Id: tclConfig.sh.in,v 1.3 1999/07/29 19:21:32 wart Exp $
TCL_SRC_DIR="@TCL_SRC_DIR@"
@@ -73,12 +73,18 @@ TCL_EXEC_PREFIX='@exec_prefix@'
# Flags to pass to cc when compiling the components of a shared library:
TCL_SHLIB_CFLAGS='@SHLIB_CFLAGS@'
+# Flags to pass to cc to get warning messages
+TCL_CFLAGS_WARNING='@CFLAGS_WARNING@'
+
# Extra flags to pass to cc:
TCL_EXTRA_CFLAGS='@EXTRA_CFLAGS@'
# Base command to use for combining object files into a shared library:
TCL_SHLIB_LD='@SHLIB_LD@'
+# Base command to use for combining object files into a shared library:
+TCL_STLIB_LD='@STLIB_LD@'
+
# Either '$LIBS' (if dependent libraries should be included when linking
# shared libraries) or an empty string. See Tcl's configure.in for more
# explanation.