libxslt-1.1.29
Installation of libxslt
Install libxslt by running the
following commands:
sed -i '/#include <xlocale.h>/d' libxslt/xsltlocale.h &&
./configure --prefix=/usr --disable-static &&
make
To test the results, issue: make
check.
Now, as the root
user:
make install
Command Explanations
sed -i '/#include
<xlocale.h>/d' libxslt/xsltlocale.h: with
glibc-2.26, xlocale.h
is no-longer
installed, any package using it should use locale.h
but libxslt references that on the previous line
of the header, so just delete this.
--disable-static
: This
switch prevents installation of static versions of the libraries.
Contents
Installed Programs:
xslt-config and xsltproc
Installed Libraries:
libexslt.so, libxslt.so and optionally,
libxsltmod.so Python
modules
Installed Directories:
/usr/include/libexslt,
/usr/include/libxslt, /usr/lib/libxslt-plugins,
/usr/share/doc/libxslt-1.1.29, and
/usr/share/doc/libxslt-python-1.1.29
Short Descriptions
xslt-config
|
is used to find out the pre-processor, linking and
compiling flags necessary to use the libxslt libraries in 3rd-party
programs.
|
xsltproc
|
is used to apply XSLT stylesheets to XML documents.
|
libexslt.so
|
is used to provide extensions to XSLT functions.
|
libxslt.so
|
provides extensions to the libxml2 libraries to parse files that
use the XSLT format.
|
Last updated on 2017-08-19 18:04:07 -0700