--- parser3/buildall 2017/05/22 16:57:27 1.22 +++ parser3/buildall 2018/01/17 00:01:21 1.25 @@ -1,5 +1,5 @@ #!/bin/sh -# $Id: buildall,v 1.22 2017/05/22 16:57:27 moko Exp $ +# $Id: buildall,v 1.25 2018/01/17 00:01:21 moko Exp $ install_directory=$HOME/parser3install sendmail_command="/usr/sbin/sendmail -i -t -f postmaster" @@ -18,25 +18,25 @@ options="$options --with-gc=$project_dir 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" ;; "--help") @@ -113,12 +113,12 @@ echo mkdir src >/dev/null 2>&1 if test ! -f "$project_dir/gc/lib/libgc.a"; then - lib="libatomic_ops-7.4.4" + lib="libatomic_ops-7.6.2" prepare_gz ${lib}.tar.gz http://www.hboehm.info/gc/gc_source/ - lib="gc-7.6.0" + lib="gc-7.6.2" prepare_gz ${lib}.tar.gz http://www.hboehm.info/gc/gc_source/ - mv ../libatomic_ops-7.4.4 libatomic_ops + mv ../libatomic_ops-7.6.2 libatomic_ops echo "Configuring $lib..." CPPFLAGS="-DUSE_MMAP -DDONT_ADD_BYTE_AT_END" \