-
Notifications
You must be signed in to change notification settings - Fork 0
/
aconf.h.in
124 lines (101 loc) · 1.94 KB
/
aconf.h.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/*
* aconf.h
*
* This file is modified by cmake.
*
* Copyright 2002-2015 Glyph & Cog, LLC
*/
#ifndef ACONF_H
#define ACONF_H
#include <aconf2.h>
/*
* Use A4 paper size instead of Letter for PostScript output.
*/
#cmakedefine A4_PAPER
/*
* Do not allow text selection.
*/
#cmakedefine NO_TEXT_SELECT
/*
* Include support for OPI comments.
*/
#cmakedefine01 OPI_SUPPORT
/*
* Enable multithreading support.
*/
#cmakedefine01 MULTITHREADED
/*
* Enable C++ exceptions.
*/
#cmakedefine01 USE_EXCEPTIONS
/*
* Use fixed point (instead of floating point) arithmetic.
*/
#cmakedefine01 USE_FIXEDPOINT
/*
* Enable support for CMYK output.
*/
#cmakedefine01 SPLASH_CMYK
/*
* Enable support for DeviceN output.
*/
#cmakedefine01 SPLASH_DEVICEN
/*
* Enable support for highlighted regions.
*/
#cmakedefine HIGHLIGHTED_REGIONS
/*
* Full path for the system-wide xpdfrc file.
*/
@SYSTEM_XPDFRC_DEFINE@
/*
* Directory to use for the ${DATADIR} variable in the xpdfrc config
* file.
*/
@XPDFRC_DATADIR_DEFINE@
/*
* Various include files and functions.
*/
#cmakedefine01 HAVE_MKSTEMP
#cmakedefine01 HAVE_MKSTEMPS
#cmakedefine HAVE_POPEN
#cmakedefine01 HAVE_STD_SORT
#cmakedefine01 HAVE_FSEEKO
#cmakedefine01 HAVE_FSEEK64
#cmakedefine01 HAVE_FSEEKI64
#define _FILE_OFFSET_BITS 64
#define _LARGE_FILES 1
#define _LARGEFILE_SOURCE 1
/*
* This is defined if using FreeType 2.
*/
#cmakedefine01 HAVE_FREETYPE_H
/*
* This is defined if using D-Type 4.
*/
#cmakedefine01 HAVE_DTYPE4_H
/*
* This is defined if using libpaper.
*/
#cmakedefine01 HAVE_PAPER_H
/*
* This is defined if using libfontconfig.
*/
#cmakedefine01 HAVE_FONTCONFIG
/*
* Defined if the Splash library is avaiable.
*/
#cmakedefine01 HAVE_SPLASH
/*
* Defined if using lcms2.
*/
#cmakedefine01 HAVE_LCMS
/*
* Defined for evaluation mode.
*/
#cmakedefine01 EVAL_MODE
/*
* Defined when building the closed source XpdfReader binary.
*/
#cmakedefine01 BUILDING_XPDFREADER
#endif