nginx/auto/types/typedef

58 lines
995 B
Plaintext
Raw Normal View History

2003-11-20 11:36:43 -06:00
2004-02-03 14:27:11 -06:00
echo $ngx_n "checking for $ngx_type ..." $ngx_c
2003-12-14 14:10:27 -06:00
echo >> $NGX_ERR
echo "checking for $ngx_type" >> $NGX_ERR
2003-11-25 14:44:56 -06:00
2003-12-14 14:10:27 -06:00
found=no
2003-11-25 14:44:56 -06:00
2003-12-14 14:10:27 -06:00
for type in $ngx_type $ngx_types
2003-11-25 14:44:56 -06:00
do
2003-12-14 14:10:27 -06:00
cat << END > $NGX_AUTOTEST.c
2004-03-04 10:34:23 -06:00
#include <signal.h>
2003-12-14 14:10:27 -06:00
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <netinet/in.h>
$NGX_INTTYPES_H
int main() {
$type i = 0;
return 0;
}
END
eval "$CC -o $NGX_AUTOTEST $NGX_AUTOTEST.c >> $NGX_ERR 2>&1"
if [ -x $NGX_AUTOTEST ]; then
if [ $type = $ngx_type ]; then
echo " found"
found=yes
2003-11-25 14:44:56 -06:00
else
2003-12-14 14:10:27 -06:00
echo ", $type used"
found=$type
2003-11-25 14:44:56 -06:00
fi
fi
2003-12-14 14:10:27 -06:00
rm $NGX_AUTOTEST*
2003-11-25 14:44:56 -06:00
2003-12-14 14:10:27 -06:00
if [ $found = no ]; then
2004-02-03 14:27:11 -06:00
echo $ngx_n " $type not found" $ngx_c
2003-11-25 14:44:56 -06:00
else
break
fi
done
2003-12-14 14:10:27 -06:00
if [ $found = no ]; then
echo
echo "$0: error: can not define $ngx_type"
2003-11-25 14:44:56 -06:00
exit 1
fi
2003-12-14 14:10:27 -06:00
if [ $found != yes ]; then
echo "typedef $found $ngx_type;" >> $NGX_AUTO_CONFIG_H
2003-11-25 14:44:56 -06:00
fi