From de2214438a7bc1bcdfb5aa3cd97a079b1fc17308 Mon Sep 17 00:00:00 2001 From: abarsamian Date: Wed, 28 Nov 2018 18:06:07 -1000 Subject: [PATCH] Add AC_PROG_CC_STDC so that gcc gets called with -std=gnu99 Add AC_PROG_CC_STDC so that gcc gets called with -std=gnu99, otherwise later gccs fail to compile --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index cd43532..16dc051 100644 --- a/configure.ac +++ b/configure.ac @@ -17,6 +17,7 @@ AC_CONFIG_SRCDIR([softflowd.c]) AC_CONFIG_HEADER(config.h) AC_PROG_CC +AC_PROG_CC_STDC AC_PROG_INSTALL # Optional verbose warnings for gcc, see below