ID:355 - Change CFLAG -std=c99 to -std=gnu99

... until we're more C99 compliant and ready, because C99 flag really and
seriously breaks IPMI tool, or so it seems.
This commit is contained in:
Zdenek Styblik 2016-04-10 17:36:12 +02:00
parent c7169bc27e
commit 19293f08df

View File

@ -32,7 +32,7 @@ AC_CHECK_FUNCS([alarm gethostbyname getaddrinfo getifaddrs socket select])
AC_CHECK_FUNCS([memmove memset strchr strdup strerror])
AC_CHECK_FUNCS([getpassphrase])
CFLAGS="$CFLAGS -Wall -Wextra -std=c99 -pedantic -Wformat -Wformat-nonliteral"
CFLAGS="$CFLAGS -Wall -Wextra -std=gnu99 -pedantic -Wformat -Wformat-nonliteral"
AM_PROG_LIBTOOL
LIBTOOL="$LIBTOOL --silent"