diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-07-07 16:46:14 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-07-07 16:46:14 (GMT) |
commit | 949f595f10e541e2bef1bf419ca92ad4975df50e (patch) | |
tree | 961a837c0470afac3f2d418ed8e1eda0483d692b | |
parent | 3816afb1728d783c85e08416c7235961e7a6b858 (diff) | |
download | hdf5-949f595f10e541e2bef1bf419ca92ad4975df50e.zip hdf5-949f595f10e541e2bef1bf419ca92ad4975df50e.tar.gz hdf5-949f595f10e541e2bef1bf419ca92ad4975df50e.tar.bz2 |
[svn-r7177] Purpose:
Code cleanup/bug fix
Description:
Finish changing main development trunk back to default to production off
and debug on.
Solution:
Run autoconf (which I forgot before :-)
Platforms tested:
FreeBSD 4.8 (sleipnir)
h5committest not needed.
-rwxr-xr-x | configure | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -7440,7 +7440,7 @@ if test "${enable_production+set}" = set; then fi; case "X-$enable_production" in - X-|X-yes) + X-yes) enable_production="yes" echo "$as_me:$LINENO: result: production" >&5 echo "${ECHO_T}production" >&6 @@ -7459,7 +7459,7 @@ echo "${ECHO_T}production" >&6 CFLAGS="$CFLAGS $PROD_CFLAGS" CPPFLAGS="$CPPFLAGS $PROD_CPPFLAGS" ;; - X-no) + X-|X-no) enable_production="no" echo "$as_me:$LINENO: result: development" >&5 echo "${ECHO_T}development" >&6 @@ -30180,7 +30180,7 @@ fi; all_packages="ac,b,d,e,f,g,hg,hl,i,mf,mm,o,p,s,t,v,z" case "X-$DEBUG_PKG" in - X-yes) + X-|X-yes) DEBUG_PKG="d,e,f,g,hg,i,mm,o,p,s,t,v,z" CPPFLAGS="$CPPFLAGS -UNDEBUG" echo "$as_me:$LINENO: result: default ($DEBUG_PKG)" >&5 @@ -30192,7 +30192,7 @@ echo "${ECHO_T}default ($DEBUG_PKG)" >&6 echo "$as_me:$LINENO: result: all ($DEBUG_PKG)" >&5 echo "${ECHO_T}all ($DEBUG_PKG)" >&6 ;; - X-|X-no|X-none) + X-no|X-none) echo "$as_me:$LINENO: result: none" >&5 echo "${ECHO_T}none" >&6 DEBUG_PKG= |