config.h revision bdd62c531bbdea115a3a7e71bba91c19dd319cc4
1/* src/config.h.  Generated by configure.  */
2/* src/config.h.in.  Generated from configure.ac by autoheader.  */
3
4/* Namespace for Google classes */
5#define GOOGLE_NAMESPACE ::google
6
7/* Define to 1 if you have the <assert.h> header file. */
8#define HAVE_ASSERT_H 1
9
10/* Define to 1 if you have the `calloc' function. */
11#define HAVE_CALLOC 1
12
13/* Define to 1 if you have the <dlfcn.h> header file. */
14#define HAVE_DLFCN_H 1
15
16/* Define to 1 if you have the `exit' function. */
17#define HAVE_EXIT 1
18
19/* Define to 1 if you have the `fprintf' function. */
20#define HAVE_FPRINTF 1
21
22/* Define to 1 if you have the `free' function. */
23#define HAVE_FREE 1
24
25/* Define to 1 if you have the <inttypes.h> header file. */
26#define HAVE_INTTYPES_H 1
27
28/* Define to 1 if you have the `longjmp' function. */
29#define HAVE_LONGJMP 1
30
31/* Define to 1 if you have the `malloc' function. */
32#define HAVE_MALLOC 1
33
34/* Define to 1 if you have the <malloc.h> header file. */
35#define HAVE_MALLOC_H 1
36
37/* Define to 1 if you have the `memcpy' function. */
38#define HAVE_MEMCPY 1
39
40/* Define to 1 if you have the <memory.h> header file. */
41#define HAVE_MEMORY_H 1
42
43/* Define to 1 if you have the `memset' function. */
44#define HAVE_MEMSET 1
45
46/* define if the compiler implements namespaces */
47#define HAVE_NAMESPACES 1
48
49/* Define to 1 if you have the `printf' function. */
50#define HAVE_PRINTF 1
51
52/* Define to 1 if you have the `setjmp' function. */
53#define HAVE_SETJMP 1
54
55/* Define to 1 if you have the <setjmp.h> header file. */
56#define HAVE_SETJMP_H 1
57
58/* Define to 1 if you have the `signal' function. */
59#define HAVE_SIGNAL 1
60
61/* Define to 1 if you have the <signal.h> header file. */
62#define HAVE_SIGNAL_H 1
63
64/* Define to 1 if you have the `snprintf' function. */
65#define HAVE_SNPRINTF 1
66
67/* Define to 1 if you have the <stdarg.h> header file. */
68#define HAVE_STDARG_H 1
69
70/* Define to 1 if you have the <stddef.h> header file. */
71#define HAVE_STDDEF_H 1
72
73/* Define to 1 if you have the <stdint.h> header file. */
74#define HAVE_STDINT_H 1
75
76/* Define to 1 if you have the <stdio.h> header file. */
77#define HAVE_STDIO_H 1
78
79/* Define to 1 if you have the <stdlib.h> header file. */
80#define HAVE_STDLIB_H 1
81
82/* Define to 1 if you have the `strcmp' function. */
83#define HAVE_STRCMP 1
84
85/* Define to 1 if you have the `strcpy' function. */
86#define HAVE_STRCPY 1
87
88/* Define to 1 if you have the <strings.h> header file. */
89#define HAVE_STRINGS_H 1
90
91/* Define to 1 if you have the <string.h> header file. */
92#define HAVE_STRING_H 1
93
94/* Define to 1 if you have the <sys/stat.h> header file. */
95#define HAVE_SYS_STAT_H 1
96
97/* Define to 1 if you have the <sys/types.h> header file. */
98#define HAVE_SYS_TYPES_H 1
99
100/* Define to 1 if you have the <unistd.h> header file. */
101#define HAVE_UNISTD_H 1
102
103/* Define to 1 if you have the `vsnprintf' function. */
104#define HAVE_VSNPRINTF 1
105
106/* Name of package */
107#define PACKAGE "cmockery"
108
109/* Define to the address where bug reports for this package should be sent. */
110#define PACKAGE_BUGREPORT "opensource@google.com"
111
112/* Define to the full name of this package. */
113#define PACKAGE_NAME "cmockery"
114
115/* Define to the full name and version of this package. */
116#define PACKAGE_STRING "cmockery 0.1.2"
117
118/* Define to the one symbol short name of this package. */
119#define PACKAGE_TARNAME "cmockery"
120
121/* Define to the version of this package. */
122#define PACKAGE_VERSION "0.1.2"
123
124/* Define to 1 if you have the ANSI C header files. */
125#define STDC_HEADERS 1
126
127/* the namespace where STL code like vector<> is defined */
128#define STL_NAMESPACE std
129
130/* Version number of package */
131#define VERSION "0.1.2"
132
133/* Stops putting the code inside the Google namespace */
134#define _END_GOOGLE_NAMESPACE_ }
135
136/* Puts following code inside the Google namespace */
137#define _START_GOOGLE_NAMESPACE_ namespace google {
138