-
Notifications
You must be signed in to change notification settings - Fork 0
/
aconf.h
124 lines (101 loc) · 1.83 KB
/
aconf.h
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.
*/
/* #undef A4_PAPER */
/*
* Do not allow text selection.
*/
/* #undef NO_TEXT_SELECT */
/*
* Include support for OPI comments.
*/
#define OPI_SUPPORT 0
/*
* Enable multithreading support.
*/
#define MULTITHREADED 1
/*
* Enable C++ exceptions.
*/
#define USE_EXCEPTIONS 1
/*
* Use fixed point (instead of floating point) arithmetic.
*/
#define USE_FIXEDPOINT 0
/*
* Enable support for CMYK output.
*/
#define SPLASH_CMYK 0
/*
* Enable support for DeviceN output.
*/
#define SPLASH_DEVICEN 0
/*
* Enable support for highlighted regions.
*/
/* #undef HIGHLIGHTED_REGIONS */
/*
* Full path for the system-wide xpdfrc file.
*/
/* #undef SYSTEM_XPDFRC */
/*
* Directory to use for the variable in the xpdfrc config
* file.
*/
/* #undef XPDFRC_DATADIR */
/*
* Various include files and functions.
*/
#define HAVE_MKSTEMP 1
#define HAVE_MKSTEMPS 0
#define HAVE_POPEN
#define HAVE_STD_SORT 1
#define HAVE_FSEEKO 1
#define HAVE_FSEEK64 0
#define HAVE_FSEEKI64 0
#define _FILE_OFFSET_BITS 64
#define _LARGE_FILES 1
#define _LARGEFILE_SOURCE 1
/*
* This is defined if using FreeType 2.
*/
#define HAVE_FREETYPE_H 1
/*
* This is defined if using D-Type 4.
*/
#define HAVE_DTYPE4_H 0
/*
* This is defined if using libpaper.
*/
#define HAVE_PAPER_H 0
/*
* This is defined if using libfontconfig.
*/
#define HAVE_FONTCONFIG 0
/*
* Defined if the Splash library is avaiable.
*/
#define HAVE_SPLASH 1
/*
* Defined if using lcms2.
*/
#define HAVE_LCMS 0
/*
* Defined for evaluation mode.
*/
#define EVAL_MODE 0
/*
* Defined when building the closed source XpdfReader binary.
*/
#define BUILDING_XPDFREADER 0
#endif