Changeset 391

Show
Ignore:
Timestamp:
07/24/06 12:47:29 (2 years ago)
Author:
tg
Message:

this is a direct consequence of r189 and until the
autoconf framework is in place, which will not be
anytime soon because other work (e.g. stabilising)
has priority

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/freewrt/scripts/scan-pkgs.sh

    r387 r391  
    5353fi 
    5454 
     55if [[ -n $FWRT_PACKAGE_PRIVOXY ]]; then 
     56        NEED_AUTOCONF_2_59="$NEED_AUTOCONF_2_59 privoxy" 
     57fi 
     58 
    5559#-- start checking dependencies here -- 
    5660 
     
    6973fi 
    7074 
     75if [[ -n $NEED_AUTOCONF_2_59 ]]; then 
     76        if ! AUTOCONF_VERSION=2.59 autoconf --help 2>&1 | \ 
     77            fgrep gnu.org >/dev/null 2>&1; then 
     78                echo >&2 You need autoconf 2.59 to build $NEED_AUTOCONF_2_59 
     79                out=1 
     80        fi 
     81fi 
     82 
    7183#-- end of dependency checks 
    7284