diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-03-07 17:57:27 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-03-07 17:57:27 (GMT) |
commit | 25df1908bc0430994cecc9f1415838f42fe0c816 (patch) | |
tree | bce2777e087cc7d547e7b644f908eff72282bb53 /config/unicosmk2.0.6.X | |
parent | 630b2901c53c66c837e39babe9da0c20020e5d4d (diff) | |
download | hdf5-25df1908bc0430994cecc9f1415838f42fe0c816.zip hdf5-25df1908bc0430994cecc9f1415838f42fe0c816.tar.gz hdf5-25df1908bc0430994cecc9f1415838f42fe0c816.tar.bz2 |
[svn-r10158] Purpose:
Automake version upgrade
Description:
Upgraded automake version from 1.6.2 to 1.9.5.
Changed bin/reconfigure script to use automake 1.9.5.
Changed configure.in and Makefiles to use new FCFLAGS and FC variables
instead of FFLAGS and F9X.
Automake and configure should now do the lion's share of the work
supporting Fortran 9X; macros in acsite.m4 are now mostly unused (will
be cleaned later).
Altered how configure handles pmake; now root-level Makefile.in is
processed by bin/reconfigure to have a .MAKEFLAGS target, since
automake no longer allows us to define unused variables.
Configure now always checks for C++ compiler even if it is not
used, since automake thinks this is the Right Thing To Do and
will break otherwise.
Platforms tested:
Sol, copper, heping, mir, sleipnir, eirene, pommier, kelgia, modi4.
Diffstat (limited to 'config/unicosmk2.0.6.X')
-rw-r--r-- | config/unicosmk2.0.6.X | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/config/unicosmk2.0.6.X b/config/unicosmk2.0.6.X index c5e37c3..e49ab7c 100644 --- a/config/unicosmk2.0.6.X +++ b/config/unicosmk2.0.6.X @@ -160,8 +160,8 @@ HID_T='SELECTED_INT_KIND(R_INTEGER)' SIZE_T='SELECTED_INT_KIND(R_LARGE)' OBJECT_NAMELEN_DEFAULT_F=-1 -if test "X-" = "X-$F9X"; then - F9X=f90 +if test "X-" = "X-$FC"; then + FC=f90 fi if test "X-" = "X-$f9x_flags_set"; then @@ -169,10 +169,10 @@ if test "X-" = "X-$f9x_flags_set"; then # number #. Warning 405 and 412 were stopping the executable from being built. F9XSUFFIXFLAG="" FSEARCH_DIRS="" - FFLAGS="$FFLAGS -dp -Wl-M405,412" - DEBUG_FFLAGS="" - PROD_FFLAGS="" - PROFILE_FFLAGS="" + FCFLAGS="$FCFLAGS -dp -Wl-M405,412" + DEBUG_FCFLAGS="" + PROD_FCFLAGS="" + PROFILE_FCFLAGS="" f9x_flags_set=yes fi |