diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-04-10 01:05:03 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-04-10 01:05:03 (GMT) |
commit | 16af7806e7b492a91bee96abdd985e35cd607e1d (patch) | |
tree | 8dd44962d3032752238c1f9cff880095414b956a /fortran/src/h5fc.in | |
parent | 44deb0bdec073dcd3c5041b0781e74b0ece759f6 (diff) | |
download | hdf5-16af7806e7b492a91bee96abdd985e35cd607e1d.zip hdf5-16af7806e7b492a91bee96abdd985e35cd607e1d.tar.gz hdf5-16af7806e7b492a91bee96abdd985e35cd607e1d.tar.bz2 |
[svn-r6623] Purpose:
Bug Fix
Description:
Some of the macros in the script weren't being updated by configure
correctly. Also, the FFLAGS needed to be used during compilation.
Solution:
Put the correct macros in there. Added FFLAGS.
Platforms tested:
Arabica. Only testing it on one platform for now since this is a
script change and needs to be tested on one machine first before
further testing...
Misc. update:
Diffstat (limited to 'fortran/src/h5fc.in')
-rwxr-xr-x | fortran/src/h5fc.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/fortran/src/h5fc.in b/fortran/src/h5fc.in index cedc0b5..4e2dc05 100755 --- a/fortran/src/h5fc.in +++ b/fortran/src/h5fc.in @@ -50,8 +50,9 @@ dash_c="no" get_output_file="no" SHOW="eval" -FCBASE="@FC@" -FLINKERBASE="@FC@" +FCBASE="@F9X@" +FLINKERBASE="@F9X@" +FFLAGS="@FFLAGS@" LDFLAGS="@LDFLAGS@" LIBS="@LIBS@" @@ -196,7 +197,7 @@ if test "x$do_link" = "xyes"; then link_args="$link_args ${libdir}/libhdf5_fortran.a ${libdir}/libhdf5.a" link_args="$link_args $LIBS" - $SHOW $FLINKER $LDFLAGS $link_objs $link_args + $SHOW $FLINKER $FFLAGS $LDFLAGS $link_objs $link_args status=$? fi |