blob: 79219e4cd58a5bb84685a68b5f4d4cdbd5a8ad52 [file] [log] [blame]
Joe Onorato960c2b52016-10-04 12:29:08 -07001/* config.h. Generated from config.h.in by configure. */
2/* config.h.in. Generated from configure.ac by autoheader. */
3
4/* the name of <hash_map> */
5#define HASH_MAP_CLASS unordered_map
6
7/* the location of <unordered_map> or <hash_map> */
Colin Cross1467d8e2019-08-12 14:27:30 -07008#define HASH_MAP_H <unordered_map>
Joe Onorato960c2b52016-10-04 12:29:08 -07009
10/* the namespace of hash_map/hash_set */
Colin Cross1467d8e2019-08-12 14:27:30 -070011#define HASH_NAMESPACE std
Joe Onorato960c2b52016-10-04 12:29:08 -070012
13/* the name of <hash_set> */
14#define HASH_SET_CLASS unordered_set
15
16/* the location of <unordered_set> or <hash_set> */
Colin Cross1467d8e2019-08-12 14:27:30 -070017#define HASH_SET_H <unordered_set>
18
19/* define if the compiler supports basic C++11 syntax */
20#define HAVE_CXX11 1
Joe Onorato960c2b52016-10-04 12:29:08 -070021
22/* Define to 1 if you have the <dlfcn.h> header file. */
23#define HAVE_DLFCN_H 1
24
25/* Define to 1 if you have the <fcntl.h> header file. */
26#define HAVE_FCNTL_H 1
27
28/* Define to 1 if you have the `ftruncate' function. */
29#define HAVE_FTRUNCATE 1
30
31/* define if the compiler has hash_map */
32#define HAVE_HASH_MAP 1
33
34/* define if the compiler has hash_set */
35#define HAVE_HASH_SET 1
36
37/* Define to 1 if you have the <inttypes.h> header file. */
38#define HAVE_INTTYPES_H 1
39
40/* Define to 1 if you have the <limits.h> header file. */
41#define HAVE_LIMITS_H 1
42
43/* Define to 1 if you have the <memory.h> header file. */
44#define HAVE_MEMORY_H 1
45
46/* Define to 1 if you have the `memset' function. */
47#define HAVE_MEMSET 1
48
49/* Define to 1 if you have the `mkdir' function. */
50#define HAVE_MKDIR 1
51
52/* Define if you have POSIX threads libraries and header files. */
53#define HAVE_PTHREAD 1
54
Colin Cross1467d8e2019-08-12 14:27:30 -070055/* Have PTHREAD_PRIO_INHERIT. */
56#define HAVE_PTHREAD_PRIO_INHERIT 1
57
Joe Onorato960c2b52016-10-04 12:29:08 -070058/* Define to 1 if you have the <stdint.h> header file. */
59#define HAVE_STDINT_H 1
60
61/* Define to 1 if you have the <stdlib.h> header file. */
62#define HAVE_STDLIB_H 1
63
64/* Define to 1 if you have the `strchr' function. */
65#define HAVE_STRCHR 1
66
67/* Define to 1 if you have the `strerror' function. */
68#define HAVE_STRERROR 1
69
70/* Define to 1 if you have the <strings.h> header file. */
71#define HAVE_STRINGS_H 1
72
73/* Define to 1 if you have the <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 you have the <sys/stat.h> header file. */
80#define HAVE_SYS_STAT_H 1
81
82/* Define to 1 if you have the <sys/types.h> header file. */
83#define HAVE_SYS_TYPES_H 1
84
85/* Define to 1 if you have the <unistd.h> header file. */
86#define HAVE_UNISTD_H 1
87
88/* Enable classes using zlib compression. */
89#define HAVE_ZLIB 1
90
Colin Cross1467d8e2019-08-12 14:27:30 -070091/* Define to the sub-directory where libtool stores uninstalled libraries. */
Joe Onorato960c2b52016-10-04 12:29:08 -070092#define LT_OBJDIR ".libs/"
93
94/* Name of package */
95#define PACKAGE "protobuf"
96
97/* Define to the address where bug reports for this package should be sent. */
98#define PACKAGE_BUGREPORT "[email protected]"
99
100/* Define to the full name of this package. */
101#define PACKAGE_NAME "Protocol Buffers"
102
103/* Define to the full name and version of this package. */
Colin Cross1467d8e2019-08-12 14:27:30 -0700104#define PACKAGE_STRING "Protocol Buffers 3.9.1"
Joe Onorato960c2b52016-10-04 12:29:08 -0700105
106/* Define to the one symbol short name of this package. */
107#define PACKAGE_TARNAME "protobuf"
108
109/* Define to the home page for this package. */
110#define PACKAGE_URL ""
111
112/* Define to the version of this package. */
Colin Cross1467d8e2019-08-12 14:27:30 -0700113#define PACKAGE_VERSION "3.9.1"
Joe Onorato960c2b52016-10-04 12:29:08 -0700114
115/* Define to necessary symbol if this constant uses a non-standard name on
116 your system. */
117/* #undef PTHREAD_CREATE_JOINABLE */
118
Joe Onorato960c2b52016-10-04 12:29:08 -0700119/* Define to 1 if you have the ANSI C header files. */
120#define STDC_HEADERS 1
121
122/* Enable extensions on AIX 3, Interix. */
123#ifndef _ALL_SOURCE
124# define _ALL_SOURCE 1
125#endif
126/* Enable GNU extensions on systems that have them. */
127#ifndef _GNU_SOURCE
128# define _GNU_SOURCE 1
129#endif
130/* Enable threading extensions on Solaris. */
131#ifndef _POSIX_PTHREAD_SEMANTICS
132# define _POSIX_PTHREAD_SEMANTICS 1
133#endif
134/* Enable extensions on HP NonStop. */
135#ifndef _TANDEM_SOURCE
136# define _TANDEM_SOURCE 1
137#endif
138/* Enable general extensions on Solaris. */
139#ifndef __EXTENSIONS__
140# define __EXTENSIONS__ 1
141#endif
142
143
144/* Version number of package */
Colin Cross1467d8e2019-08-12 14:27:30 -0700145#define VERSION "3.9.1"
Joe Onorato960c2b52016-10-04 12:29:08 -0700146
147/* Define to 1 if on MINIX. */
148/* #undef _MINIX */
149
150/* Define to 2 if the system does not provide POSIX.1 features except with
151 this defined. */
152/* #undef _POSIX_1_SOURCE */
153
154/* Define to 1 if you need to in order for `stat' and other things to work. */
155/* #undef _POSIX_SOURCE */