Diff for /elwix/build_3thparty.sh between versions 1.1.2.3 and 1.2.6.8

version 1.1.2.3, 2012/02/22 15:43:10 version 1.2.6.8, 2013/07/31 13:17:53
Line 15  if [ X"${ELWIX_IS_CONFIGURED}" != X"YES" ]; then Line 15  if [ X"${ELWIX_IS_CONFIGURED}" != X"YES" ]; then
         echo          echo
         exit 1          exit 1
 fi  fi
   V=${VERSION}
   [ -r ${CENV} ] && . ${CENV}
   unset INSTALL
   unset VERSION
   VERSION="$V"
   
 if [ ! -d $BSDSRC ]; then  if [ ! -d $BSDSRC ]; then
         echo          echo
Line 64  compile_3th() Line 69  compile_3th()
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
         ./build.sh scan_ffs ${CBUILD} ${PKG} ${TARGET_BUILD}          ./build.sh scan_ffs ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
         ./build.sh pciutils ${CGBUILD} ${PKG} ${TARGET_BUILD}  
         [ $? -ne 0 ] && exit 1  
         ./build.sh istgt ${CBUILD} ${PKG} ${TARGET_BUILD}          ./build.sh istgt ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
         ./build.sh rsync ${CBUILD} ${PKG} ${TARGET_BUILD}          ./build.sh rsync ${CBUILD} ${PKG} ${TARGET_BUILD}
Line 88  compile_3th() Line 91  compile_3th()
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
         ./build.sh smartmontools ${CBUILD} ${PKG} ${TARGET_BUILD}          ./build.sh smartmontools ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
         ./build.sh sqlite3 ${CBUILD} ${PKG} ${TARGET_BUILD}  
         [ $? -ne 0 ] && exit 1  
         ./build.sh quagga ${CBUILD} ${PKG} ${TARGET_BUILD}          ./build.sh quagga ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
         ./build.sh coova-chilli ${CBUILD} ${PKG} ${TARGET_BUILD}  
         [ $? -ne 0 ] && exit 1  
         ./build.sh iftop ${CBUILD} ${PKG} ${TARGET_BUILD}          ./build.sh iftop ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
         ./build.sh arping ${CBUILD} ${PKG} ${TARGET_BUILD}          ./build.sh arping ${CBUILD} ${PKG} ${TARGET_BUILD}
Line 106  compile_3th() Line 105  compile_3th()
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
         ./build.sh dhcp ${CBUILD} ${PKG} ${TARGET_BUILD}          ./build.sh dhcp ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
         ./build.sh dhcdrop ${CBUILD} ${PKG} ${TARGET_BUILD}  
         [ $? -ne 0 ] && exit 1  
         ./build.sh dhcping ${CBUILD} ${PKG} ${TARGET_BUILD}          ./build.sh dhcping ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
        ./build.sh thttpd ${CBUILD} ${PKG} ${TARGET_BUILD}#        ./build.sh dnsmasq ${CBUILD} ${PKG} ${TARGET_BUILD}
 #       [ $? -ne 0 ] && exit 1
         ./build.sh miniupnpd ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
           ./build.sh miniupnpc ${CGBUILD} ${PKG} ${TARGET_BUILD}
           [ $? -ne 0 ] && exit 1
           ./build.sh ntp ${CBUILD} ${PKG} ${TARGET_BUILD}
           [ $? -ne 0 ] && exit 1
         ./build.sh libxml2 ${CBUILD} ${PKG} ${TARGET_BUILD}          ./build.sh libxml2 ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
         ./build.sh php ${CBUILD} ${PKG} ${TARGET_BUILD}          ./build.sh php ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
         cd -          cd -
   
         echo "ELWIX Platform:${PLATFORM} Version:${VERSION} TargetArch:${TARGET_ARCH}" >${PKG}/elwix.ver  
 }  }
   
 ### main()  ### main()
 if ! SnitVer ${PKG}/elwix.ver; then  if ! SnitVer ${PKG}/elwix.ver; then
         clean_3th          clean_3th
         compile_3th          compile_3th
   
           echo "ELWIX Platform:${PLATFORM} Version:${VERSION} TargetArch:${TARGET_ARCH}" >${PKG}/elwix.ver
 else  else
         echo "Skipped ELWIX 3th party build ..."          echo "Skipped ELWIX 3th party build ..."
 fi  fi

Removed from v.1.1.2.3  
changed lines
  Added in v.1.2.6.8


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