-
Notifications
You must be signed in to change notification settings - Fork 17
/
INSTALL
196 lines (134 loc) · 5.19 KB
/
INSTALL
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
Xpdf
====
version 3.04
2014-may-28
The Xpdf software and documentation are
copyright 1996-2014 Glyph & Cog, LLC.
Email: [email protected]
WWW: http://www.foolabs.com/xpdf/
Compiling xpdf
--------------
Xpdf is written in C++ (with a little bit of C). It should work with
any ANSI-compliant C++ and C compilers. The systems and compilers
it's been tested with are listed on the xpdf web page.
Xpdf requires the Motif (or Lesstif) toolkit.
The following notes give specific instructions for compiling on
different systems.
**************
*** UNIX ***
**************
* Install FreeType 2 (this is required). WARNING: You must have
version 2.0.5 or newer. Some older versions of XFree86 ship with an
older version of FreeType, which means you'll need to explicitly set
include and library paths to get the correct version:
--with-freetype2-library=PATH
--with-freetype2-includes=PATH
* If you have Motif (or Lesstif) installed in a non-standard place,
you can use the following options to tell configure where to find
it:
--with-Xm-library=PATH
--with-Xm-includes=PATH
* Run the configure script:
./configure
This should produce a set of makefiles customized for your system.
The configure script accepts the following options (in addition to
the usual things accepted by autoconf configure scripts):
--prefix=PREFIX
Changes the directory where xpdf is installed. The default is
/usr/local.
--enable-a4-paper
Switches the default paper size for PostScript output (xpdf
and pdftops) to A4. The default is Letter size.
--enable-no-text-select
With this option, xpdf will not copy text. (This is only
useful on closed systems where the user can't get at the PDF
file directly.)
--enable-opi
Enables support for generation of OPI (Open Prepress
Interface) comments with pdftops.
--sysconfdir=DIR
Look for the system-wide xpdfrc config file in this directory.
The default is PREFIX/etc.
--with-appdef-dir=DIR
Use the specified app-defaults directory. The default is
/usr/lib/X11/app-defaults.
If you need to pass specific options to the C and/or C++ compiler,
you can set the CFLAGS and/or CXXFLAGS environment variables before
running the configure script. Any options given that way will be
added to the CFLAGS/CXXFLAGS used by all of the Xpdf makefiles.
* Type 'make'. This should build the executables:
xpdf/xpdf
xpdf/pdftops
xpdf/pdftotext
xpdf/pdfinfo
xpdf/pdffonts
xpdf/pdfdetach
xpdf/pdftoppm
xpdf/pdfimages
* If desired, type 'make install' to install the binaries and man
pages.
The old Makefile.config and Makefiles are no longer provided or
supported. If you really want to manually configure Xpdf (which is
not recommended), the files that need to be created are aconf.h,
Makefile, goo/Makefile, fofi/Makefile, splash/Makefile, and
xpdf/Makefile, all of which are generated from the corresponding '.in'
files.
If you want to run a quick test, there is a tiny PDF file included
with xpdf, as misc/hello.pdf .
**************
*** OS/2 ***
**************
Xpdf is known to run under OS/2 with the EMX runtime environment and
XFree86. Using a proper autoconf port you can generate a valid
configure script version.
***************
*** Win32 ***
***************
The non-X programs (pdftops, pdftotext, pdfinfo, pdffonts, pdfdetach,
pdfimages, and pdftoppm) will compile with both gcc (from cygwin),
djgpp (the Delorie port of gcc) and Microsoft Visual C++.
With cygwin, the build procedure is the same as for Unix:
* Open a shell.
* ./configure
* make
* make install
It is also possible to build the Xpdf viewer with the cygwin XFree86
port (thanks to Michael A. Richmond for these instructions):
* make sure you have the lesstif, XFree86-base, and XFree86-prog
cygwin packages installed (all from the "XFree86" category)
* to build xpdf:
- cd xpdf-x.yy
- ./configure
--with-freetype2-library=/usr/lib
--with-freetype2-includes=/usr/include/freetype2
--with-Xm-library=/usr/lib
--with-Xm-includes=/usr/include
(all on one line)
- make
(this should build xpdf.exe, in addition to the command line
utilities)
With djgpp:
* Open a DOS window.
* ./dj_make
* djgpp is a DOS/Windows port of gcc, available from
http://www.delorie.com/
With djgpp, for DOS 6 (instead of Win32):
* ./dj_make
* cd xpdf
* strip pdftops.exe
* exe2coff pdftops.exe
* copy /B c:\djgpp\bin\cwsdstub.exe+pdftops pdftops.exe
* upx pdftops.exe
- if you want compressed executables
* and similarly for the other executables
* cwsdstub.exe comes from djgpp/v2misc/csdpmi5b.zip on any of the
djgpp ftp mirrors; exe2coff is part of the standard djgpp install
* upx comes from http://upx.sourceforge.net/
With the Microsoft tools:
* Open a DOS window.
* Type "cl". If you get the message "Bad command or file name", you
must run VCVARS32.BAT. (The location of this BAT file can be
determined with Explorer.)
* Type "ms_make"
The dj_make and ms_make scripts don't build pdftoppm -- you'll need to
install FreeType 2 before you can compile pdftoppm.