View | Details | Raw Unified | Return to bug 209980
Collapse All | Expand All

(-)../../home/pi/myp/science/hdf5/Makefile (-1 / +3 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	hdf5
4
PORTNAME=	hdf5
5
PORTVERSION=	1.10.0
5
PORTVERSION=	1.10.0
6
PORTREVISION=	1
6
CATEGORIES=	science archivers graphics
7
CATEGORIES=	science archivers graphics
7
MASTER_SITES=	https://www.hdfgroup.org/ftp/HDF5/releases/hdf5-${PORTVERSION:R}/${DISTNAME}/src/ \
8
MASTER_SITES=	https://www.hdfgroup.org/ftp/HDF5/releases/hdf5-${PORTVERSION:R}/${DISTNAME}/src/ \
8
		ftp://www.hdfgroup.org/HDF5/releases/hdf5-${PORTVERSION:R}/${DISTNAME}/src/ \
9
		ftp://www.hdfgroup.org/HDF5/releases/hdf5-${PORTVERSION:R}/${DISTNAME}/src/ \
Lines 23-29 Link Here
23
CONFIGURE_ARGS=	--enable-cxx \
24
CONFIGURE_ARGS=	--enable-cxx \
24
		--enable-hl \
25
		--enable-hl \
25
		--enable-instrument \
26
		--enable-instrument \
26
		--enable-strict-format-checks
27
		--enable-strict-format-checks \
28
		--with-default-api-version=v18
27
GNU_CONFIGURE=	yes
29
GNU_CONFIGURE=	yes
28
INSTALL_TARGET=	install-strip
30
INSTALL_TARGET=	install-strip
29
MAKE_JOBS_UNSAFE=	yes
31
MAKE_JOBS_UNSAFE=	yes
(-)../../home/pi/myp/science/hdf5/files/patch-fortran_src_H5__f.c (+20 lines)
Line 0 Link Here
1
--- fortran/src/H5_f.c.orig	2016-05-30 11:51:55.838813000 -0700
2
+++ fortran/src/H5_f.c	2016-05-30 11:52:46.901739000 -0700
3
@@ -227,14 +227,14 @@
4
     /*
5
      * FIND H5T_NATIVE_REAL_C_LONG_DOUBLE
6
      */
7
-#if H5_FORTRAN_C_LONG_DOUBLE_IS_UNIQUE!=0
8
+#if FORTRAN_C_LONG_DOUBLE_IS_UNIQUE!=0
9
     if (sizeof(real_C_LONG_DOUBLE_f) == sizeof(float)) {
10
       if ((types[12] = (hid_t_f)H5Tcopy(H5T_NATIVE_FLOAT)) < 0) return ret_value;
11
     } /*end if */
12
     else if (sizeof(real_C_LONG_DOUBLE_f) == sizeof(double)) {
13
       if ((types[12] = (hid_t_f)H5Tcopy(H5T_NATIVE_DOUBLE)) < 0) return ret_value;
14
     } /*end if */
15
-# if H5_FORTRAN_HAVE_C_LONG_DOUBLE!=0
16
+# if FORTRAN_HAVE_C_LONG_DOUBLE!=0
17
     else if (sizeof(real_C_LONG_DOUBLE_f) == sizeof(long double)) {
18
       if ( H5_PAC_C_MAX_REAL_PRECISION >= H5_PAC_FC_MAX_REAL_PRECISION) {
19
 	if ((types[12] = (hid_t_f)H5Tcopy(H5T_NATIVE_LDOUBLE)) < 0) return ret_value;
20

Return to bug 209980