Diff for /embedaddon/build.sh between versions 1.10 and 1.11

version 1.10, 2013/08/05 13:13:03 version 1.11, 2014/01/05 23:18:11
Line 346  case $CMD in Line 346  case $CMD in
                 ${MK} install || exit 1                  ${MK} install || exit 1
                 echo ">>> Now rebuild elwix $CMD program ..."                  echo ">>> Now rebuild elwix $CMD program ..."
                 ;;                  ;;
           nginx)
                   cd nginx
                   ./configure --conf-path=/etc/nginx.conf --user=www --group=www \
                           --pid-path=/var/run/nginx.pid \
                           --error-log-path=/var/log/nginx-error.log \
                           --lock-path=/var/run/nging.lock \
                           --http-log-path=/var/log/nginx-access.log --with-ipv6 \
                           --with-http_ssl_module --with-http_mp4_module ${PFX} || exit 1
   #               ${MK} clean || exit 1
                   ${MK} || exit 1
   #               ${MK} install || exit 1
                   echo ">>> Now rebuild elwix $CMD program ..."
                   ;;
           spawn-fcgi)
                   cd spawn-fcgi
                   ./configure ${PFX} || exit 1
                   ${MK} clean || exit 1
                   ${MK} || exit 1
                   ${MK} install || exit 1
                   echo ">>> Now rebuild elwix $CMD program ..."
                   ;;
           lighttpd)
                   cd lighttpd
                   ./configure --enable-static --with-openssl ${PFX} || exit 1
                   ${MK} clean || exit 1
                   ${MK} || exit 1
                   ${MK} install || exit 1
                   echo ">>> Now rebuild elwix $CMD program ..."
                   ;;
         *)          *)
                 echo "Package not supported at this moment ..."                  echo "Package not supported at this moment ..."
                 exit 1                  exit 1

Removed from v.1.10  
changed lines
  Added in v.1.11


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>