Diff for /parser3/buildall between versions 1.28 and 1.37

version 1.28, 2019/11/30 22:17:48 version 1.37, 2023/12/13 20:04:06
Line 9  cd .. Line 9  cd ..
 project_dir=`pwd`  project_dir=`pwd`
   
 build_xml="yes"  build_xml="yes"
   build_pcre2="yes"
 build_gmime=""  build_gmime=""
 build_apache=""  build_apache=""
 build_stripped=""  build_stripped=""
Line 16  direct_download="" Line 17  direct_download=""
   
 options="--with-included-ltdl"  options="--with-included-ltdl"
 options="$options --with-gc=$project_dir/gc/lib"  options="$options --with-gc=$project_dir/gc/lib"
 options="$options --with-pcre=$project_dir/pcre"  
 #options="$options --disable-stringstream"  #options="$options --disable-stringstream"
   
 printf "Building statically linked parser3"  printf "Building statically linked parser3"
Line 26  for PARAM in "$@"; do Line 26  for PARAM in "$@"; do
             printf ", without xml"              printf ", without xml"
             build_xml=""              build_xml=""
             ;;              ;;
           "--without-pcre2")
               printf ", without pcre2 library"
               build_pcre2=""
               ;;
         "--with-apache")          "--with-apache")
             printf ", with apache module"              printf ", with apache module"
             options="$options --with-apache"              options="$options --with-apache"
Line 36  for PARAM in "$@"; do Line 40  for PARAM in "$@"; do
             options="$options --with-mailreceive=$project_dir/gnome"              options="$options --with-mailreceive=$project_dir/gnome"
             build_gmime="yes"              build_gmime="yes"
             ;;              ;;
           "--with-system-mailreceive")
               printf ", with mail receiving"
               options="$options --with-mailreceive"
               ;;
         "--strip")          "--strip")
             printf ", without debug information"              printf ", without debug information"
             build_stripped="yes"              build_stripped="yes"
Line 46  for PARAM in "$@"; do Line 54  for PARAM in "$@"; do
             ;;              ;;
         "--help")          "--help")
             echo              echo
             echo "Usage: buildall [--without-xml] [--with-apache] [--with-mailreceive] [--strip] [--direct-download] [--disable-safe-mode] [other configure options ...]"              echo "Usage: buildall [--without-xml] [--without-pcre2] [--with-apache] [--with-mailreceive] [--with-system-mailreceive] [--strip] [--direct-download] [--disable-safe-mode] [other configure options ...]"
             exit 1              exit 1
             ;;              ;;
         *)          *)
