From 8bc5f7bbe3eca9286d62088cc1a147281518959d Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Sat, 1 May 2021 05:10:48 -0700 Subject: configure: use -ansi, not -std=c90. * configure: In maintainer mode, we specify C90. Some versions of clang don't like -std=c90, but only the -ansi option. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index a3b47e6b..18f681d7 100755 --- a/configure +++ b/configure @@ -798,7 +798,7 @@ if [ $cplusplus ] ; then else printf "no\n" if [ $maintainer ] ; then - lang_flags="-std=c90 $lang_flags" + lang_flags="-ansi $lang_flags" else lang_flags="-std=c99 $lang_flags" fi -- cgit v1.2.3