configure.ac: define a c standard instead of using the compilers default

Change-Id: I9867adbed211db0a7b42ac3557f56c3042a67936
diff --git a/configure.ac b/configure.ac
index 0c8a73f..f1a4ed4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -39,6 +39,9 @@
 	AC_MSG_ERROR([Please install autoconf-archive; re-run 'autoreconf -fi' for it to take effect.])
 	])
 
+dnl use a defined standard across all builds and don't depend on compiler default
+CFLAGS="$CFLAGS -std=gnu11"
+
 dnl checks for libraries
 AC_SEARCH_LIBS([dlopen], [dl dld], [LIBRARY_DL="$LIBS";LIBS=""])
 AC_SUBST(LIBRARY_DL)