summaryrefslogtreecommitdiffstats
path: root/unix/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 /unix/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 'unix/tclConfig.sh.in')
-rw-r--r--unix/tclConfig.sh.in10
1 files changed, 8 insertions, 2 deletions
diff --git a/unix/tclConfig.sh.in b/unix/tclConfig.sh.in
index ca5ada2..36df936 100644
--- a/unix/tclConfig.sh.in
+++ b/unix/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.12 1999/07/28 18:51:29 wart Exp $
+# RCS: @(#) $Id: tclConfig.sh.in,v 1.13 1999/07/29 19:21:32 wart Exp $
# Tcl's version number.
TCL_VERSION='@TCL_VERSION@'
@@ -31,7 +31,7 @@ TCL_DBGX=@TCL_DBGX@
TCL_CFLAGS_DEBUG='@CFLAGS_DEBUG@'
TCL_CFLAGS_OPTIMIZE='@CFLAGS_OPTIMIZE@'
-# Default flags used in an optimized and debuggable build, respectively.
+# Default linker flags used in an optimized and debuggable build, respectively.
TCL_LDFLAGS_DEBUG='@LDFLAGS_DEBUG@'
TCL_LDFLAGS_OPTIMIZE='@LDFLAGS_OPTIMIZE@'
@@ -64,12 +64,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.