diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2004-06-17 17:18:53 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2004-06-17 17:18:53 +0000 |
| commit | 415b1ce1b93a3b74efe8a3ee5a35ee55e0a11caa (patch) | |
| tree | 077bf24b4f310a87ab8bff140c730cb679069988 /auto/feature | |
| parent | f924e6b694db7fd1d99473b3d7db7eb2b49c9e62 (diff) | |
| download | nginx-415b1ce1b93a3b74efe8a3ee5a35ee55e0a11caa.tar.gz nginx-415b1ce1b93a3b74efe8a3ee5a35ee55e0a11caa.tar.bz2 | |
nginx-0.0.7-2004-06-17-21:18:53 import
Diffstat (limited to 'auto/feature')
| -rw-r--r-- | auto/feature | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/auto/feature b/auto/feature new file mode 100644 index 000000000..32a103d15 --- /dev/null +++ b/auto/feature @@ -0,0 +1,53 @@ + +echo $ngx_n "checking for $ngx_feature ..." $ngx_c +echo >> $NGX_ERR +echo "checking for $ngx_feature" >> $NGX_ERR + +ngx_found=no + +feature=`echo $ngx_feature_name | tr '[a-z]' '[A-Z]'` + +cat << END > $NGX_AUTOTEST.c + +#include <sys/types.h> +$NGX_UNISTD_H +$ngx_feature_inc + +int main() { + $ngx_feature_test; + return 0; +} + +END + +test="$CC_WARN $CC_TEST_FLAGS -o $NGX_AUTOTEST $NGX_AUTOTEST.c \ + $ngx_feature_libs" +eval "$test >> $NGX_ERR 2>&1" + +if [ -x $NGX_AUTOTEST ]; then + + if [ $ngx_feature_run = yes ]; then + if $NGX_AUTOTEST 2>&1 > /dev/null; then + echo " found" + have=HAVE_$feature . auto/have + ngx_found=yes + else + echo " found but is not working" + fi + + else + echo " found" + have=HAVE_$feature . auto/have + ngx_found=yes + fi + +else + echo " not found" + echo "---------" >> $NGX_ERR + cat $NGX_AUTOTEST.c >> $NGX_ERR + echo "---------" >> $NGX_ERR + echo $test >> $NGX_ERR + echo "---------" >> $NGX_ERR +fi + +rm $NGX_AUTOTEST* |
