Configure: fixed compiler warnings with "-Wall -Wextra".

This commit is contained in:
Sergey Kandaurov 2018-07-24 18:46:54 +03:00
parent a1e2c5566c
commit d5c43bf51c
4 changed files with 10 additions and 5 deletions

View File

@ -9,7 +9,8 @@
ngx_feature_incs= ngx_feature_incs=
ngx_feature_path= ngx_feature_path=
ngx_feature_libs="-lprofiler" ngx_feature_libs="-lprofiler"
ngx_feature_test="ProfilerStop()" ngx_feature_test="void ProfilerStop(void);
ProfilerStop()"
. auto/feature . auto/feature

View File

@ -9,7 +9,8 @@
ngx_feature_incs="#include <gd.h>" ngx_feature_incs="#include <gd.h>"
ngx_feature_path= ngx_feature_path=
ngx_feature_libs="-lgd" ngx_feature_libs="-lgd"
ngx_feature_test="gdImagePtr img = gdImageCreateFromGifPtr(1, NULL);" ngx_feature_test="gdImagePtr img = gdImageCreateFromGifPtr(1, NULL);
(void) img"
. auto/feature . auto/feature
@ -76,7 +77,8 @@ if [ $ngx_found = yes ]; then
ngx_feature="GD WebP support" ngx_feature="GD WebP support"
ngx_feature_name="NGX_HAVE_GD_WEBP" ngx_feature_name="NGX_HAVE_GD_WEBP"
ngx_feature_test="gdImagePtr img = gdImageCreateFromWebpPtr(1, NULL);" ngx_feature_test="gdImagePtr img = gdImageCreateFromWebpPtr(1, NULL);
(void) img"
. auto/feature . auto/feature
else else

View File

@ -16,8 +16,8 @@
ngx_feature_libs="-lxml2 -lxslt" ngx_feature_libs="-lxml2 -lxslt"
ngx_feature_test="xmlParserCtxtPtr ctxt = NULL; ngx_feature_test="xmlParserCtxtPtr ctxt = NULL;
xsltStylesheetPtr sheet = NULL; xsltStylesheetPtr sheet = NULL;
xmlDocPtr doc; xmlDocPtr doc = NULL;
doc = xmlParseChunk(ctxt, NULL, 0, 0); xmlParseChunk(ctxt, NULL, 0, 0);
xsltApplyStylesheet(sheet, doc, NULL);" xsltApplyStylesheet(sheet, doc, NULL);"
. auto/feature . auto/feature

View File

@ -185,6 +185,8 @@ ngx_feature_test="struct __user_cap_data_struct data;
data.effective = CAP_TO_MASK(CAP_NET_RAW); data.effective = CAP_TO_MASK(CAP_NET_RAW);
data.permitted = 0; data.permitted = 0;
(void) header;
(void) data;
(void) SYS_capset" (void) SYS_capset"
. auto/feature . auto/feature