if [ $ngx_found = yes ]; then
CORE_LIBS="$CORE_LIBS $ngx_libs"
MD5=YES
+ MD5_LIB=md5
ngx_found=no
else
if [ $ngx_found = yes ]; then
CORE_LIBS="$CORE_LIBS $ngx_libs"
MD5=YES
+ MD5_LIB=md
ngx_found=no
else
- ngx_lib="OpenSSL md5"
+ ngx_lib_inc="#include <sys/types.h>
+#include <openssl/md5.h>"
+ ngx_lib="OpenSSL md5 crypto"
ngx_lib_test="MD5_CTX md5; MD5_Init(&md5)"
- ngx_libs=-lmd5
+ ngx_libs=-lcrypto
. auto/lib/test
fi
if [ $ngx_found = yes ]; then
have=HAVE_OPENSSL_MD5 . auto/have
+ have=HAVE_OPENSSL_MD5_H . auto/have
CORE_LIBS="$CORE_LIBS $ngx_libs"
MD5=YES
+ MD5_LIB=crypto
fi
fi
echo
echo "Configuration summary"
-case $PCRE in
- YES) echo " + using system PCRE library" ;;
- NONE) echo " + PCRE library is not used" ;;
- NO) echo " + PCRE library is not found" ;;
- *) echo " + using PCRE library: $PCRE" ;;
-esac
+if [ $USE_PCRE = DISABLED ]; then
+ echo " + PCRE library is disabled"
+
+else
+ case $PCRE in
+ YES) echo " + using system PCRE library" ;;
+ NO) echo " + PCRE library is not found" ;;
+ *) echo " + using PCRE library: $PCRE" ;;
+ esac
+fi
case $MD5 in
- YES) echo " + using system md5 library" ;;
+ YES) echo " + md5: using system $MD5_LIB library" ;;
NONE) echo " + md5 library is not used" ;;
NO) echo " + md5 library is not found" ;;
*) echo " + using md5 library: $MD5" ;;
{
char *p = conf;
- int flag;
- ngx_str_t *value;
+ ngx_flag_t flag;
+ ngx_str_t *value;
- if (*(int *) (p + cmd->offset) != NGX_CONF_UNSET) {
+ if (*(ngx_flag_t *) (p + cmd->offset) != NGX_CONF_UNSET) {
return "is duplicate";
}
return NGX_CONF_ERROR;
}
- *(int *) (p + cmd->offset) = flag;
+ *(ngx_flag_t *) (p + cmd->offset) = flag;
return NGX_CONF_OK;
}
{
char *p = conf;
- int *np;
+ ngx_int_t *np;
ngx_str_t *value;
ngx_conf_post_t *post;
- np = (int *) (p + cmd->offset);
+ np = (ngx_int_t *) (p + cmd->offset);
if (*np != NGX_CONF_UNSET) {
return "is duplicate";
{
char *p = conf;
- int *np;
+ ssize_t *sp;
ngx_str_t *value;
ngx_conf_post_t *post;
- np = (int *) (p + cmd->offset);
- if (*np != NGX_CONF_UNSET) {
+ sp = (ssize_t *) (p + cmd->offset);
+ if (*sp != NGX_CONF_UNSET) {
return "is duplicate";
}
value = (ngx_str_t *) cf->args->elts;
- *np = ngx_parse_size(&value[1]);
- if (*np == NGX_ERROR) {
+ *sp = ngx_parse_size(&value[1]);
+ if (*sp == NGX_ERROR) {
return "invalid value";
}
if (cmd->post) {
post = cmd->post;
- return post->post_handler(cf, post, np);
+ return post->post_handler(cf, post, sp);
}
return NGX_CONF_OK;
{
char *p = conf;
- int *np;
+ ngx_msec_t *msp;
ngx_str_t *value;
ngx_conf_post_t *post;
- np = (int *) (p + cmd->offset);
- if (*np != NGX_CONF_UNSET) {
+ msp = (ngx_msec_t *) (p + cmd->offset);
+ if (*msp != (ngx_msec_t) NGX_CONF_UNSET) {
return "is duplicate";
}
value = (ngx_str_t *) cf->args->elts;
- *np = ngx_parse_time(&value[1], 0);
- if (*np == NGX_ERROR) {
+ *msp = ngx_parse_time(&value[1], 0);
+ if (*msp == (ngx_msec_t) NGX_ERROR) {
return "invalid value";
}
- if (*np == NGX_PARSE_LARGE_TIME) {
+ if (*msp == (ngx_msec_t) NGX_PARSE_LARGE_TIME) {
return "value must be less than 597 hours";
}
if (cmd->post) {
post = cmd->post;
- return post->post_handler(cf, post, np);
+ return post->post_handler(cf, post, msp);
}
return NGX_CONF_OK;
{
char *p = conf;
- int *np;
+ time_t *sp;
ngx_str_t *value;
ngx_conf_post_t *post;
- np = (int *) (p + cmd->offset);
- if (*np != NGX_CONF_UNSET) {
+ sp = (time_t *) (p + cmd->offset);
+ if (*sp != NGX_CONF_UNSET) {
return "is duplicate";
}
value = (ngx_str_t *) cf->args->elts;
- *np = ngx_parse_time(&value[1], 1);
- if (*np == NGX_ERROR) {
+ *sp = ngx_parse_time(&value[1], 1);
+ if (*sp == NGX_ERROR) {
return "invalid value";
}
- if (*np == NGX_PARSE_LARGE_TIME) {
+ if (*sp == NGX_PARSE_LARGE_TIME) {
return "value must be less than 68 years";
}
if (cmd->post) {
post = cmd->post;
- return post->post_handler(cf, post, np);
+ return post->post_handler(cf, post, sp);
}
return NGX_CONF_OK;
{
char *p = conf;
- int *np, i, m;
+ ngx_int_t *np, i, m;
ngx_str_t *value;
ngx_conf_bitmask_t *mask;
- np = (int *) (p + cmd->offset);
+ np = (ngx_int_t *) (p + cmd->offset);
value = (ngx_str_t *) cf->args->elts;
mask = cmd->post;
char *ngx_conf_check_num_bounds(ngx_conf_t *cf, void *post, void *data)
{
ngx_conf_num_bounds_t *bounds = post;
- int *np = data;
+ ngx_int_t *np = data;
if (bounds->high == -1) {
if (*np >= bounds->low) {
int enable;
ngx_bufs_t bufs;
int level;
- int wbits;
- int memlevel;
+ ssize_t wbits;
+ ssize_t memlevel;
int no_buffer;
} ngx_http_gzip_conf_t;
ngx_conf_merge_bufs_value(conf->bufs, prev->bufs, 4,
/* STUB: PAGE_SIZE */ 4096);
ngx_conf_merge_value(conf->level, prev->level, 1);
- ngx_conf_merge_value(conf->wbits, prev->wbits, MAX_WBITS);
- ngx_conf_merge_value(conf->memlevel, prev->memlevel, MAX_MEM_LEVEL - 1);
+ ngx_conf_merge_size_value(conf->wbits, prev->wbits, MAX_WBITS);
+ ngx_conf_merge_size_value(conf->memlevel, prev->memlevel,
+ MAX_MEM_LEVEL - 1);
ngx_conf_merge_value(conf->no_buffer, prev->no_buffer, 0);
return NGX_CONF_OK;