summaryrefslogtreecommitdiffstats
path: root/fortran/src/H5config_f.inc.in
blob: 7f522558b55ab165294daca19a6807f4b9cac6ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
!   Copyright by The HDF Group.                                               *
!   All rights reserved.                                                      *
!                                                                             *
!   This file is part of HDF5.  The full HDF5 copyright notice, including     *
!   terms governing use, modification, and redistribution, is contained in    *
!   the COPYING file, which can be found at the root of the source code       *
!   distribution tree, or in https://www.hdfgroup.org/licenses.               *
!   If you do not have access to either file, you may request a copy from     *
!   help@hdfgroup.org.                                                        *
! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
! fortran/src/H5config_f.inc. Generated from fortran/src/H5config_f.inc.in by configure

! The script to replace the defines in H5config_f.inc.in is
! located in configure.ac in the Fortran section.

! Define if we have parallel support
#undef HAVE_PARALLEL

! Define if MPI supports mpi_f08 module
#undef HAVE_MPI_F08

! Define if we have subfiling support
#undef HAVE_SUBFILING_VFD

! Define if on APPLE
#undef HAVE_DARWIN

! Define if the intrinsic function STORAGE_SIZE exists
#undef FORTRAN_HAVE_STORAGE_SIZE

! Define if the intrinsic function SIZEOF exists
#undef FORTRAN_HAVE_SIZEOF

! Define if the intrinsic function C_SIZEOF exists
#undef FORTRAN_HAVE_C_SIZEOF

! Define if the intrinsic function C_LONG_DOUBLE exists
#undef FORTRAN_HAVE_C_LONG_DOUBLE

! Define if Fortran C_LONG_DOUBLE is different from C_DOUBLE
#undef FORTRAN_C_LONG_DOUBLE_IS_UNIQUE

! Define if the intrinsic module ISO_FORTRAN_ENV exists
#undef HAVE_ISO_FORTRAN_ENV

! Define the size of C's double
#undef SIZEOF_DOUBLE

! Define the size of C's long double
#undef SIZEOF_LONG_DOUBLE

! Define the maximum decimal precision for reals
#undef PAC_FC_MAX_REAL_PRECISION

! If C has quad precision
#undef HAVE_FLOAT128

! Define if INTEGER*16 is available
#undef HAVE_Fortran_INTEGER_SIZEOF_16

! Maximum decimal precision for C
#undef PAC_C_MAX_REAL_PRECISION

! number of valid REAL KINDs
#undef H5CONFIG_F_NUM_RKIND

! valid REAL KINDs (need to have a matching C counter-part)
#undef H5CONFIG_F_RKIND

! valid REAL KINDs (need to have a matching C counter-part)
#undef H5CONFIG_F_RKIND_SIZEOF

! number of valid INTEGER KINDs
#undef H5CONFIG_F_NUM_IKIND

! valid INTEGER KINDs (need to have a matching C counter-part)
#undef H5CONFIG_F_IKIND

! Fortran compiler name
#undef Fortran_COMPILER_ID

! Define if deprecated public API symbols are disabled
#undef NO_DEPRECATED_SYMBOLS

! For major interface/format changes
#undef VERS_MAJOR_TMP

! For minor interface/format changes
#undef VERS_MINOR_TMP

! For tweaks, bug-fixes, or development
#undef VERS_RELEASE_TMP

! macros for comparing versions
#define VERSION_GE(Maj, Min, Rel)                                                      \
    (((H5_VERS_MAJOR == Maj) && (H5_VERS_MINOR == Min) && (H5_VERS_RELEASE >= Rel)) || \
     ((H5_VERS_MAJOR == Maj) && (H5_VERS_MINOR > Min)) || (H5_VERS_MAJOR > Maj))

#define VERSION_LE(Maj, Min, Rel)                                                      \
    (((H5_VERS_MAJOR == Maj) && (H5_VERS_MINOR == Min) && (H5_VERS_RELEASE <= Rel)) || \
     ((H5_VERS_MAJOR == Maj) && (H5_VERS_MINOR < Min)) || (H5_VERS_MAJOR < Maj))