Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Dounin <mdounin@mdounin.ru>2016-04-01 16:38:30 +0300
committerMaxim Dounin <mdounin@mdounin.ru>2016-04-01 16:38:30 +0300
commitcab0ac3d5086ae87b80b7cc79e6472e6a4bd8ac0 (patch)
tree0a0f34cb5942712be6e66eeb9017f220ca60ffb0 /auto/types
parent622d152b9f936ddc15deac05b3e5b5f60a9d13bb (diff)
Configure: improved multiple types handling in auto/types/typedef.
Diffstat (limited to 'auto/types')
-rw-r--r--auto/types/typedef6
1 files changed, 5 insertions, 1 deletions
diff --git a/auto/types/typedef b/auto/types/typedef
index f167e80d9..b55237e93 100644
--- a/auto/types/typedef
+++ b/auto/types/typedef
@@ -50,7 +50,11 @@ END
fi
if [ $ngx_found = no ]; then
- echo $ngx_n " $ngx_try not found$ngx_c"
+ if [ $ngx_try = $ngx_type ]; then
+ echo $ngx_n " $ngx_try not found$ngx_c"
+ else
+ echo $ngx_n ", $ngx_try not found$ngx_c"
+ fi
echo "----------" >> $NGX_AUTOCONF_ERR
cat $NGX_AUTOTEST.c >> $NGX_AUTOCONF_ERR