Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Side by Side Diff: third_party/libxslt/INSTALL

Issue 2865973002: Check in the libxslt roll script. (Closed)
Patch Set: Consistent quotes. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/libxslt/HACKING ('k') | third_party/libxslt/MAINTAINERS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 How to install the XSLT library:
2
3 Requirements:
4 =============
5
6 this library requires a recent version of libxml2 which you can grab from
7 either the GNOME FTP or the xmlsoft.org server:
8
9 ftp://xmlsoft.org/
10
11 When installing from a distribution package like a tar.gz:
12 ==========================================================
13
14 expand the package
15
16 run ./configure possibly indicating the desired installation prefix:
17
18 ./configure --prefix=/usr
19
20 then run
21
22 make
23
24 to build the project and
25
26 make install
27
28 (possibly after having gained root access) to install the library
29 and associated include and scripts.
30
31 When installing from a checkout of the GNOME CVS base:
32 ======================================================
33
34
35 run ./autogen.sh possibly indicating the desired installation prefix:
36
37 ./autogen.sh --prefix=/usr
38
39 then run
40
41 make
42
43 to build the project and
44
45 make install
46
47 (possibly after having gained root access) to instal the library
48 and associated include and scripts.
49
OLDNEW
« no previous file with comments | « third_party/libxslt/HACKING ('k') | third_party/libxslt/MAINTAINERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698