diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-10-09 02:47:06 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-10-09 02:47:06 (GMT) |
commit | 4639056d93c6a7d97986aaed0197a86cde4384c1 (patch) | |
tree | d98bfe13cbc92852f071d8dd704eb972d6b452ed /fortran/configure | |
parent | 12a1d82bfde7e9d125157cefac483d9729f5b643 (diff) | |
download | hdf5-4639056d93c6a7d97986aaed0197a86cde4384c1.zip hdf5-4639056d93c6a7d97986aaed0197a86cde4384c1.tar.gz hdf5-4639056d93c6a7d97986aaed0197a86cde4384c1.tar.bz2 |
[svn-r9389] Purpose:
Regenerate
Description:
Regenerate with autoconf 2.53 (not [easily] available on tungsten)
Platforms tested:
Linux 2.4 (verbena)
Too minor to require h5committest
Diffstat (limited to 'fortran/configure')
-rwxr-xr-x | fortran/configure | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/fortran/configure b/fortran/configure index 141683d..f3381e6 100755 --- a/fortran/configure +++ b/fortran/configure @@ -7255,9 +7255,20 @@ echo "${ECHO_T}\"production\"" >&6 CFLAGS=$CFLAGS_temp fi + FFLAGS_temp="" + if test -n "$FFLAGS"; then + for d in $FFLAGS ; do + if test "X$d" != "X-g"; then + FFLAGS_temp="$FFLAGS_temp $d" + fi + done + FFLAGS=$FFLAGS_temp + fi + CONFIG_MODE=production CFLAGS="$CFLAGS $PROD_CFLAGS" CPPFLAGS="$CPPFLAGS $PROD_CPPFLAGS" + FFLAGS="$FFLAGS $PROD_FFLAGS" ;; X-no) echo "$as_me:$LINENO: result: \"development\"" >&5 @@ -7265,13 +7276,15 @@ echo "${ECHO_T}\"development\"" >&6 CONFIG_MODE=development CFLAGS="$CFLAGS $DEBUG_CFLAGS" CPPFLAGS="$CPPFLAGS $DEBUG_CPPFLAGS" + FFLAGS="$FFLAGS $DEBUG_FFLAGS" ;; X-pg|X-profile) echo "$as_me:$LINENO: result: \"profile\"" >&5 echo "${ECHO_T}\"profile\"" >&6 CONFIG_MODE=profile - CFLAGS="$CXXFLAGS $PROFILE_CFLAGS" + CFLAGS="$CFLAGS $PROFILE_CFLAGS" CPPFLAGS="$CPPFLAGS $PROFILE_CPPFLAGS" + FFLAGS="$FFLAGS $PROFILE_FFLAGS" ;; *) echo "$as_me:$LINENO: result: \"user-defined\"" >&5 |