diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2020-01-07 14:40:27 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2020-01-07 14:40:27 -0800 |
commit | e9ddfed55490cc9f41f700fb98340fa6a9536aaa (patch) | |
tree | 961e90265bfa9832e10de1913d83562774530efe /configure | |
parent | b53b9fba153f5f704eb9b7a67cd59ad3e3be35ae (diff) | |
download | txr-e9ddfed55490cc9f41f700fb98340fa6a9536aaa.tar.gz txr-e9ddfed55490cc9f41f700fb98340fa6a9536aaa.tar.bz2 txr-e9ddfed55490cc9f41f700fb98340fa6a9536aaa.zip |
config.h: double definition of FLO_MAX_DIG
* configure: add missing break statement into the loop that
determines the definition for FLO_MAX_DIG, so we don't add
multiple definitions. This reproduces on the Musl library.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1435,6 +1435,7 @@ int main(void) printf "yes (%s)\n" $try_sym printf "#define FLO_MAX_DIG $try_sym\n" >> config.h have_dbl_decimal_dig=y + break fi done |