diff options
author | James Laird <jlaird@hdfgroup.org> | 2006-11-10 19:56:04 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2006-11-10 19:56:04 (GMT) |
commit | 911e79b273bddac85c698b77718516b8a8ee9ab2 (patch) | |
tree | 50541570407c04ef30d3c706de5ea75fd0993608 /hl/fortran | |
parent | 227a79d5513e305d047020d96b1ac8b4f8bf44b5 (diff) | |
download | hdf5-911e79b273bddac85c698b77718516b8a8ee9ab2.zip hdf5-911e79b273bddac85c698b77718516b8a8ee9ab2.tar.gz hdf5-911e79b273bddac85c698b77718516b8a8ee9ab2.tar.bz2 |
[svn-r12887] A fix for linking issues.
Should disable linking against shared libraries in Fortran for compilers that
don't support shared libraries.
Should also fix problem when the wrong Fortran file extension was specified.
If these changes don't solve the Daily Test issues, I'll look at backing out
the autotool version change until I have time to fix them.
Tested on heping, kagiso, juniper.
Diffstat (limited to 'hl/fortran')
-rw-r--r-- | hl/fortran/Makefile.in | 1 | ||||
-rw-r--r-- | hl/fortran/examples/Makefile.in | 1 | ||||
-rw-r--r-- | hl/fortran/src/Makefile.in | 1 | ||||
-rw-r--r-- | hl/fortran/test/Makefile.in | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/hl/fortran/Makefile.in b/hl/fortran/Makefile.in index a9a4291..f54e510 100644 --- a/hl/fortran/Makefile.in +++ b/hl/fortran/Makefile.in @@ -141,6 +141,7 @@ F9XMODFLAG = @F9XMODFLAG@ F9XSUFFIXFLAG = @F9XSUFFIXFLAG@ FC = @FC@ FCFLAGS = @FCFLAGS@ @H5_FCFLAGS@ +FCFLAGS_f90 = @FCFLAGS_f90@ FCLIBS = @FCLIBS@ FFLAGS = @FFLAGS@ FILTERS = @FILTERS@ diff --git a/hl/fortran/examples/Makefile.in b/hl/fortran/examples/Makefile.in index a87b605..c5633e8 100644 --- a/hl/fortran/examples/Makefile.in +++ b/hl/fortran/examples/Makefile.in @@ -134,6 +134,7 @@ F9XMODFLAG = @F9XMODFLAG@ F9XSUFFIXFLAG = @F9XSUFFIXFLAG@ FC = @FC@ FCFLAGS = @FCFLAGS@ @H5_FCFLAGS@ +FCFLAGS_f90 = @FCFLAGS_f90@ FCLIBS = @FCLIBS@ FFLAGS = @FFLAGS@ FILTERS = @FILTERS@ diff --git a/hl/fortran/src/Makefile.in b/hl/fortran/src/Makefile.in index 12b5c7b..07c42cf 100644 --- a/hl/fortran/src/Makefile.in +++ b/hl/fortran/src/Makefile.in @@ -161,6 +161,7 @@ F9XMODFLAG = @F9XMODFLAG@ F9XSUFFIXFLAG = @F9XSUFFIXFLAG@ FC = @FC@ FCFLAGS = @FCFLAGS@ @H5_FCFLAGS@ +FCFLAGS_f90 = @FCFLAGS_f90@ FCLIBS = @FCLIBS@ FFLAGS = @FFLAGS@ FILTERS = @FILTERS@ diff --git a/hl/fortran/test/Makefile.in b/hl/fortran/test/Makefile.in index e34fc52..38646db 100644 --- a/hl/fortran/test/Makefile.in +++ b/hl/fortran/test/Makefile.in @@ -160,6 +160,7 @@ F9XMODFLAG = @F9XMODFLAG@ F9XSUFFIXFLAG = @F9XSUFFIXFLAG@ FC = @FC@ FCFLAGS = @FCFLAGS@ @H5_FCFLAGS@ +FCFLAGS_f90 = @FCFLAGS_f90@ FCLIBS = @FCLIBS@ FFLAGS = @FFLAGS@ FILTERS = @FILTERS@ |