summaryrefslogtreecommitdiff
path: root/win32/sablot/INSTALL
blob: d382aa66c2a03750ad42bb0bf1676740c67facca (plain)
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
This file describes the installation procedure of Sablotron. To know

more on Sablotron, please read the README file in the same directory

as this file.



To get more info on installing on *Windows*, please read

the INSTALL_WIN file.



For specific information on how to build Sablotron with JavaScript

engine (to enable extensions) see the README_JS file.



1. Intro

2. Building

3. Preinstalled Expat

4. Binary distributions

5. Environment

6. Documentation

7. More info





1. Intro

========================================



Sablotron is based on Expat XML parser.



There is a significant change of how Expat is used since version

0.50. Sablotron _never_ looks for Expat under its own source tree, but

it supposes, that you have installed Expat library (1.95.1 or later)

in your system.



To get Expat, visit



http://sourceforge.net/projects/expat/



and download/install source/binary package.



Sablotron should be able to find and link older expat libraries

(libxmlparse, libxmltok), but this feature is not tested and is

deprecated.





2. Building (sources)

========================================



If you have downloaded the binary distribution, you can skip reading this

section and go to the Environment section.



Sablotron compiles e.g. on the following platforms:



- Linux (RH 5.2 - 7.0, gcc 2.95.2 or later)

- Windows (NT 4.0, 9x, 2000, VC++ 4.2/6.0)

- Solaris (Solaris 2.5.1, 2.6, 7, gcc 2.91.57)

- FreeBSD (FreeBSD 3.4, 4.1)

- OpenBSD (OpenBSD 2.8 beta)

- HP-UX

- Irix

- MacOS X



If you need any other port, please contact us.



We use GNU autoconf since the version 0.41. So the following steps

should work on any UNIX platform:



  ./configure

  make

  make install (may require the root privileges)



These switches can be passed to ./configure



  --enable-javascript

	enables JS extension functions

  --enable-perlconnect

	required when installed with Charlie application framework

  --enable-debugger

	enables XSLT debugger

  --with-readline

	links the debugger with the readline library to make its command-line

	interface more comfortable (SABLOT_GPL=1 must be exported)



These are some other useful switches you may want to pass to the configure

script:



  --help

	display all switches available

  --prefix='path where to install'

	specifies the installation path (/usr/local on most systems)

  --enable-warnings

	force compilation with the -Wall switch (for curious people)

  --disable-adding-meta

	disables adding of the META tag (html output method)

  --disable-static

	static library is not created to make compilation faster





3. Preinstalled Expat

========================================



This chapter is obsolete, but may contain some useful info for people

running older configuration.



This version of the build process on all Unix platforms respects the

presence of Expat sources. If you have installed Sablotron and Expat in

the past (with `make install'), the configure script writes makefiles, so

they link Expat from your system directories (the sources win, if present).



If you have installed Expat in some non-system directories in the

past, configure script won't find headers, and build process will

fail, even if you specify include path with --includedir switch. To

fix this problem, set CPLUS_INCLUDE_PATH environment variable to point

to Expat headers.





4. Binary distributions

========================================



Binaries are available for Linux Intel (rpm) and Windows32.





5. Environment

========================================



No environment changes are needed (finally!). That's,

of course, true only if you've used standard 'make install'

procedure.



The list of environment variables, you may possibly need modify:



LIBRARY_PATH: set this variable to the directory, where the Expat XML

parser is installed. Do it in the case the configure/linker couldn't

find the expat libraries.



LD_LIBRARY_PATH: add lib directory to this variable, if sabcmd reports

"Can't load shared library libsablot.0.xx" or such thing.



CPLUS_INCLUDE_PATH: is needed if you didn't install Sablotron (and

mainly Expat) into system directories and you're going compile new

version against older version of Expat. (see "Preinstalled Expat")



On some systems (UnixWare, NetBSD...) the compiler is unable to find

headers in /usr/local/include. Consequently the 'configure' script

doesn't find the expat header and compilation fails. To avoid this

problem, set CPPFLAGS environment to

'-I/usr/local/include'. CPLUS_INCLUDE_PATH is not enough.



If want to link Sablotron with GNU readline library you need set SABLOT_GPL

environment variable to 1 to declare you are going to use this software

under the GPL.





6. Documentation

========================================



The source package contains XML sources of three guides:



Sablotron Guide and Reference

Sablotron Extensions API Reference

SXP Reference



These guides are translated to HTML during the building of the package.

By default, you can find the HTML guides in



$(distdir)/doc/apidoc/[sablot|jsdom-ref|sxp]

and

$(datadir)/doc/html/[sablot|jsdom-ref|sxp]



directories.



The building of documentation requires Perl and XML::Parser to be installed;

otherwise the building is skipped.





7. More info

========================================



We suppose you have read the README file. If you haven't, read it now.

If it is not enough, take a look at our website:



http://www.gingerall.org





Enjoy Sablotron!!



GA