summaryrefslogtreecommitdiffstats
path: root/generic/tclPkgConfig.c
diff options
context:
space:
mode:
authornijtmans@users.sourceforge.net <jan.nijtmans>2012-04-11 19:50:35 (GMT)
committernijtmans@users.sourceforge.net <jan.nijtmans>2012-04-11 19:50:35 (GMT)
commit17f99139d4a0a67c364d8245a48b8602c8c9f240 (patch)
treea46fc6a0815d0b37139d0ca94a595e95c2d0dfdc /generic/tclPkgConfig.c
parentc024e01b6acfe5010c9788db9a8daf5c4416e357 (diff)
parentd422692a8f6550443a4cf9ccac3ee45cd4aa66a3 (diff)
downloadtcl-17f99139d4a0a67c364d8245a48b8602c8c9f240.zip
tcl-17f99139d4a0a67c364d8245a48b8602c8c9f240.tar.gz
tcl-17f99139d4a0a67c364d8245a48b8602c8c9f240.tar.bz2
[Bug 3448512]: clock scan "1958-01-01" fails only in debug compilation
Diffstat (limited to 'generic/tclPkgConfig.c')
-rw-r--r--generic/tclPkgConfig.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclPkgConfig.c b/generic/tclPkgConfig.c
index 4eed372..840ebed 100644
--- a/generic/tclPkgConfig.c
+++ b/generic/tclPkgConfig.c
@@ -22,7 +22,7 @@
* - TCL_COMPILE_STATS OSCMa bytecode compiler statistics.
*
* - TCL_CFG_DO64BIT NSCMdt tcl is compiled for a 64bit system.
- * - TCL_CFG_DEBUG NSCMdt tcl is compiled with symbol info on.
+ * - NDEBUG NSCMdt tcl is compiled with symbol info off.
* - TCL_CFG_OPTIMIZED NSCMdt tcl is compiled with cc optimizations on
* - TCL_CFG_PROFILED NSCMdt tcl is compiled with profiling info.
*
@@ -70,7 +70,7 @@
# define CFG_64 "0"
#endif
-#ifdef TCL_CFG_DEBUG
+#ifndef NDEBUG
# define CFG_DEBUG "1"
#else
# define CFG_DEBUG "0"