mirror of
https://github.com/nginx/nginx.git
synced 2024-11-21 16:28:40 +00:00
ac72bd17d1
*) Feature: the "wait" parameter in the "include" SSI command. *) Feature: the Ukrainian and Byelorussian characters were added to koi-win conversion table. *) Bugfix: in the SSI.
60 lines
1021 B
Plaintext
60 lines
1021 B
Plaintext
|
|
# Copyright (C) Igor Sysoev
|
|
|
|
|
|
echo $ngx_n "checking for $ngx_include ...$ngx_c"
|
|
|
|
cat << END >> $NGX_AUTOCONF_ERR
|
|
|
|
----------------------------------------
|
|
checking for $ngx_include
|
|
|
|
END
|
|
|
|
|
|
ngx_found=no
|
|
|
|
cat << END > $NGX_AUTOTEST.c
|
|
|
|
#include <$ngx_include>
|
|
|
|
int main() {
|
|
return 0;
|
|
}
|
|
|
|
END
|
|
|
|
|
|
ngx_test="$CC -o $NGX_AUTOTEST $NGX_AUTOTEST.c"
|
|
|
|
eval "$ngx_test >> $NGX_AUTOCONF_ERR 2>&1"
|
|
|
|
if [ -x $NGX_AUTOTEST ]; then
|
|
|
|
ngx_found=yes
|
|
|
|
echo " found"
|
|
|
|
ngx_name=`echo $ngx_include \
|
|
| tr abcdefghijklmnopqrstuvwxyz/. ABCDEFGHIJKLMNOPQRSTUVWXYZ__`
|
|
|
|
|
|
have=NGX_HAVE_$ngx_name . auto/have_headers
|
|
|
|
eval "NGX_INCLUDE_$ngx_name='#include <$ngx_include>'"
|
|
|
|
#STUB
|
|
eval "NGX_$ngx_name='#include <$ngx_include>'"
|
|
|
|
else
|
|
echo " not found"
|
|
|
|
echo "----------" >> $NGX_AUTOCONF_ERR
|
|
cat $NGX_AUTOTEST.c >> $NGX_AUTOCONF_ERR
|
|
echo "----------" >> $NGX_AUTOCONF_ERR
|
|
echo $ngx_test >> $NGX_AUTOCONF_ERR
|
|
echo "----------" >> $NGX_AUTOCONF_ERR
|
|
fi
|
|
|
|
rm $NGX_AUTOTEST*
|