1         How to install the XSLT library:
2
3Requirements:
4=============
5
6this library requires a recent version of libxml2 which you can grab from
7either the GNOME FTP or the xmlsoft.org server:
8
9  ftp://xmlsoft.org/
10
11When installing from a distribution package like a tar.gz:
12==========================================================
13
14expand the package
15
16run ./configure possibly indicating the desired installation prefix: 
17
18    ./configure --prefix=/usr
19
20then run
21
22    make
23
24to build the project and
25
26    make install 
27
28(possibly after having gained root access) to install the library
29and associated include and scripts.
30
31When installing from a checkout of the GNOME CVS base:
32======================================================
33
34
35run ./autogen.sh possibly indicating the desired installation prefix: 
36
37    ./autogen.sh --prefix=/usr
38
39then run
40
41    make
42
43to build the project and
44
45    make install 
46
47(possibly after having gained root access) to instal the library
48and associated include and scripts.
49
50