configure
changeset 2525 00054087dab2
parent 2524 cdb5c36290f4
child 2526 e5fb003a354c
     1.1 --- a/configure	Sun Jul 03 12:00:37 2011 +0200
     1.2 +++ b/configure	Tue Jun 28 17:25:02 2011 +0200
     1.3 @@ -435,6 +435,20 @@
     1.4  has_or_abort prog=readelf var=readelf
     1.5  has_or_abort prog=patch var=patch
     1.6  
     1.7 +# Host system checks
     1.8 +
     1.9 +printf "Checking for host system... "
    1.10 +host="$( uname -s )"
    1.11 +printf "%s\n" "${host}"
    1.12 +case "${host}" in
    1.13 +    Linux)  ;;
    1.14 +    Cygwin) ;;
    1.15 +    *)
    1.16 +        printf " * Runing under %s is not fully tested\n" "${host}"
    1.17 +        printf " * You may encounter some weird behavior\n"
    1.18 +        ;;
    1.19 +esac
    1.20 +
    1.21  ncurses_hdrs="ncurses/ncurses.h ncurses/curses.h ncurses.h curses.h"
    1.22  ncurses_libs="$( for l in ncursesw ncurses curses; do   \
    1.23                       for x in so a dylib; do            \