view auto/inc @ 444:42d11f017717

nginx-0.1.0-2004-09-29-20:00:49 import; remove years from copyright
author Igor Sysoev <igor@sysoev.ru>
date Wed, 29 Sep 2004 16:00:49 +0000
parents b6793bc5034b
children
line wrap: on
line source


# Copyright (C) Igor Sysoev


echo $ngx_n "checking for $ngx_inc ..." $ngx_c
echo >> $NGX_ERR
echo "checking for $ngx_inc" >> $NGX_ERR

ngx_found=no

inc=`echo $ngx_inc | sed -e 's/\./_/' | sed -e 's/\//_/' | tr '[a-z]' '[A-Z]'`

cat << END > $NGX_AUTOTEST.c

#include <$ngx_inc>

int main() {
    return 0;
}

END

eval "${CC} -o $NGX_AUTOTEST $NGX_AUTOTEST.c >> $NGX_ERR 2>&1"

if [ -x $NGX_AUTOTEST ]; then
    echo " found"
    have=HAVE_$inc . auto/have
    eval "NGX_$inc='#include <$ngx_inc>'"
    ngx_found=yes

else
    echo " not found"
fi

rm $NGX_AUTOTEST*