summaryrefslogtreecommitdiffstats
path: root/unix/tclConfig.sh.in
diff options
context:
space:
mode:
authorwart <wart>1999-07-28 18:51:29 (GMT)
committerwart <wart>1999-07-28 18:51:29 (GMT)
commit5c79295d286304b7a34f3b09812f4114d4df6089 (patch)
tree23dc73f3061ba35d80e1a9386077693e6085b032 /unix/tclConfig.sh.in
parenteee25bb571c43b9d4ff16fc5d60ccc66a3e81454 (diff)
downloadtcl-5c79295d286304b7a34f3b09812f4114d4df6089.zip
tcl-5c79295d286304b7a34f3b09812f4114d4df6089.tar.gz
tcl-5c79295d286304b7a34f3b09812f4114d4df6089.tar.bz2
Added entries for LDFLAGS_DEBUG and LDFLAGS_OPTIMIZE so that extensions can
get these values in the same way they get the debug and optimize CFLAGS.
Diffstat (limited to 'unix/tclConfig.sh.in')
-rw-r--r--unix/tclConfig.sh.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/unix/tclConfig.sh.in b/unix/tclConfig.sh.in
index 0520784..ca5ada2 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.11 1999/06/16 22:36:24 surles Exp $
+# RCS: @(#) $Id: tclConfig.sh.in,v 1.12 1999/07/28 18:51:29 wart Exp $
# Tcl's version number.
TCL_VERSION='@TCL_VERSION@'
@@ -31,6 +31,10 @@ TCL_DBGX=@TCL_DBGX@
TCL_CFLAGS_DEBUG='@CFLAGS_DEBUG@'
TCL_CFLAGS_OPTIMIZE='@CFLAGS_OPTIMIZE@'
+# Default flags used in an optimized and debuggable build, respectively.
+TCL_LDFLAGS_DEBUG='@LDFLAGS_DEBUG@'
+TCL_LDFLAGS_OPTIMIZE='@LDFLAGS_OPTIMIZE@'
+
# Flag, 1: we built a shared lib, 0 we didn't
TCL_SHARED_BUILD=@TCL_SHARED_BUILD@