Annotation of parser3/buildall-without-xml, revision 1.1.2.1

1.1.2.1 ! paf         1: #!/bin/sh
        !             2: 
        !             3: # $Id: INSTALL,v 1.48 2005/12/16 10:19:38 paf Exp $
        !             4: 
        !             5: install_directory=$HOME/parser3install
        !             6: sendmail_command="/usr/sbin/sendmail -i -t -f postmaster"
        !             7: 
        !             8: echo "buildall-with-xml"
        !             9: echo "Script author: Alexander Petrosian <paf@design.ru> (http://paf.design.ru)"
        !            10: echo
        !            11: echo "Building..."
        !            12: 
        !            13: parser3_directory=`pwd`
        !            14: cd ..
        !            15: project_directory=`pwd`
        !            16: mkdir src
        !            17: 
        !            18: if test ! -f "$project_directory/gc/lib/libgc.a"; then
        !            19:   cd $project_directory/src
        !            20:   echo "Downloading libgc [1 lib of 1]..."
        !            21:   wget -c http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc6.6.tar.gz
        !            22:   echo "Unpacking..."
        !            23:   gunzip -c gc6.6.tar.gz | tar vxf - >/dev/null
        !            24:   cd gc6.6
        !            25:   echo "Configuring libgc..."
        !            26:   CPPFLAGS=-DUSE_LIBC_PRIVATES \
        !            27:   ./configure --prefix=$project_directory/gc --disable-threads --disable-shared --silent
        !            28:   echo "Building libgc..."
        !            29:   make install
        !            30: fi
        !            31: 
        !            32: cd $parser3_directory
        !            33: 
        !            34: if test ! -f "Makefile"; then
        !            35:   echo "Configuring parser3..."
        !            36:   ./configure --prefix=$install_directory \
        !            37:      "--with-sendmail=$sendmail_command" \
        !            38:      --with-static-gc=$project_directory/gc/lib \
        !            39:      --silent
        !            40: fi
        !            41: echo "Building parser3..."
        !            42: make install
        !            43: echo "DONE"
        !            44: 
        !            45: echo
        !            46: echo
        !            47: echo "*******************************************************************************************"
        !            48: echo "Now you can copy $HOME/parser3install/bin/parser3 WITHOUT XML support to your CGI directory"
        !            49: echo "*******************************************************************************************"

E-mail: