--- parser3/Attic/buildall-with-xml 2007/04/18 08:13:24 1.10 +++ parser3/Attic/buildall-with-xml 2007/08/06 16:52:00 1.13 @@ -1,6 +1,6 @@ #!/bin/sh -# $Id: buildall-with-xml,v 1.10 2007/04/18 08:13:24 misha Exp $ +# $Id: buildall-with-xml,v 1.13 2007/08/06 16:52:00 misha Exp $ install_directory=$HOME/parser3install sendmail_command="/usr/sbin/sendmail -i -t -f postmaster" @@ -32,12 +32,13 @@ if test ! -f "$project_directory/gc/lib/ echo "Building libgc..." make make install +# rm -rf $libgc fi if test ! -f "$project_directory/gnome/lib/libxml2.a"; then cd $project_directory/src - libxml2="libxml2-2.6.27" + libxml2="libxml2-2.6.29" if test ! -f "$libxml2.tar.gz"; then echo "Downloading libxml [2 lib of 3]..." wget -c --passive-ftp ftp://xmlsoft.org/libxml2/$libxml2.tar.gz @@ -62,11 +63,12 @@ if test ! -f "$project_directory/gnome/l echo "Building libxml..." make make install +# rm -rf $libxml2 fi if test ! -f "$project_directory/gnome/lib/libxslt.a"; then cd $project_directory/src - libxslt="libxslt-1.1.20" + libxslt="libxslt-1.1.21" if test ! -f "$libxslt.tar.gz"; then echo "Downloading libxslt [3 lib of 3]..." wget -c --passive-ftp ftp://xmlsoft.org/libxslt/$libxslt.tar.gz @@ -82,6 +84,7 @@ if test ! -f "$project_directory/gnome/l echo "Building libxslt..." make make install +# rm -rf $libxslt fi cd $parser3_directory @@ -93,6 +96,7 @@ if test ! -f "Makefile"; then --with-static-gc=$project_directory/gc/lib \ --with-static-xml=$project_directory/gnome \ # --disable-safe-mode \ +# --with-dynamic-stdcpp \ --silent fi echo "Building parser3..."