diff --git a/ChangeLog b/ChangeLog index e83bab0ed5dfa92103de9c36c33114bdb050baad_Q2hhbmdlTG9n..361132ed976c364a61ce9e9fcedd42d0bf62dbbf_Q2hhbmdlTG9n 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Sun Jan 7 15:10:54 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> + + * configure.in Makefile.am AUTHORS NEWS autogen.sh config.h.in + libxslt/Makefile.am tests/Makefile.am: + Created the library framework, imported it into the GNOME CVS base + * INSTALL: added a small instruction file. + Sun Jan 7 13:51:30 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> * libxslt/xslt.[ch] libxslt/xsltInternals.h libxslt/xsltproc.c: diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..361132ed976c364a61ce9e9fcedd42d0bf62dbbf_SU5TVEFMTA== --- /dev/null +++ b/INSTALL @@ -0,0 +1,48 @@ + How to install the XSLT library: + +Requirements: +============= + +this library requires libxml2 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.