summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2015-04-20 21:28:05 (GMT)
committerScot Breitenfeld <brtnfld@hdfgroup.org>2015-04-20 21:28:05 (GMT)
commitaff66a3790e083fa13d05302a2191d6086268fc1 (patch)
treeeb1074b16c80d359be225e7ffb68d3647f607406
parent5fd5aa58ca66c387551f1d79f0d49bbb76067109 (diff)
downloadhdf5-aff66a3790e083fa13d05302a2191d6086268fc1.zip
hdf5-aff66a3790e083fa13d05302a2191d6086268fc1.tar.gz
hdf5-aff66a3790e083fa13d05302a2191d6086268fc1.tar.bz2
[svn-r26856] various intel compiler fixes
-rwxr-xr-xconfigure2
-rw-r--r--configure.ac2
-rw-r--r--fortran/src/H5Pff.F908
-rw-r--r--fortran/src/Makefile.am2
-rw-r--r--fortran/src/Makefile.in2
5 files changed, 8 insertions, 8 deletions
diff --git a/configure b/configure
index a67a27b..b4be929 100755
--- a/configure
+++ b/configure
@@ -22446,7 +22446,7 @@ case "$host_cpu-$host_vendor-$host_os" in
##
## POSIX feature information can be found in the gcc manual at:
## http://www.gnu.org/s/libc/manual/html_node/Feature-Test-Macros.html
- H5_CPPFLAGS="-D_POSIX_C_SOURCE=200112L $H5_CPPFLAGS"
+##SCOT H5_CPPFLAGS="-D_POSIX_C_SOURCE=200112L $H5_CPPFLAGS"
## Need to add this so that O_DIRECT is visible for the direct
## VFD on Linux systems.
diff --git a/configure.ac b/configure.ac
index 77036d68..b78ac89 100644
--- a/configure.ac
+++ b/configure.ac
@@ -975,7 +975,7 @@ case "$host_cpu-$host_vendor-$host_os" in
##
## POSIX feature information can be found in the gcc manual at:
## http://www.gnu.org/s/libc/manual/html_node/Feature-Test-Macros.html
- H5_CPPFLAGS="-D_POSIX_C_SOURCE=200112L $H5_CPPFLAGS"
+##SCOT H5_CPPFLAGS="-D_POSIX_C_SOURCE=200112L $H5_CPPFLAGS"
## Need to add this so that O_DIRECT is visible for the direct
## VFD on Linux systems.
diff --git a/fortran/src/H5Pff.F90 b/fortran/src/H5Pff.F90
index b038d23..b595100 100644
--- a/fortran/src/H5Pff.F90
+++ b/fortran/src/H5Pff.F90
@@ -694,10 +694,10 @@ CONTAINS
IMPORT :: HID_T
IMPLICIT NONE
INTEGER(HID_T), INTENT(IN) :: prp_id
- INTEGER, DIMENSION(:), INTENT(OUT) :: boot
- INTEGER, DIMENSION(:), INTENT(OUT) :: freelist
- INTEGER, DIMENSION(:), INTENT(OUT) :: stab
- INTEGER, DIMENSION(:), INTENT(OUT) :: shhdr
+ INTEGER, DIMENSION(*), INTENT(OUT) :: boot
+ INTEGER, DIMENSION(*), INTENT(OUT) :: freelist
+ INTEGER, DIMENSION(*), INTENT(OUT) :: stab
+ INTEGER, DIMENSION(*), INTENT(OUT) :: shhdr
END FUNCTION h5pget_version_c
END INTERFACE
diff --git a/fortran/src/Makefile.am b/fortran/src/Makefile.am
index 13e250b..3b2c0a0 100644
--- a/fortran/src/Makefile.am
+++ b/fortran/src/Makefile.am
@@ -159,7 +159,7 @@ H5fortran_detect.F90: H5test_kind$(EXEEXT)
# H5test_kind.F90 is included in the distribution, and Automake knows
# how to compile a fortran program given its sources.
-H5test_kind_SOURCES = H5test_kind.f90
+H5test_kind_SOURCES = H5test_kind.F90
# Mark this directory as part of the Fortran API
FORTRAN_API=yes
diff --git a/fortran/src/Makefile.in b/fortran/src/Makefile.in
index ea924f9..5a925df 100644
--- a/fortran/src/Makefile.in
+++ b/fortran/src/Makefile.in
@@ -771,7 +771,7 @@ H5fortran_detect_SOURCES = H5fortran_detect.F90
# H5test_kind.F90 is included in the distribution, and Automake knows
# how to compile a fortran program given its sources.
-H5test_kind_SOURCES = H5test_kind.f90
+H5test_kind_SOURCES = H5test_kind.F90
# Mark this directory as part of the Fortran API
FORTRAN_API = yes