test PCRE in FreeBSD, Linux, and NetBSD

This commit is contained in:
Igor Sysoev
2006-11-27 11:07:09 +00:00
parent 9a29d129f2
commit 0ec09f9196
13 changed files with 137 additions and 20 deletions

View File

@@ -18,6 +18,10 @@ if test -n "$ngx_feature_name"; then
| tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`
fi
if test -n "$ngx_feature_path"; then
ngx_feature_inc_path="-I $ngx_feature_path"
fi
cat << END > $NGX_AUTOTEST.c
#include <sys/types.h>
@@ -32,9 +36,11 @@ int main() {
END
ngx_test="$CC $CC_TEST_FLAGS $CC_AUX_FLAGS \
ngx_test="$CC $CC_TEST_FLAGS $CC_AUX_FLAGS $ngx_feature_inc_path \
-o $NGX_AUTOTEST $NGX_AUTOTEST.c $NGX_LD_OPT $ngx_feature_libs"
ngx_feature_inc_path=
eval "$ngx_test >> $NGX_AUTOCONF_ERR 2>&1"