1 #ifndef WINCONFIG_H
2 #define WINCONFIG_H
3 
4 /* Version number of package */
5 #define VERSION "1.5.7"
6 
7 /* Are we building an executable to be included in MacOS/X .app bundle? */
8 #undef BUILD_MAC_BUNDLE
9 
10 /* Are we building win32 native version. */
11 #define BUILD_WINDOWS_VERSION 1
12 
13 /* Are we using native api for dll management */
14 #define DLL_USE_NATIVE_API 1
15 
16 /* Defines if your system has the boost libraries */
17 #define HAVE_BOOST 1
18 
19 /* Defines if your system has the cairo library */
20 #define HAVE_CAIRO 1
21 
22 /* Cups */
23 #undef HAVE_CUPS
24 
25 /* Define to 1 if you have the <dlfcn.h> header file. */
26 #undef HAVE_DLFCN_H
27 
28 /* Defines if your system has the libfontconfig library */
29 #undef HAVE_FONTCONFIG
30 
31 /* Defines if your system has the harfbuzz-subset library */
32 #define HAVE_HARFBUZZ_SUBSET 1
33 
34 /* ColorManagement (Windows) */
35 #define HAVE_ICM 1
36 
37 /* ColorManagement (LittleCms2) */
38 #define HAVE_LCMS2 1
39 
40 /* Define if you have libz */
41 #define HAVE_LIBZ 1
42 
43 /* Define if you have the development files for podofo */
44 #define HAVE_PODOFO 1
45 
46 /* Define if you have the development files for podofo */
47 #define HAVE_POPPLER 1
48 
49 /* Define if you have the development files for python */
50 #define HAVE_PYTHON 1
51 
52 /* Define if you have the development files for librevenge */
53 #define HAVE_REVENGE 1
54 
55 /* Define to 1 if you have the `snprintf' function. */
56 #define HAVE_SNPRINTF 1
57 #if defined(_MSC_VER) && (_MSC_VER < 1900)
58 #define snprintf(a, b, c, d) _snprintf(a, b, c, d)
59 #endif
60 
61 /* Define to 1 if you have the <stdint.h> header file. */
62 #undef HAVE_STDINT_H
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/types.h> header file. */
68 #define HAVE_SYS_TYPES_H 1
69 
70 /* Tifflib */
71 #define HAVE_TIFF 1
72 
73 /* Can we use unicode functions (Windows) */
74 #define HAVE_UNICODE 1
75 
76 /* Define to 1 if you have the <unistd.h> header file. */
77 #undef HAVE_UNISTD_H
78 
79 /* Define to 1 if you have the `vsnprintf' function. */
80 #define HAVE_VSNPRINTF 1
81 
82 /* Defines if your system has the libxml2 library */
83 #define HAVE_XML 1
84 
85 /* Defines if your system has the libxml2 library6 */
86 #define HAVE_XML26 1
87 
88 /* Define to 1 if you have the ANSI C header files. */
89 #define STDC_HEADERS 1
90 
91 /* Define to 1 if your processor stores words with the most significant byte
92    first (like Motorola and SPARC, unlike Intel and VAX). */
93 #undef WORDS_BIGENDIAN
94 
95 #define HAVE_CONFIG_H 1
96 #define WIN32_LEAN_AND_MEAN
97 
98 typedef unsigned char boolean;
99 #define HAVE_BOOLEAN
100 
101 #endif
102