| 1 |
gezelter |
1535 |
#define OPENMD_VERSION_MAJOR 2 |
| 2 |
|
|
#define OPENMD_VERSION_MINOR 0 |
| 3 |
gezelter |
1461 |
#define OPENMD_VERSION_TINY 0 |
| 4 |
gezelter |
1226 |
#define MK_STR(s) # s |
| 5 |
|
|
#define STR_DEFINE(t, s) t = MK_STR(s) |
| 6 |
gezelter |
752 |
|
| 7 |
gezelter |
1390 |
/* Is defined if OpenMD should be compiled with single precision arithmetic. */ |
| 8 |
gezelter |
1226 |
#undef SINGLE_PRECISION |
| 9 |
|
|
|
| 10 |
|
|
/* Is defined if the qhull library is available. */ |
| 11 |
|
|
#undef HAVE_QHULL |
| 12 |
|
|
|
| 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 |
gezelter |
860 |
/* Define to 1 if you have the `strcasecmp' function. */ |
| 29 |
|
|
#undef HAVE_STRCASECMP |
| 30 |
|
|
|
| 31 |
gezelter |
1226 |
/* Define to 1 if you have the `stricmp' function. */ |
| 32 |
|
|
#undef HAVE_STRICMP |
| 33 |
|
|
|
| 34 |
gezelter |
752 |
/* Define to 1 if you have the `strncasecmp' function. */ |
| 35 |
|
|
#undef HAVE_STRNCASECMP |
| 36 |
|
|
|
| 37 |
gezelter |
1226 |
/* Define to 1 if you have the `strnicmp' function. */ |
| 38 |
|
|
#undef HAVE_STRNICMP |
| 39 |
|
|
|
| 40 |
gezelter |
752 |
/* 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 |
gezelter |
1226 |
/* needed by DEC/Compaq/HP cxx to activate ANSI standard iostream. */ |
| 56 |
|
|
#undef __USE_STD_IOSTREAM |
| 57 |
|
|
|
| 58 |
gezelter |
752 |
/* Define to empty if `const' does not conform to ANSI C. */ |
| 59 |
|
|
#undef const |
| 60 |
|
|
|
| 61 |
gezelter |
1226 |
/* Code compiled in debug mode */ |
| 62 |
|
|
#undef debug |
| 63 |
|
|
|
| 64 |
gezelter |
752 |
/* 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 |
gezelter |
860 |
|
| 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 |
gezelter |
1225 |
/* Define to `unsigned int' if <sys/types.h> does not define. */ |
| 77 |
gezelter |
860 |
#undef size_t |
| 78 |
gezelter |
1226 |
|
| 79 |
|
|
#ifdef SINGLE_PRECISION |
| 80 |
|
|
typedef float RealType; |
| 81 |
|
|
#ifdef IS_MPI |
| 82 |
|
|
#define MPI_REALTYPE MPI_FLOAT |
| 83 |
gezelter |
1351 |
#define REALTYPE FLOAT |
| 84 |
|
|
#define REALTYPE_INT FLOAT_INT |
| 85 |
gezelter |
1226 |
#endif |
| 86 |
|
|
#else |
| 87 |
|
|
typedef double RealType; |
| 88 |
|
|
#ifdef IS_MPI |
| 89 |
|
|
#define MPI_REALTYPE MPI_DOUBLE |
| 90 |
gezelter |
1351 |
#define REALTYPE DOUBLE |
| 91 |
|
|
#define REALTYPE_INT DOUBLE_INT |
| 92 |
gezelter |
1226 |
#endif |
| 93 |
|
|
#endif |