view auto/inc @ 196:11fbd0fc041d

nginx-0.0.1-2003-11-26-18:42:18 import
author Igor Sysoev <igor@sysoev.ru>
date Wed, 26 Nov 2003 15:42:18 +0000
parents
children 0b81c7a0b133
line wrap: on
line source


echo "checking for $NGX_INC"

inc=`echo $NGX_INC | 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>'"

else
    echo " + $NGX_INC not found"
fi

rm autotest*