view auto/inc @ 197:0b81c7a0b133

nginx-0.0.1-2003-11-27-10:45:22 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 27 Nov 2003 07:45:22 +0000
parents 11fbd0fc041d
children 00cafae0bdf1
line wrap: on
line source


echo "checking for $NGX_INC"

NGX_FOUND=NO

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

echo "#include <$NGX_INC>" > autotest.c
echo "int main() { return 0; }" >> autotest.c

eval "${CC} -o autotest autotest.c > /dev/null 2>&1"

if [ -x autotest ]; then
    echo " + $NGX_INC found"

    echo "#ifndef HAVE_$inc"      >> $NGX_AUTO_CONFIG_H
    echo "#define HAVE_$inc  1"   >> $NGX_AUTO_CONFIG_H
    echo "#endif"                 >> $NGX_AUTO_CONFIG_H
    echo                          >> $NGX_AUTO_CONFIG_H

    eval "NGX_$inc='#include <$NGX_INC>'"
    NGX_FOUND=YES

else
    echo " + $NGX_INC not found"
fi

rm autotest*