From b71ea38dad4eb95e95e32d0f020c01780e6d4391 Mon Sep 17 00:00:00 2001 From: Sebastian Harl Date: Sat, 1 May 2010 22:28:27 +0200 Subject: [PATCH] configure: Do not warn about variable length arrays. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This is a cool new feature of C99, actually, so I don't know why I've added that warning in the first place … ;-) --- configure.ac | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 26bfa8a..22214b4 100644 --- a/configure.ac +++ b/configure.ac @@ -164,8 +164,7 @@ if test "x$enable_strict_checks" = "xyes"; then -Wpointer-arith \ -Wshadow \ -Wstrict-prototypes \ - -Wunreachable-code \ - -Wvla; do + -Wunreachable-code; do AC_MSG_CHECKING([whether $CC accepts $flag]) if test_cc_flags $flag; then -- 2.30.2