mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2026-01-07 21:58:22 +03:00
- FEATURES TODO README INSTALL: updated - libxslt/xslt.h: added URL and version/vendor :-) - libxslt/transform.c: fixed a problem in xsl:attribute, removed attempt to support older libxml2 version. - libxslt/variables.h libxslt/xsltInternals.h: update to structures and macros to add/register new document created by document() - libxslt/functions.c: implemented current(), unparsed-entity-uri() system-property(), element-available() and function-available(). A crippled version of document() has been added too. Daniel
49 lines
997 B
Plaintext
49 lines
997 B
Plaintext
How to install the XSLT library:
|
|
|
|
Requirements:
|
|
=============
|
|
|
|
this library requires libxml2 >= 2.2.12 which you can grab from
|
|
either the GNOME FTP or the xmlsoft.org server:
|
|
|
|
ftp://xmlsoft.org/
|
|
|
|
When installing from a distribution package like a tar.gz:
|
|
==========================================================
|
|
|
|
expand the package
|
|
|
|
run ./configure possibly indicating the desired installation prefix:
|
|
|
|
./configure --prefix=/usr
|
|
|
|
then run
|
|
|
|
make
|
|
|
|
to build the project and
|
|
|
|
make install
|
|
|
|
(possibly after having gained root access) to instal the library
|
|
and associated include and scripts.
|
|
|
|
When installing from a checkout of the GNOME CVS base:
|
|
======================================================
|
|
|
|
|
|
run ./autogen.sh possibly indicating the desired installation prefix:
|
|
|
|
./autogen.sh --prefix=/usr
|
|
|
|
then run
|
|
|
|
make
|
|
|
|
to build the project and
|
|
|
|
make install
|
|
|
|
(possibly after having gained root access) to instal the library
|
|
and associated include and scripts.
|