blob: 7a23195e86d1f0312c514a8f648bcb9a9e265700 [file] [log] [blame]
Dieter Barond6c608f2012-07-15 15:27:53 +02001/* config.h. Generated from config.h.in by configure. */
2/* config.h.in. Generated from configure.ac by autoheader. */
3
4/* Define to 1 if you have the declaration of `tzname', and to 0 if you don't.
5 */
6/* #undef HAVE_DECL_TZNAME */
7
8/* Define to 1 if you have the <dlfcn.h> header file. */
9#define HAVE_DLFCN_H 1
10
11/* Define to 1 if you have the `fseeko' function. */
12#define HAVE_FSEEKO 1
13
14/* Define to 1 if you have the `ftello' function. */
15#define HAVE_FTELLO 1
16
17/* Define to 1 if you have the `getopt' function. */
18#define HAVE_GETOPT 1
19
20/* Define to 1 if the system has the type `int16_t'. */
21#define HAVE_INT16_T 1
22
23/* Define to 1 if the system has the type `int32_t'. */
24#define HAVE_INT32_T 1
25
26/* Define to 1 if the system has the type `int64_t'. */
27#define HAVE_INT64_T 1
28
29/* Define to 1 if the system has the type `int8_t'. */
30#define HAVE_INT8_T 1
31
32/* Define to 1 if you have the <inttypes.h> header file. */
33#define HAVE_INTTYPES_H 1
34
35/* Define to 1 if you have the `z' library (-lz). */
36#define HAVE_LIBZ 1
37
38/* Define to 1 if you have the <memory.h> header file. */
39#define HAVE_MEMORY_H 1
40
41/* Define to 1 if you have the `mkstemp' function. */
42#define HAVE_MKSTEMP 1
43
44/* Define to 1 if you have the `MoveFileExA' function. */
45/* #undef HAVE_MOVEFILEEXA */
46
47/* Define to 1 if you have the `open' function. */
48#define HAVE_OPEN 1
49
50/* Define to 1 if you have the `snprintf' function. */
51#define HAVE_SNPRINTF 1
52
Dieter Baronf6c057d2012-08-30 16:44:24 +020053/* Define to 1 if the system has the type `ssize_t'. */
54#define HAVE_SSIZE_T 1
55
Dieter Barond6c608f2012-07-15 15:27:53 +020056/* Define to 1 if you have the <stdint.h> header file. */
57#define HAVE_STDINT_H 1
58
59/* Define to 1 if you have the <stdlib.h> header file. */
60#define HAVE_STDLIB_H 1
61
62/* Define to 1 if you have the `strcasecmp' function. */
63#define HAVE_STRCASECMP 1
64
65/* Define to 1 if you have the `strdup' function. */
66#define HAVE_STRDUP 1
67
68/* Define to 1 if you have the <strings.h> header file. */
69#define HAVE_STRINGS_H 1
70
71/* Define to 1 if you have the <string.h> header file. */
72#define HAVE_STRING_H 1
73
74/* Define to 1 if `tm_zone' is a member of `struct tm'. */
75#define HAVE_STRUCT_TM_TM_ZONE 1
76
77/* Define to 1 if you have the <sys/stat.h> header file. */
78#define HAVE_SYS_STAT_H 1
79
80/* Define to 1 if you have the <sys/types.h> header file. */
81#define HAVE_SYS_TYPES_H 1
82
83/* Define to 1 if your `struct tm' has `tm_zone'. Deprecated, use
84 `HAVE_STRUCT_TM_TM_ZONE' instead. */
85#define HAVE_TM_ZONE 1
86
87/* Define to 1 if you don't have `tm_zone' but do have the external array
88 `tzname'. */
89/* #undef HAVE_TZNAME */
90
91/* Define to 1 if the system has the type `uint16_t'. */
92#define HAVE_UINT16_T 1
93
94/* Define to 1 if the system has the type `uint32_t'. */
95#define HAVE_UINT32_T 1
96
97/* Define to 1 if the system has the type `uint64_t'. */
98#define HAVE_UINT64_T 1
99
100/* Define to 1 if the system has the type `uint8_t'. */
101#define HAVE_UINT8_T 1
102
103/* Define to 1 if you have the <unistd.h> header file. */
104#define HAVE_UNISTD_H 1
105
Dieter Baron25c72eb2013-06-09 11:34:22 +0200106/* Define to 1 or 0, depending whether the compiler supports simple visibility
107 declarations. */
108#define HAVE_VISIBILITY 1
109
Dieter Baron989854c2013-03-25 16:40:48 +0100110/* Define to 1 if you have the `_close' function. */
111/* #undef HAVE__CLOSE */
112
113/* Define to 1 if you have the `_dup' function. */
114/* #undef HAVE__DUP */
115
116/* Define to 1 if you have the `_fdopen' function. */
117/* #undef HAVE__FDOPEN */
118
119/* Define to 1 if you have the `_fileno' function. */
120/* #undef HAVE__FILENO */
121
Dieter Barond6c608f2012-07-15 15:27:53 +0200122/* Define to 1 if you have the `_open' function. */
123/* #undef HAVE__OPEN */
124
125/* Define to 1 if you have the `_snprintf' function. */
126/* #undef HAVE__SNPRINTF */
127
Dieter Barond6c608f2012-07-15 15:27:53 +0200128/* Define to 1 if you have the `_strdup' function. */
129/* #undef HAVE__STRDUP */
130
131/* Define to 1 if you have the `_stricmp' function. */
132/* #undef HAVE__STRICMP */
133
134/* Define to the sub-directory in which libtool stores uninstalled libraries.
135 */
136#define LT_OBJDIR ".libs/"
137
138/* Define to 1 if your C compiler doesn't accept -c and -o together. */
139/* #undef NO_MINUS_C_MINUS_O */
140
141/* Name of package */
142#define PACKAGE "libzip"
143
144/* Define to the address where bug reports for this package should be sent. */
145#define PACKAGE_BUGREPORT "libzip@nih.at"
146
147/* Define to the full name of this package. */
148#define PACKAGE_NAME "libzip"
149
150/* Define to the full name and version of this package. */
Dieter Baron25c72eb2013-06-09 11:34:22 +0200151#define PACKAGE_STRING "libzip 0.11.1a"
Dieter Barond6c608f2012-07-15 15:27:53 +0200152
153/* Define to the one symbol short name of this package. */
154#define PACKAGE_TARNAME "libzip"
155
156/* Define to the home page for this package. */
157#define PACKAGE_URL ""
158
159/* Define to the version of this package. */
Dieter Baron25c72eb2013-06-09 11:34:22 +0200160#define PACKAGE_VERSION "0.11.1a"
Dieter Barond6c608f2012-07-15 15:27:53 +0200161
162/* The size of `int', as computed by sizeof. */
163#define SIZEOF_INT 4
164
165/* The size of `long', as computed by sizeof. */
Dieter Baron25c72eb2013-06-09 11:34:22 +0200166#ifndef __LP64__
Dieter Baronf631eb72013-06-09 14:14:30 +0200167#define SIZEOF_LONG 4
168#else /* __LP64__ */
169#define SIZEOF_LONG 8
170#endif /* __LP64__ */
Dieter Barond6c608f2012-07-15 15:27:53 +0200171
172/* The size of `long long', as computed by sizeof. */
173#define SIZEOF_LONG_LONG 8
174
Dieter Baronf6c057d2012-08-30 16:44:24 +0200175/* The size of `off_t', as computed by sizeof. */
176#define SIZEOF_OFF_T 8
177
Dieter Barond6c608f2012-07-15 15:27:53 +0200178/* The size of `short', as computed by sizeof. */
179#define SIZEOF_SHORT 2
180
Dieter Baronf6c057d2012-08-30 16:44:24 +0200181/* The size of `size_t', as computed by sizeof. */
Dieter Baron25c72eb2013-06-09 11:34:22 +0200182#ifndef __LP64__
Dieter Baronf631eb72013-06-09 14:14:30 +0200183#define SIZEOF_SIZE_T 4
184#else /* __LP64__ */
185#define SIZEOF_SIZE_T 8
186#endif /* __LP64__ */
Dieter Baronf6c057d2012-08-30 16:44:24 +0200187
Dieter Barond6c608f2012-07-15 15:27:53 +0200188/* Define to 1 if you have the ANSI C header files. */
189#define STDC_HEADERS 1
190
191/* Define to 1 if your <sys/time.h> declares `struct tm'. */
192/* #undef TM_IN_SYS_TIME */
193
194/* Version number of package */
Dieter Baron25c72eb2013-06-09 11:34:22 +0200195#define VERSION "0.11.1a"
196
197/* Enable large inode numbers on Mac OS X 10.5. */
198#ifndef _DARWIN_USE_64_BIT_INODE
199# define _DARWIN_USE_64_BIT_INODE 1
200#endif
201
202/* Number of bits in a file offset, on hosts where this is settable. */
203/* #undef _FILE_OFFSET_BITS */
204
205/* Define for large files, on AIX-style hosts. */
206/* #undef _LARGE_FILES */
Dieter Baronf6c057d2012-08-30 16:44:24 +0200207
208
209#ifndef HAVE_SSIZE_T
210# if SIZEOF_SIZE_T == SIZEOF_INT
Dieter Baron989854c2013-03-25 16:40:48 +0100211typedef int ssize_t;
Dieter Baronf6c057d2012-08-30 16:44:24 +0200212# elif SIZEOF_SIZE_T == SIZEOF_LONG
Dieter Baron989854c2013-03-25 16:40:48 +0100213typedef long ssize_t;
Dieter Baronf6c057d2012-08-30 16:44:24 +0200214# elif SIZEOF_SIZE_T == SIZEOF_LONG_LONG
Dieter Baron989854c2013-03-25 16:40:48 +0100215typedef long long ssize_t;
216# else
Dieter Baronf6c057d2012-08-30 16:44:24 +0200217#error no suitable type for ssize_t found
218# endif
219#endif
220