1 |
< |
/* Define to a macro mangling the given C identifier (in lower and upper |
2 |
< |
* case), which must not contain underscores, for linking with Fortran. */ |
3 |
< |
#undef F90_FUNC |
1 |
> |
#define OPENMD_VERSION_MAJOR 2 |
2 |
> |
#define OPENMD_VERSION_MINOR 0 |
3 |
> |
#define OPENMD_VERSION_TINY 0 |
4 |
> |
#define MK_STR(s) # s |
5 |
> |
#define STR_DEFINE(t, s) t = MK_STR(s) |
6 |
|
|
7 |
< |
/* As F90_FUNC, but for C identifiers containing underscores. */ |
8 |
< |
#undef F90_FUNC_ |
7 |
> |
/* Is defined if OpenMD should be compiled with single precision arithmetic. */ |
8 |
> |
#undef SINGLE_PRECISION |
9 |
|
|
10 |
< |
/* Define to 1 if you find the <mpi.h> header file. */ |
11 |
< |
#undef HAVE_MPI_H |
10 |
> |
/* Is defined if the qhull library is available. */ |
11 |
> |
#undef HAVE_QHULL |
12 |
|
|
13 |
< |
/* Define to 1 if you find the <mpif.h> header file. */ |
14 |
< |
#undef HAVE_MPIF_H |
13 |
> |
/* Define to 1 if you have the <conio.h> header file. */ |
14 |
> |
#undef HAVE_CONIO_H |
15 |
> |
|
16 |
> |
/* define if fftw3.h exists */ |
17 |
> |
#undef HAVE_FFTW3_H |
18 |
> |
|
19 |
> |
/* define if fftw.h exists */ |
20 |
> |
#undef HAVE_FFTW_H |
21 |
> |
|
22 |
> |
/* define if dfftw.h exists */ |
23 |
> |
#undef HAVE_DFFTW_H |
24 |
> |
|
25 |
> |
/* Define to 1 if you have the `z' library (-lz). */ |
26 |
> |
#undef HAVE_LIBZ |
27 |
> |
|
28 |
> |
/* Define to 1 if you have the `strcasecmp' function. */ |
29 |
> |
#undef HAVE_STRCASECMP |
30 |
> |
|
31 |
> |
/* Define to 1 if you have the `stricmp' function. */ |
32 |
> |
#undef HAVE_STRICMP |
33 |
> |
|
34 |
> |
/* Define to 1 if you have the `strncasecmp' function. */ |
35 |
> |
#undef HAVE_STRNCASECMP |
36 |
> |
|
37 |
> |
/* Define to 1 if you have the `strnicmp' function. */ |
38 |
> |
#undef HAVE_STRNICMP |
39 |
> |
|
40 |
> |
/* Define to the address where bug reports for this package should be sent. */ |
41 |
> |
#undef PACKAGE_BUGREPORT |
42 |
> |
|
43 |
> |
/* Define to the full name of this package. */ |
44 |
> |
#undef PACKAGE_NAME |
45 |
> |
|
46 |
> |
/* Define to the full name and version of this package. */ |
47 |
> |
#undef PACKAGE_STRING |
48 |
> |
|
49 |
> |
/* Define to the one symbol short name of this package. */ |
50 |
> |
#undef PACKAGE_TARNAME |
51 |
> |
|
52 |
> |
/* Define to the version of this package. */ |
53 |
> |
#undef PACKAGE_VERSION |
54 |
> |
|
55 |
> |
/* needed by DEC/Compaq/HP cxx to activate ANSI standard iostream. */ |
56 |
> |
#undef __USE_STD_IOSTREAM |
57 |
> |
|
58 |
> |
/* Define to empty if `const' does not conform to ANSI C. */ |
59 |
> |
#undef const |
60 |
> |
|
61 |
> |
/* Code compiled in debug mode */ |
62 |
> |
#undef debug |
63 |
> |
|
64 |
> |
/* Define to `__inline__' or `__inline' if that's what the C compiler |
65 |
> |
calls it, or to nothing if 'inline' is not supported under any name. */ |
66 |
> |
#ifndef __cplusplus |
67 |
> |
#undef inline |
68 |
> |
#endif |
69 |
> |
|
70 |
> |
/* Define to rpl_malloc if the replacement function should be used. */ |
71 |
> |
#undef malloc |
72 |
> |
|
73 |
> |
/* Define to rpl_realloc if the replacement function should be used. */ |
74 |
> |
#undef realloc |
75 |
> |
|
76 |
> |
/* Define to `unsigned int' if <sys/types.h> does not define. */ |
77 |
> |
#undef size_t |
78 |
> |
|
79 |
> |
#ifdef SINGLE_PRECISION |
80 |
> |
typedef float RealType; |
81 |
> |
#ifdef IS_MPI |
82 |
> |
#define MPI_REALTYPE MPI_FLOAT |
83 |
> |
#define REALTYPE FLOAT |
84 |
> |
#define REALTYPE_INT FLOAT_INT |
85 |
> |
#endif |
86 |
> |
#else |
87 |
> |
typedef double RealType; |
88 |
> |
#ifdef IS_MPI |
89 |
> |
#define MPI_REALTYPE MPI_DOUBLE |
90 |
> |
#define REALTYPE DOUBLE |
91 |
> |
#define REALTYPE_INT DOUBLE_INT |
92 |
> |
#endif |
93 |
> |
#endif |