--- parser3/INSTALL 2002/01/31 10:20:14 1.1 +++ parser3/INSTALL 2002/02/08 11:14:18 1.4 @@ -3,27 +3,44 @@ 1.What is the process to compile Parser3? - As most UNIX libraries libxml follows the "standard": + As most UNIX programs Parser3 follows the "standard": mkdir $D/parser3project cd $D/parser3project - gunzip -c parser3src.xxx.tar.gz | tar xvf - - cd parser3/src + gunzip -c parser3-x.x.tar.gz | tar xvf - + mv parser3-x.x parser3 + cd parser3 ./configure --prefix=/usr/local - make install + make + + That renaming is needed for SQL drivers to be able to find + necessary include-file in Parser3 sources. By default your would get 'parser3' binary without support of these features: * cache(hashfile class) * xml(xdoc and xnode classes) +2.What is the process to install Parser3? + + make install + Installation layout: $prefix/bin/ parser3 -- CGI and command line Parser3 interpreter $prefix/etc/ parser3.conf -- main configuration file parser3.charsets/ -- charset definition files - windows-1251.cfg - koi8-r.cfg + windows-1251.cfg -- cyrillic charset [windows-1251 encoding] + koi8-r.cfg -- cyrillic charset [KOI8-R encoding] + windows-1250.cfg -- central europian charset [windows-1250 encoding] + + NOTE: + For subsequent compilations+installs + to prevent configuration files to be overwritten use + + make install-exec + + it will update parser3 binary only. 2.What other libraries are needed to compile/install libxml ? @@ -100,6 +117,6 @@ Parser3 configure option is --with-gnome-xml=$D/gnome -Alexandr Petrosian(PAF) +Alexandr Petrosian (http://paf.design.ru) -$Id: INSTALL,v 1.1 2002/01/31 10:20:14 paf Exp $ +$Id: INSTALL,v 1.4 2002/02/08 11:14:18 paf Exp $