Sierra Toolkit  Version of the Day
config_google.h
1 /* src/config.h. Generated from config.h.in 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 /* the location of the header defining hash functions */
8 //CB20_05_11#define HASH_FUN_H <tr1/functional>
9 
10 /* the location of <unordered_map> or <hash_map> */
11 #define HASH_MAP_H <tr1/unordered_map>
12 
13 /* the namespace of the hash<> function */
14 #define HASH_NAMESPACE std::tr1
15 
16 /* the location of <unordered_set> or <hash_set> */
17 #define HASH_SET_H <tr1/unordered_set>
18 
19 /* Define to 1 if you have the <google/malloc_extension.h> header file. */
20 /* #undef HAVE_GOOGLE_MALLOC_EXTENSION_H */
21 
22 /* define if the compiler has hash_map */
23 #define HAVE_HASH_MAP 1
24 
25 /* define if the compiler has hash_set */
26 #define HAVE_HASH_SET 1
27 
28 /* Define to 1 if you have the <inttypes.h> header file. */
29 #define HAVE_INTTYPES_H 1
30 
31 /* Define to 1 if the system has the type `long long'. */
32 #define HAVE_LONG_LONG 1
33 
34 /* Define to 1 if you have the `memcpy' function. */
35 #define HAVE_MEMCPY 1
36 
37 /* Define to 1 if you have the `memmove' function. */
38 #define HAVE_MEMMOVE 1
39 
40 /* Define to 1 if you have the <memory.h> header file. */
41 #define HAVE_MEMORY_H 1
42 
43 /* define if the compiler implements namespaces */
44 //CB 20_05_11#define HAVE_NAMESPACES 1
45 
46 /* Define if you have POSIX threads libraries and header files. */
47 /* #undef HAVE_PTHREAD */
48 
49 /* Define to 1 if you have the <stdint.h> header file. */
50 #define HAVE_STDINT_H 1
51 
52 /* Define to 1 if you have the <stdlib.h> header file. */
53 #define HAVE_STDLIB_H 1
54 
55 /* Define to 1 if you have the <strings.h> header file. */
56 #define HAVE_STRINGS_H 1
57 
58 /* Define to 1 if you have the <string.h> header file. */
59 #define HAVE_STRING_H 1
60 
61 /* Define to 1 if you have the <sys/resource.h> header file. */
62 #define HAVE_SYS_RESOURCE_H 1
63 
64 /* Define to 1 if you have the <sys/stat.h> header file. */
65 #define HAVE_SYS_STAT_H 1
66 
67 /* Define to 1 if you have the <sys/time.h> header file. */
68 #define HAVE_SYS_TIME_H 1
69 
70 /* Define to 1 if you have the <sys/types.h> header file. */
71 #define HAVE_SYS_TYPES_H 1
72 
73 /* Define to 1 if you have the <sys/utsname.h> header file. */
74 #define HAVE_SYS_UTSNAME_H 1
75 
76 /* Define to 1 if the system has the type `uint16_t'. */
77 #define HAVE_UINT16_T 1
78 
79 /* Define to 1 if you have the <unistd.h> header file. */
80 #define HAVE_UNISTD_H 1
81 
82 /* define if the compiler supports unordered_{map,set} */
83 #define HAVE_UNORDERED_MAP 1
84 
85 /* Define to 1 if the system has the type `u_int16_t'. */
86 #define HAVE_U_INT16_T 1
87 
88 /* Define to 1 if the system has the type `__uint16'. */
89 /* #undef HAVE___UINT16 */
90 
91 /* Name of package */
92 #define PACKAGE "sparsehash"
93 
94 /* Define to the address where bug reports for this package should be sent. */
95 #define PACKAGE_BUGREPORT "opensource@google.com"
96 
97 /* Define to the full name of this package. */
98 #define PACKAGE_NAME "sparsehash"
99 
100 /* Define to the full name and version of this package. */
101 #define PACKAGE_STRING "sparsehash 1.10"
102 
103 /* Define to the one symbol short name of this package. */
104 #define PACKAGE_TARNAME "sparsehash"
105 
106 /* Define to the home page for this package. */
107 #define PACKAGE_URL ""
108 
109 /* Define to the version of this package. */
110 #define PACKAGE_VERSION "1.10"
111 
112 /* Define to necessary symbol if this constant uses a non-standard name on
113  your system. */
114 /* #undef PTHREAD_CREATE_JOINABLE */
115 
116 /* The system-provided hash function including the namespace. */
117 #define SPARSEHASH_HASH HASH_NAMESPACE::hash
118 
119 /* The system-provided hash function, in namespace HASH_NAMESPACE. */
120 #define SPARSEHASH_HASH_NO_NAMESPACE hash
121 
122 /* Define to 1 if you have the ANSI C header files. */
123 #define STDC_HEADERS 1
124 
125 /* the namespace where STL code like vector<> is defined */
126 #define STL_NAMESPACE std
127 
128 /* Version number of package */
129 #define VERSION "1.10"
130 
131 /* Stops putting the code inside the Google namespace */
132 #define _END_GOOGLE_NAMESPACE_ }
133 
134 /* Puts following code inside the Google namespace */
135 #define _START_GOOGLE_NAMESPACE_ namespace google {