summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/host/gprsdecode/configure.ac2
-rw-r--r--src/host/layer23/configure.ac2
-rw-r--r--src/host/osmocon/configure.ac2
-rw-r--r--src/host/virt_phy/configure.ac2
4 files changed, 8 insertions, 0 deletions
diff --git a/src/host/gprsdecode/configure.ac b/src/host/gprsdecode/configure.ac
index 8da68c80..734cbd30 100644
--- a/src/host/gprsdecode/configure.ac
+++ b/src/host/gprsdecode/configure.ac
@@ -2,6 +2,8 @@ dnl Process this file with autoconf to produce a configure script
AC_INIT([gprsdecode], [0.0.0])
AM_INIT_AUTOMAKE
+CFLAGS="$CFLAGS -std=gnu11"
+
dnl kernel style compile messages
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
diff --git a/src/host/layer23/configure.ac b/src/host/layer23/configure.ac
index 053cf58a..85765ae4 100644
--- a/src/host/layer23/configure.ac
+++ b/src/host/layer23/configure.ac
@@ -2,6 +2,8 @@ dnl Process this file with autoconf to produce a configure script
AC_INIT([layer23], [0.0.0])
AM_INIT_AUTOMAKE
+CFLAGS="$CFLAGS -std=gnu11"
+
dnl kernel style compile messages
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
diff --git a/src/host/osmocon/configure.ac b/src/host/osmocon/configure.ac
index 556f60ba..4195ecd7 100644
--- a/src/host/osmocon/configure.ac
+++ b/src/host/osmocon/configure.ac
@@ -5,6 +5,8 @@ AC_INIT([osmocon],
AM_INIT_AUTOMAKE([dist-bzip2])
+CFLAGS="$CFLAGS -std=gnu11"
+
dnl kernel style compile messages
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
diff --git a/src/host/virt_phy/configure.ac b/src/host/virt_phy/configure.ac
index 97c2e191..2a29bc8b 100644
--- a/src/host/virt_phy/configure.ac
+++ b/src/host/virt_phy/configure.ac
@@ -3,6 +3,8 @@ AC_INIT([virtphy], 0.0.0)
AM_CONFIG_HEADER([config.h])
AM_INIT_AUTOMAKE([foreign dist-bzip2 subdir-objects])
+CFLAGS="$CFLAGS -std=gnu11"
+
dnl kernel style compile messages
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])