~ubuntu-branches/ubuntu/wily/scribus/wily-proposed

« back to all changes in this revision

Viewing changes to win32/vc9/win-config.h

  • Committer: Package Import Robot
  • Author(s): Mattia Rizzolo
  • Date: 2014-05-11 16:29:44 UTC
  • mfrom: (1.1.9)
  • Revision ID: package-import@ubuntu.com-20140511162944-y6jnp08arsfefy26
Tags: 1.4.2.dfsg.1+r18267-0.1
* Non-maintainer upload.
* Repack the source to remove some non-free contents. (Closes: #741666)
* debian/README.source: update to reflect the above changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef WINCONFIG_H
2
 
#define WINCONFIG_H
3
 
 
4
 
/* Version number of package */
5
 
#define VERSION "1.4.3svn"
6
 
 
7
 
/* Are we building win32 native version. */
8
 
#define BUILD_WINDOWS_VERSION 1
9
 
 
10
 
/* Are we using native api for dll management */
11
 
#define DLL_USE_NATIVE_API 1
12
 
 
13
 
/* Are we building an executable to be included in MacOS/X .app bundle? */
14
 
#undef BUILD_MAC_BUNDLE
15
 
 
16
 
/* ColorManagementInclude */
17
 
#define CMS_INC "lcms2.h"
18
 
 
19
 
/* ColorManagement (LittleCms) */
20
 
#define HAVE_CMS 1
21
 
 
22
 
/* ColorManagement (LittleCms 2.1) */
23
 
#define HAVE_LCMS21 1
24
 
 
25
 
/* ColorManagement (Windows) */
26
 
#define HAVE_ICM 1
27
 
 
28
 
/* Can we use unicode functions (Windows) */
29
 
#define HAVE_UNICODE 1
30
 
 
31
 
/* Cups */
32
 
#undef HAVE_CUPS
33
 
 
34
 
/* Define to 1 if you have the <dlfcn.h> header file. */
35
 
#undef HAVE_DLFCN_H
36
 
 
37
 
/* Defines if your system has the libfontconfig library */
38
 
#undef HAVE_FONTCONFIG
39
 
 
40
 
/* Defines if your system has the libfreetype library */
41
 
#define HAVE_FREETYPE 1
42
 
 
43
 
/* Defines if your system has the cairo library */
44
 
/*#define HAVE_CAIRO 1*/
45
 
 
46
 
/* Define if you have libjpeg */
47
 
#define HAVE_LIBJPEG 1
48
 
 
49
 
/* Define if you have libpng */
50
 
#define HAVE_LIBPNG 1
51
 
 
52
 
/* Define if you have libz */
53
 
#define HAVE_LIBZ 1
54
 
 
55
 
/* Define to 1 if you have the <memory.h> header file. */
56
 
#define HAVE_MEMORY_H 1
57
 
 
58
 
/* Define if your system needs _NSGetEnviron to set up the environment */
59
 
#undef HAVE_NSGETENVIRON
60
 
 
61
 
/* Define if you have the development files for python */
62
 
#define HAVE_PYTHON 1
63
 
 
64
 
/* Define if you have the development files for podofo */
65
 
#define HAVE_PODOFO 1
66
 
 
67
 
/* Python */
68
 
#undef HAVE_PYTHON_23
69
 
 
70
 
/* Define if you have the res_init function */
71
 
#undef HAVE_RES_INIT
72
 
 
73
 
/* Define to 1 if you have the `snprintf' function. */
74
 
#undef HAVE_SNPRINTF
75
 
#ifdef _MSC_VER
76
 
#define HAVE_SNPRINTF 1
77
 
#define snprintf(a, b, c, d) _snprintf(a, b, c, d)
78
 
#endif
79
 
 
80
 
/* Define to 1 if you have the <stdint.h> header file. */
81
 
#undef HAVE_STDINT_H
82
 
 
83
 
/* Define to 1 if you have the <stdlib.h> header file. */
84
 
// #define HAVE_STDLIB_H 1
85
 
 
86
 
/* Define to 1 if you have the <sys/bitypes.h> header file. */
87
 
#undef HAVE_SYS_BITYPES_H
88
 
 
89
 
/* Define to 1 if you have the <sys/stat.h> header file. */
90
 
#define HAVE_SYS_STAT_H 1
91
 
 
92
 
/* Define to 1 if you have the <sys/types.h> header file. */
93
 
#define HAVE_SYS_TYPES_H 1
94
 
 
95
 
/* Tifflib */
96
 
#define HAVE_TIFF 1
97
 
 
98
 
/* Define to 1 if you have the <unistd.h> header file. */
99
 
#undef HAVE_UNISTD_H
100
 
 
101
 
/* Define to 1 if you have the `vsnprintf' function. */
102
 
#define HAVE_VSNPRINTF 1
103
 
 
104
 
/* Defines if your system has the libxml2 library */
105
 
#define HAVE_XML 1
106
 
 
107
 
/* Defines if your system has the libxml2 library6 */
108
 
#define HAVE_XML26 1
109
 
 
110
 
/* Define to 1 if you have the ANSI C header files. */
111
 
#define STDC_HEADERS 1
112
 
 
113
 
/* Define to 1 if your processor stores words with the most significant byte
114
 
   first (like Motorola and SPARC, unlike Intel and VAX). */
115
 
#undef WORDS_BIGENDIAN
116
 
 
117
 
#define HAVE_CONFIG_H 1
118
 
#define WIN32_LEAN_AND_MEAN
119
 
 
120
 
typedef unsigned char boolean;
121
 
#define HAVE_BOOLEAN
122
 
 
123
 
#endif