From 1c3185e1fd85940350c5ade27fb80d82009b5fdc Mon Sep 17 00:00:00 2001 From: Tony Asleson Date: Fri, 8 Mar 2024 10:13:09 -0600 Subject: [PATCH] configure.ac: AC_PROG_CC->AC_PROG_CC_STDC This addresses a failure I ran into on el7 where we failed to build because -std=c99 wasn't utilized during compile. Signed-off-by: Tony Asleson --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 1a77b980..8617119d 100644 --- a/configure.ac +++ b/configure.ac @@ -46,7 +46,7 @@ LIBLED_LIBTOOL_VERSION=$CURRENT:$REVISION:$AGE AC_SUBST([LIBLED_LIBTOOL_VERSION]) -AC_PROG_CC +AC_PROG_CC_STDC AC_PROG_INSTALL AC_CONFIG_HEADERS([config_ac.h])