1
1

turn off -ansi because it breaks things badly on linux

This commit was SVN r972.
Этот коммит содержится в:
Brian Barrett 2004-03-26 07:04:45 +00:00
родитель bbc67b25c8
Коммит 2d35d7981d

Просмотреть файл

@ -42,7 +42,7 @@ LAM_CFLAGS_BEFORE_PICKY="$CFLAGS"
if test "$GCC" = "yes" -a "$WANT_PICKY_COMPILER" = 1; then
add="-Wall -Wundef -Wno-long-long"
add="$add -Wmissing-prototypes -Wstrict-prototypes"
add="$add -Wcomment -pedantic -ansi"
add="$add -Wcomment -pedantic"
# see if -Wno-long-double works...
CFLAGS_orig="$CFLAGS"