--- parser3/buildall 2015/10/12 17:17:44 1.15 +++ parser3/buildall 2019/11/28 13:02:14 1.27 @@ -1,5 +1,5 @@ #!/bin/sh -# $Id: buildall,v 1.15 2015/10/12 17:17:44 moko Exp $ +# $Id: buildall,v 1.27 2019/11/28 13:02:14 moko Exp $ install_directory=$HOME/parser3install sendmail_command="/usr/sbin/sendmail -i -t -f postmaster" @@ -12,36 +12,41 @@ build_xml="yes" build_gmime="" build_apache="" build_stripped="" +direct_download="" options="--with-included-ltdl" options="$options --with-gc=$project_dir/gc/lib" options="$options --with-pcre=$project_dir/pcre" #options="$options --disable-stringstream" -echo "Building statically linked parser3\c" +printf "Building statically linked parser3" for PARAM in "$@"; do case "$PARAM" in "--without-xml") - echo ", without xml\c" + printf ", without xml" build_xml="" ;; "--with-apache") - echo ", with apache module\c" + printf ", with apache module" options="$options --with-apache" build_apache="yes" ;; "--with-mailreceive") - echo ", with mail receiving\c" + printf ", with mail receiving" options="$options --with-mailreceive=$project_dir/gnome" build_gmime="yes" ;; "--strip") - echo ", without debug information\c" + printf ", without debug information" build_stripped="yes" ;; + "--direct-download") + printf ", download sources from master" + direct_download="yes" + ;; "--help") echo - echo "Usage: buildall [--without-xml] [--with-apache] [--with-mailreceive] [--strip] [--disable-safe-mode] [other configure options ...]" + echo "Usage: buildall [--without-xml] [--with-apache] [--with-mailreceive] [--strip] [--direct-download] [--disable-safe-mode] [other configure options ...]" exit 1 ;; *) @@ -74,30 +79,31 @@ fi ############################### Support functions ################################ -prepare_gz () { +prepare () { cd $project_dir/src if test ! -f "$1"; then - echo "Downloading $lib..." - $download $2$1 + if test "$direct_download" = "yes"; then + echo "Downloading $lib from $2..." + $download $2$1 + else + echo "Downloading $lib (master at $2)..." + $download https://www.parser.ru/off-line/download/libs/$1 + fi fi echo "Unpacking $lib..." rm -rf $lib +} + +prepare_gz () { + prepare $1 $2 gunzip -c $1 | tar xf - >/dev/null cd $lib } prepare_xz () { - cd $project_dir/src - - if test ! -f "$1"; then - echo "Downloading $lib..." - $download $2$1 - fi - - echo "Unpacking $lib..." - rm -rf $lib + prepare $1 $2 xzcat $1 | tar xf - >/dev/null cd $lib } @@ -113,11 +119,11 @@ echo mkdir src >/dev/null 2>&1 if test ! -f "$project_dir/gc/lib/libgc.a"; then -# libgc="gc6.8" # FreeBSD 4.X is not supported in newer gc version - lib="gc-7.2" - prepare_gz ${lib}f.tar.gz http://www.hboehm.info/gc/gc_source/ + lib="gc-8.0.4" + prepare_gz ${lib}.tar.gz http://www.hboehm.info/gc/gc_source/ + echo "Configuring $lib..." - CPPFLAGS="-DUSE_LIBC_PRIVATES -DUSE_MMAP -DDONT_ADD_BYTE_AT_END" \ + CPPFLAGS="-DUSE_MMAP -DDONT_ADD_BYTE_AT_END" \ ./configure --prefix=$project_dir/gc \ --disable-threads \ --disable-shared \ @@ -128,8 +134,8 @@ if test ! -f "$project_dir/gc/lib/libgc. fi if test ! -f "$project_dir/pcre/lib/libpcre.a"; then - lib="pcre-8.37" - prepare_gz $lib.tar.gz ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ + lib="pcre-8.43" + prepare_gz $lib.tar.gz https://ftp.pcre.org/pub/pcre/ echo "Configuring $lib..." ./configure --prefix="$project_dir/pcre" \ --with-match-limit-recursion=10000 \ @@ -146,7 +152,7 @@ if test ! -f "$project_dir/pcre/lib/libp fi if test "$build_xml" = "yes" -a ! -f "$project_dir/gnome/lib/libxml2.a"; then - lib="libxml2-2.9.2" + lib="libxml2-2.9.9" prepare_gz $lib.tar.gz ftp://xmlsoft.org/libxml2/ #sax1, output, tree, xinclude[in libxslt], html[in libxslt, mode=html?], xptr[xinclude], pattern -- needed! echo "Configuring $lib..." @@ -178,10 +184,10 @@ if test "$build_xml" = "yes" -a ! -f "$p fi if test "$build_xml" = "yes" -a ! -f "$project_dir/gnome/lib/libxslt.a"; then - lib="libxslt-1.1.28" + lib="libxslt-1.1.34" prepare_gz $lib.tar.gz ftp://xmlsoft.org/libxslt/ echo "Configuring $lib..." - CFLAGS="-D__stub_clock_gettime -Dclock_gettime=choke_me" \ + CFLAGS="$CFLAGS -D__stub_clock_gettime -Dclock_gettime=choke_me" \ ./configure --prefix=$project_dir/gnome \ --with-libxml-prefix=$project_dir/gnome \ --without-debug \