Line 82  fi Line 90  fi
 prepare () {  prepare () {
     cd $project_dir/src      cd $project_dir/src
   
     if test ! -f "temp $1"; then      if test ! -f "$1"; then
         if test "$direct_download" = "yes"; then          if test "$direct_download" = "yes"; then
             echo "Downloading $lib from $2..."              echo "Downloading $lib from $2..."
             $download $2$1              $download $2$1
Line 119  echo Line 127  echo
 mkdir src >/dev/null 2>&1  mkdir src >/dev/null 2>&1
   
 if test ! -f "$project_dir/gc/lib/libgc.a"; then  if test ! -f "$project_dir/gc/lib/libgc.a"; then
       lib="libatomic_ops-7.6.2"
       prepare_gz ${lib}.tar.gz http://www.hboehm.info/gc/gc_source/
   
     lib="gc-8.0.4"      lib="gc-8.0.4"
     prepare_gz ${lib}.tar.gz http://www.hboehm.info/gc/gc_source/      prepare_gz ${lib}.tar.gz http://www.hboehm.info/gc/gc_source/
   
       mv ../libatomic_ops-7.6.2 libatomic_ops
   
     echo "Configuring $lib..."      echo "Configuring $lib..."
     CPPFLAGS="-DUSE_MMAP -DDONT_ADD_BYTE_AT_END" \      CPPFLAGS="-DUSE_MMAP -DDONT_ADD_BYTE_AT_END" \
     ./configure --prefix=$project_dir/gc \      ./configure --prefix=$project_dir/gc \
         --disable-threads \  
         --disable-shared \          --disable-shared \
           --disable-parallel-mark \
         --silent $cflags          --silent $cflags
     echo "Building $lib..."      echo "Building $lib..."
     make install      make install
     cleanup      cleanup
 fi  fi
   
   if test "$build_pcre2" = "yes"; then
   
   options="$options --with-pcre=$project_dir/pcre2"
   
   if test ! -f "$project_dir/pcre2/lib/libpcre2-8.a"; then
       lib="pcre2-10.42"
       prepare_gz $lib.tar.gz https://github.com/PCRE2Project/pcre2/releases/download/pcre2-10.42/
       echo "Configuring $lib..."
       ./configure --prefix="$project_dir/pcre2" \
           --enable-jit \
           --with-match-limit-depth=10000 \
           --disable-shared \
           --silent $cflags
       echo "Building $lib..."
       make install
       cleanup
   fi
   
   else
   
   options="$options --with-pcre=$project_dir/pcre"
   
 if test ! -f "$project_dir/pcre/lib/libpcre.a"; then  if test ! -f "$project_dir/pcre/lib/libpcre.a"; then
     lib="pcre-8.43"      lib="pcre-8.45"
     prepare_gz $lib.tar.gz https://ftp.pcre.org/pub/pcre/      prepare_gz $lib.tar.gz https://versaweb.dl.sourceforge.net/project/pcre/pcre/8.45/
     echo "Configuring $lib..."      echo "Configuring $lib..."
     ./configure --prefix="$project_dir/pcre" \      ./configure --prefix="$project_dir/pcre" \
         --with-match-limit-recursion=10000 \          --with-match-limit-recursion=10000 \
Line 151  if test ! -f "$project_dir/pcre/lib/libp Line 186  if test ! -f "$project_dir/pcre/lib/libp
     cleanup      cleanup
 fi  fi
   
   fi
   
 if test "$build_xml" = "yes" -a ! -f "$project_dir/gnome/lib/libxml2.a"; then  if test "$build_xml" = "yes" -a ! -f "$project_dir/gnome/lib/libxml2.a"; then
     lib="libxml2-2.9.9"      lib="libxml2-2.9.9"
     prepare_gz $lib.tar.gz ftp://xmlsoft.org/libxml2/      prepare_gz $lib.tar.gz ftp://xmlsoft.org/libxml2/
Line 159  if test "$build_xml" = "yes" -a ! -f "$p Line 196  if test "$build_xml" = "yes" -a ! -f "$p
     ./configure --prefix=$project_dir/gnome \      ./configure --prefix=$project_dir/gnome \
         --without-catalog \          --without-catalog \
         --without-iconv \          --without-iconv \
         --without-threads \  
         --without-debug \          --without-debug \
         --without-iso8859x \          --without-iso8859x \
         --without-legacy \          --without-legacy \
Line 253  fi Line 289  fi
 cd $parser3_dir  cd $parser3_dir
 if test ! -f "Makefile"; then  if test ! -f "Makefile"; then
     echo "Configuring parser3..."      echo "Configuring parser3..."
     ./configure --prefix=$install_directory "--with-sendmail=$sendmail_command" $options --silent $cflags $gmime_cflags      ./configure --prefix=$install_directory \
           --sysconfdir=$install_directory/bin \
           --datadir=$install_directory/bin \
           --datarootdir="\$confdir" \
           --libdir="\$confdir/lib" \
           --with-sendmail="$sendmail_command" \
           $options $cflags $gmime_cflags
 fi  fi
   
 echo "Building parser3..."  echo "Building parser3..."

Removed from v.1.28  
changed lines
  Added in v.1.37


E-mail: