QMCPACK
config.h
Go to the documentation of this file.
1 //////////////////////////////////////////////////////////////////////////////////////
2 // This file is distributed under the University of Illinois/NCSA Open Source License.
3 // See LICENSE file in top directory for details.
4 //
5 // Copyright (c) 2016 Jeongnim Kim and QMCPACK developers.
6 //
7 // File developed by: Paul R. C. Kent, kentpr@ornl.gov, Oak Ridge National Laboratory
8 // Mark A. Berrill, berrillma@ornl.gov, Oak Ridge National Laboratory
9 //
10 // File created by: Paul R. C. Kent, kentpr@ornl.gov, Oak Ridge National Laboratory
11 //////////////////////////////////////////////////////////////////////////////////////
12 
13 
14 /* src/config.h. Generated from config.h.in by configure. */
15 /* src/config.h.in. Generated from configure.ac by autoheader. */
16 
17 /* Define to dummy `main' function (if any) required to link to the Fortran
18  libraries. */
19 /* #undef F77_DUMMY_MAIN */
20 
21 /* Define to a macro mangling the given C identifier (in lower and upper
22  case), which must not contain underscores, for linking with Fortran. */
23 #define F77_FUNC(name, NAME) name##_
24 
25 /* As F77_FUNC, but for C identifiers containing underscores. */
26 #define F77_FUNC_(name, NAME) name##_
27 
28 /* Define if F77 and FC dummy `main' functions are identical. */
29 /* #undef FC_DUMMY_MAIN_EQ_F77 */
30 
31 /* Define to 1 if you have the `clock_gettime' function. */
32 /* #undef HAVE_CLOCK_GETTIME */
33 
34 /* libcommon is available */
35 #define HAVE_COMMON 1
36 
37 /* Compile with CUDA extensions */
38 /* #undef HAVE_CUDA */
39 
40 /* Define to 1 if you have the `floor' function. */
41 #define HAVE_FLOOR 1
42 
43 /* Define to 1 if you have the `gle' library (-lgle). */
44 /* #undef HAVE_LIBGLE */
45 
46 /* Define to 1 if you have the `glut' library (-lglut). */
47 /* #undef HAVE_LIBGLUT */
48 
49 /* Define to 1 if you have the `m' library (-lm). */
50 #define HAVE_LIBM 1
51 
52 /* Define if OpenMP is enabled */
53 #define HAVE_OPENMP 1
54 
55 /* Define to 1 if you have the `pow' function. */
56 #define HAVE_POW 1
57 
58 /* Define to 1 if you have the `sqrt' function. */
59 #define HAVE_SQRT 1
60 
61 /* Define to 1 if stdbool.h conforms to C99. */
62 #define HAVE_STDBOOL_H 1
63 
64 /* Define to 1 if you have the <stdint.h> header file. */
65 #define HAVE_STDINT_H 1
66 
67 /* Define to 1 if you have the <stdlib.h> header file. */
68 #define HAVE_STDLIB_H 1
69 
70 /* Define to 1 if you have the <std::strings.h> header file. */
71 #define HAVE_STRINGS_H 1
72 
73 /* Define to 1 if you have the <std::string.h> header file. */
74 #define HAVE_STRING_H 1
75 
76 /* Define to 1 if you have the `strtol' function. */
77 #define HAVE_STRTOL 1
78 
79 /* Define to 1 if the system has the type `_Bool'. */
80 #define HAVE__BOOL 1
81 
82 /* Define to the sub-directory in which libtool stores uninstalled libraries.
83  */
84 #define LT_OBJDIR ".libs/"
85 
86 /* Name of package */
87 #define PACKAGE "wfconv"
88 
89 /* Define to the address where bug reports for this package should be sent. */
90 #define PACKAGE_BUGREPORT "kesler@ciw.edu"
91 
92 /* Define to the full name of this package. */
93 #define PACKAGE_NAME "wfconv"
94 
95 /* Define to the full name and version of this package. */
96 #define PACKAGE_STRING "wfconv 0.5"
97 
98 /* Define to the one symbol short name of this package. */
99 #define PACKAGE_TARNAME "wfconvert"
100 
101 /* Define to the home page for this package. */
102 #define PACKAGE_URL ""
103 
104 /* Define to the version of this package. */
105 #define PACKAGE_VERSION "0.5"
106 
107 /* Define to 1 if you have the ANSI C header files. */
108 #define STDC_HEADERS 1
109 
110 /* Version number of package */
111 #define VERSION "0.5"
112 
113 /* Define to empty if `const' does not conform to ANSI C. */
114 /* #undef const */
115 
116 /* Define to `__inline__' or `__inline' if that's what the C compiler
117  calls it, or to nothing if 'inline' is not supported under any name. */
118 #ifndef __cplusplus
119 /* #undef inline */
120 #endif
121 
122 /* Define to the equivalent of the C99 'restrict' keyword, or to
123  nothing if this is not supported. Do not define if restrict is
124  supported directly. */
125 /* #define restrict __restrict */
126 /* Work around a bug in Sun CPlusPlus: it does not support _Restrict or
127  __restrict__, even though the corresponding Sun C compiler ends up with
128  "#define restrict _Restrict" or "#define restrict __restrict__" in the
129  previous line. Perhaps some future version of Sun C++ will work with
130  restrict; if so, hopefully it defines __RESTRICT like Sun C does. */
131 #if defined __SUNPRO_CC && !defined __RESTRICT
132 #define _Restrict
133 #define __restrict__
134 #endif
135 
136 /* Define to `unsigned int' if <sys/types.h> does not define. */
137 /* #undef size_t */