diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-04-11 20:34:07 (GMT) | 
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-04-11 20:34:07 (GMT) | 
| commit | e975dd1380b75e0736e5737ecf73efe9129361bc (patch) | |
| tree | 020db13467ebfca10c4f307cd55644e9f167a694 /unix | |
| parent | 8c9ff9ac6ac043b04ecfe5593ba048130c61bcbd (diff) | |
| parent | 89c110fbb0e12918bbcb59f9d1a8c5503a5fa019 (diff) | |
| download | tcl-e975dd1380b75e0736e5737ecf73efe9129361bc.zip tcl-e975dd1380b75e0736e5737ecf73efe9129361bc.tar.gz tcl-e975dd1380b75e0736e5737ecf73efe9129361bc.tar.bz2 | |
[Bug 3448512]: clock scan "1958-01-01" fails only in debug compilation
Diffstat (limited to 'unix')
| -rwxr-xr-x | unix/configure | 11 | ||||
| -rw-r--r-- | unix/tcl.m4 | 3 | ||||
| -rw-r--r-- | unix/tclConfig.h.in | 2 | 
3 files changed, 7 insertions, 9 deletions
| diff --git a/unix/configure b/unix/configure index 64ff7e6..d87b633 100755 --- a/unix/configure +++ b/unix/configure @@ -9319,6 +9319,11 @@ fi;      if test "$tcl_ok" = "no"; then  	CFLAGS_DEFAULT='$(CFLAGS_OPTIMIZE)'  	LDFLAGS_DEFAULT='$(LDFLAGS_OPTIMIZE)' + +cat >>confdefs.h <<\_ACEOF +#define NDEBUG 1 +_ACEOF +  	echo "$as_me:$LINENO: result: no" >&5  echo "${ECHO_T}no" >&6 @@ -9336,12 +9341,6 @@ echo "${ECHO_T}yes (standard debugging)" >&6      fi -    ### FIXME: Surely TCL_CFG_DEBUG should be set to whether we're debugging? - -cat >>confdefs.h <<\_ACEOF -#define TCL_CFG_DEBUG 1 -_ACEOF -      if test "$tcl_ok" = "mem" -o "$tcl_ok" = "all"; then diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 74a577d..222c375 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -738,6 +738,7 @@ AC_DEFUN([SC_ENABLE_SYMBOLS], [      if test "$tcl_ok" = "no"; then  	CFLAGS_DEFAULT='$(CFLAGS_OPTIMIZE)'  	LDFLAGS_DEFAULT='$(LDFLAGS_OPTIMIZE)' +	AC_DEFINE(NDEBUG, 1, [Is no debugging enabled?])  	AC_MSG_RESULT([no])  	AC_DEFINE(TCL_CFG_OPTIMIZED, 1, [Is this an optimized build?])      else @@ -749,8 +750,6 @@ AC_DEFUN([SC_ENABLE_SYMBOLS], [      fi      AC_SUBST(CFLAGS_DEFAULT)      AC_SUBST(LDFLAGS_DEFAULT) -    ### FIXME: Surely TCL_CFG_DEBUG should be set to whether we're debugging? -    AC_DEFINE(TCL_CFG_DEBUG, 1, [Is debugging enabled?])      if test "$tcl_ok" = "mem" -o "$tcl_ok" = "all"; then  	AC_DEFINE(TCL_MEM_DEBUG, 1, [Is memory debugging enabled?]) diff --git a/unix/tclConfig.h.in b/unix/tclConfig.h.in index 42abf34..31466bc 100644 --- a/unix/tclConfig.h.in +++ b/unix/tclConfig.h.in @@ -362,7 +362,7 @@  #undef TCL_CFGVAL_ENCODING  /* Is debugging enabled? */ -#undef TCL_CFG_DEBUG +#undef NDEBUG  /* Is this a 64-bit build? */  #undef TCL_CFG_DO64BIT | 
