diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-05-01 05:10:48 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-05-01 05:10:48 -0700 |
commit | 8bc5f7bbe3eca9286d62088cc1a147281518959d (patch) | |
tree | c2a381b33723917ba771736bd6494f19a225de1c | |
parent | 9b8277ab5fc95cab79d9055607f539bb30d0bad1 (diff) | |
download | txr-8bc5f7bbe3eca9286d62088cc1a147281518959d.tar.gz txr-8bc5f7bbe3eca9286d62088cc1a147281518959d.tar.bz2 txr-8bc5f7bbe3eca9286d62088cc1a147281518959d.zip |
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.
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |