comparison auto/cc/icc @ 6504:293413010217

Fixed spelling.
author Josh Soref <timeless@gmail.com>
date Thu, 07 Apr 2016 11:50:13 +0300
parents d620f497c50f
children 9eefb38f0005
comparison
equal deleted inserted replaced
6503:abc3be8d92ef 6504:293413010217
87 # external declaration in primary source file 87 # external declaration in primary source file
88 CFLAGS="$CFLAGS -wd1419" 88 CFLAGS="$CFLAGS -wd1419"
89 89
90 case "$NGX_ICC_VER" in 90 case "$NGX_ICC_VER" in
91 9.*) 91 9.*)
92 # "cc" clobber ignored, warnings for Liunx's htonl()/htons() 92 # "cc" clobber ignored, warnings for Linux's htonl()/htons()
93 CFLAGS="$CFLAGS -wd1469" 93 CFLAGS="$CFLAGS -wd1469"
94 # explicit conversion of a 64-bit integral type to a smaller 94 # explicit conversion of a 64-bit integral type to a smaller
95 # integral type 95 # integral type
96 CFLAGS="$CFLAGS -wd1683" 96 CFLAGS="$CFLAGS -wd1683"
97 # conversion from pointer to same-sized integral type, 97 # conversion from pointer to same-sized integral type,
101 # warning on SvTRUE() 101 # warning on SvTRUE()
102 CFLAGS="$CFLAGS -wd1572" 102 CFLAGS="$CFLAGS -wd1572"
103 ;; 103 ;;
104 104
105 8.*) 105 8.*)
106 # "cc" clobber ignored, warnings for Liunx's htonl()/htons() 106 # "cc" clobber ignored, warnings for Linux's htonl()/htons()
107 CFLAGS="$CFLAGS -wd1469" 107 CFLAGS="$CFLAGS -wd1469"
108 # floating-point equality and inequality comparisons are unreliable, 108 # floating-point equality and inequality comparisons are unreliable,
109 # warning on SvTRUE() 109 # warning on SvTRUE()
110 CFLAGS="$CFLAGS -wd1572" 110 CFLAGS="$CFLAGS -wd1572"
111 ;; 111 ;;