summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordavygrvy <davygrvy@noemail.net>2004-01-16 02:40:20 (GMT)
committerdavygrvy <davygrvy@noemail.net>2004-01-16 02:40:20 (GMT)
commit1645ce4e9de896bbf21dbf74f4989dd9bbdea508 (patch)
treee2bea8416ae95a078e95a9b69ade2eb8f1061eae
parent26f444259a6879e423a96b5657c8ddccc678a87e (diff)
downloadtcl-1645ce4e9de896bbf21dbf74f4989dd9bbdea508.zip
tcl-1645ce4e9de896bbf21dbf74f4989dd9bbdea508.tar.gz
tcl-1645ce4e9de896bbf21dbf74f4989dd9bbdea508.tar.bz2
Some clean-up with how the resource files are built.
FossilOrigin-Name: 0f93be7d06f67d44968d0814e918c886673468f4
-rw-r--r--win/tcl.rc8
-rw-r--r--win/tclsh.rc10
2 files changed, 9 insertions, 9 deletions
diff --git a/win/tcl.rc b/win/tcl.rc
index 93677bf..df0b22c 100644
--- a/win/tcl.rc
+++ b/win/tcl.rc
@@ -1,4 +1,4 @@
-// RCS: @(#) $Id: tcl.rc,v 1.9 2003/12/16 02:43:57 davygrvy Exp $
+// RCS: @(#) $Id: tcl.rc,v 1.10 2004/01/16 02:40:20 davygrvy Exp $
//
// Version Resource Script
//
@@ -9,14 +9,14 @@
//
// build-up the name suffix that defines the type of build this is.
//
-#ifdef TCL_THREADS
+#if TCL_THREADS
#define SUFFIX_THREADS "t"
#else
#define SUFFIX_THREADS ""
#endif
-#ifdef DEBUG
-#define SUFFIX_DEBUG "d"
+#if DEBUG
+#define SUFFIX_DEBUG "g"
#else
#define SUFFIX_DEBUG ""
#endif
diff --git a/win/tclsh.rc b/win/tclsh.rc
index 0d0fbd4..01c9bd8 100644
--- a/win/tclsh.rc
+++ b/win/tclsh.rc
@@ -1,4 +1,4 @@
-// RCS: @(#) $Id: tclsh.rc,v 1.9 2003/12/16 02:31:54 davygrvy Exp $
+// RCS: @(#) $Id: tclsh.rc,v 1.10 2004/01/16 02:40:20 davygrvy Exp $
//
// Version Resource Script
//
@@ -9,20 +9,20 @@
//
// build-up the name suffix that defines the type of build this is.
//
-#ifdef TCL_THREADS
+#if TCL_THREADS
#define SUFFIX_THREADS "t"
#else
#define SUFFIX_THREADS ""
#endif
-#ifdef STATIC_BUILD
+#if STATIC_BUILD
#define SUFFIX_STATIC "s"
#else
#define SUFFIX_STATIC ""
#endif
-#ifdef DEBUG
-#define SUFFIX_DEBUG "d"
+#if DEBUG
+#define SUFFIX_DEBUG "g"
#else
#define SUFFIX_DEBUG ""
#endif