diff options
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/configure.in b/configure.in index c52a386..56cbd9a 100644 --- a/configure.in +++ b/configure.in @@ -2027,6 +2027,7 @@ esac dnl ---------------------------------------------------------------------- dnl Turn on debugging by setting compiler flags +dnl This must come after the enable-production since it depends on production. dnl AC_MSG_CHECKING(for debug flags) AC_ARG_ENABLE([debug], @@ -2038,10 +2039,19 @@ AC_ARG_ENABLE([debug], packages.])], [DEBUG_PKG=$enableval]) +dnl Default to no if producton is enabled +if test "X-$DEBUG_PKG" = X- ; then + if test "$enable_production" = yes ; then + DEBUG_PKG=no + else + DEBUG_PKG=yes + fi +fi + AC_SUBST([DEBUG_PKG]) all_packages="ac,b,b2,d,e,f,g,hg,hl,i,mf,mm,o,p,s,t,v,z" case "X-$DEBUG_PKG" in - X-|X-yes) + X-yes) DEBUG_PKG="d,e,f,g,hg,i,mm,o,p,s,t,v,z" H5_CPPFLAGS="$H5_CPPFLAGS -UNDEBUG" AC_MSG_RESULT([default ($DEBUG_PKG)]) |