comparison auto/cc/gcc @ 4797:d1cea70248c7 stable-1.2

Merge of r4759, r4762, r4768: configure minor fixes. *) Replaced a number of "else if" with "elif". *) Made sure to run configure in a "C" locale. Otherwise, we may fail to properly detect a version of compiler. *) Removed extraneous GCC warning flags.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 06 Aug 2012 17:03:01 +0000
parents d620f497c50f
children 29928279ec9f
comparison
equal deleted inserted replaced
4796:0327b63390be 4797:d1cea70248c7
153 153
154 case "$NGX_GCC_VER" in 154 case "$NGX_GCC_VER" in
155 3.* | 4.* ) 155 3.* | 4.* )
156 # we have a lot of the unused function arguments 156 # we have a lot of the unused function arguments
157 CFLAGS="$CFLAGS -Wno-unused-parameter" 157 CFLAGS="$CFLAGS -Wno-unused-parameter"
158 CFLAGS="$CFLAGS -Wunused-function"
159 CFLAGS="$CFLAGS -Wunused-variable"
160 CFLAGS="$CFLAGS -Wunused-value"
161 # 4.2.1 shows the warning in wrong places 158 # 4.2.1 shows the warning in wrong places
162 #CFLAGS="$CFLAGS -Wunreachable-code" 159 #CFLAGS="$CFLAGS -Wunreachable-code"
163 ;; 160 ;;
164 161
165 *) 162 *)