Show
Ignore:
Timestamp:
11/28/09 22:17:29 (2 years ago)
Author:
tg
Message:

reformat some warnings and lessen the impact of some
r3907 can be built on a koala, all bugs reported by wbx@ are fixed
and even the mirmake-using programmes work despite the unused thing

Files:

Legend:

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

    • Property svn:keywords set to FreeWRT=Id
    r3902 r3908  
    9393        echo being included in NetBSD®, and these provided by pkgsrc® 
    9494        echo lack important header files. 
     95        echo 
    9596        ;; 
    9697OpenBSD) 
     
    304305        echo It is suggested to upgrade your copy of bison to 
    305306        echo GNU Bison 2.3 because of its bug fixes. 
     307        echo 
    306308fi 
    307309 
     
    413415fi 
    414416 
     417unused_bug=0 
     418 
    415419if fgrep -w __unused /usr/include/asm/stat.h /usr/include/linux/sysctl.h \ 
    416420    >/dev/null 2>&1; then 
    417         echo 'Compiling MirMake, which is required by the ADK, will most' 
    418         echo 'likely fail for your system, due to incompatibilities in the' 
    419         echo 'Linux headers. This has been reported as Debian #522773 and' 
    420         echo 'forwarded to: http://bugzilla.kernel.org/show_bug.cgi?id=14186' 
    421         echo 
    422         echo 'You can continue if you are totally sure that this is not an' 
    423         echo 'issue for your system. Otherwise you should replace all occu-' 
    424         echo 'rences of "__unused" (but not e.g. "__unused1") in your sy-' 
    425         echo 'stem headers with e.g. "__unused_" to work around this bug.' 
    426         echo 
    427         slp=1 
     421        echo 'Compiling MirMake, which is required by the ADK, may fail for' 
     422        echo 'your system due to incompatibilities in the Linux headers.' 
     423        echo 'This has been reported as Debian #522773 and forwarded to:' 
     424        echo 'http://bugzilla.kernel.org/show_bug.cgi?id=14186' 
     425        echo 
     426        unused_bug=1 
    428427fi 
    429428 
    430429if fgrep -w __unused /usr/include/bits/stat.h /usr/include/netdb.h \ 
    431430    >/dev/null 2>&1; then 
    432         echo 'Compiling MirMake, which is required by the ADK, will most' 
    433         echo 'likely fail for your system, due to incompatibilities in the' 
    434         echo 'glibc headers. This has been reported as Debian #522774 and' 
    435         echo 'and treated as WONTFIX by the eglibc maintainers.' 
    436         echo 
     431        echo 'Compiling MirMake, which is required by the ADK, may fail for' 
     432        echo 'your system due to incompatibilities in the glibc headers. It' 
     433        echo 'is Debian #522774 and treated WONTFIX by eglibc maintainers.' 
     434        echo 
     435fi 
     436 
     437if (( unused_bug )); then 
    437438        echo 'You can continue if you are totally sure that this is not an' 
    438439        echo 'issue for your system. Otherwise you should replace all occu-'