ID: 3608759 - Remove '-Wno-packed-bitfield-compat' from CFLAGS

Commit removes -Wno-packed-bitfield-compat from 'configure.in'. This was hiding
an important bug in ipmi_fru.h and is not a valid flag for older versions of
gcc.

Commit for Dan Gora
This commit is contained in:
Zdenek Styblik 2013-04-09 07:38:35 +00:00
parent 49a7ceee70
commit 41a44b037f

View File

@ -33,7 +33,7 @@ AC_CHECK_FUNCS([alarm gethostbyname socket select])
AC_CHECK_FUNCS([memmove memset strchr strdup strerror]) AC_CHECK_FUNCS([memmove memset strchr strdup strerror])
AC_CHECK_FUNCS([getpassphrase]) AC_CHECK_FUNCS([getpassphrase])
CFLAGS="$CFLAGS -fno-strict-aliasing -Wreturn-type -Wno-unused-result -Wno-packed-bitfield-compat" CFLAGS="$CFLAGS -fno-strict-aliasing -Wreturn-type -Wno-unused-result"
AM_PROG_LIBTOOL AM_PROG_LIBTOOL
LIBTOOL="$LIBTOOL --silent" LIBTOOL="$LIBTOOL --silent"