diff options
Diffstat (limited to 'fortran/configure.in')
-rw-r--r-- | fortran/configure.in | 22 |
1 files changed, 3 insertions, 19 deletions
diff --git a/fortran/configure.in b/fortran/configure.in index e335fe1..423cef7 100644 --- a/fortran/configure.in +++ b/fortran/configure.in @@ -691,25 +691,6 @@ case "X-$enable_parallel" in fi ;; - X-mpich) - dnl For normal mpich installation the compiler, mpicc, should know - dnl where the MPI and MPI-IO header files are located and know which - dnl extra libraries need to be linked and will supply appropriate - dnl flags to the underlying compiler. - AC_MSG_RESULT(mpich) - AC_MSG_WARN(*** Why aren't you using an mpicc compiler? ***) - - dnl Apparently mpicc isn't installed correctly so configure must - dnl search for the header files and libraries. Actually we only - dnl have to search for the libraries in order to get the onto the - dnl link line, the user will have already told us about the - dnl locations. Fail if something is missing. - PARALLEL=mpich - AC_CHECK_FLIB(fmpich, [ - include 'mpif.h' - call mpi_file_open( ierr )],, AC_MSG_ERROR(no mpich library)) - ;; - *) AC_MSG_RESULT(error) AC_MSG_ERROR(\'$enable_parallel\' is not a valid parallel search type) @@ -920,6 +901,7 @@ AC_CONFIG_FILES([config/depend1 config/commence config/conclude Makefile + src/h5fc src/H5fortran_types.f90 src/Makefile test/Makefile @@ -933,3 +915,5 @@ touch ./config/stamp2 dnl Finally the makefiles test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1 + +chmod 755 src/h5fc |