From 6e9d2f8099a1de4b73f5a1295e97309cb9071f01 Mon Sep 17 00:00:00 2001 From: Albert Cheng Date: Tue, 8 Apr 2008 11:30:43 -0500 Subject: [svn-r14812] Description: The development branch was changed to default enable-production for the v1.8 release but had not switched back to default development mode. Solution: Changed it back to --disable-production (aka development) as the default. Also ran bin/reconfigure to update configure. Tested: Smirom only. No h5committest since the change is trivial and if it works at smirom, it should work everywhere else. --- configure | 6 +++--- configure.in | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/configure b/configure index eea58aa..6d1b327 100755 --- a/configure +++ b/configure @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Id: configure.in 14789 2008-04-02 18:29:17Z vchoi . +# From configure.in Id: configure.in 14799 2008-04-06 10:05:45Z hdftest . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.61 for HDF5 1.9.2. # @@ -22561,7 +22561,7 @@ 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; } @@ -22602,7 +22602,7 @@ echo "${ECHO_T}production" >&6; } H5_CXXFLAGS="$H5_CXXFLAGS $PROD_CXXFLAGS" H5_FCFLAGS="$H5_FCFLAGS $PROD_FCFLAGS" ;; - X-no) + X-|X-no) enable_production="no" { echo "$as_me:$LINENO: result: development" >&5 echo "${ECHO_T}development" >&6; } diff --git a/configure.in b/configure.in index c217a2a..b0b9f52 100644 --- a/configure.in +++ b/configure.in @@ -1011,7 +1011,7 @@ AC_ARG_ENABLE(production, [Determines how to run the compiler.])]) case "X-$enable_production" in - X-|X-yes) + X-yes) enable_production="yes" AC_MSG_RESULT([production]) @@ -1053,7 +1053,7 @@ case "X-$enable_production" in H5_CXXFLAGS="$H5_CXXFLAGS $PROD_CXXFLAGS" H5_FCFLAGS="$H5_FCFLAGS $PROD_FCFLAGS" ;; - X-no) + X-|X-no) enable_production="no" AC_MSG_RESULT([development]) CONFIG_MODE=development -- cgit v0.12