From 5c299758b9d26c4d233f49b92e18c558558dea5c Mon Sep 17 00:00:00 2001 From: Nathaniel McCallum Date: Mon, 16 Dec 2013 16:10:05 -0500 Subject: Enable building in C99 mode C99 is supported on all compilers we target and provides some useful features, including: * Standard struct initializers * Compound literals * For-loop declarations * Standard bool type * Variable arrays (use with caution) * Too many others to mention... Reviewed-By: Alexander Bokovoy --- ipa-client/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipa-client/configure.ac') diff --git a/ipa-client/configure.ac b/ipa-client/configure.ac index 82b09615..34625622 100644 --- a/ipa-client/configure.ac +++ b/ipa-client/configure.ac @@ -13,7 +13,7 @@ AM_INIT_AUTOMAKE([foreign]) AM_MAINTAINER_MODE -AC_PROG_CC +AC_PROG_CC_C99 AC_STDC_HEADERS AC_DISABLE_STATIC -- cgit