diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | main.c | 2 | ||||
-rw-r--r-- | test/ChangeLog | 5 | ||||
-rw-r--r-- | test/printhuge.awk | 2 | ||||
-rw-r--r-- | test/printhuge.ok | 2 |
5 files changed, 14 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2014-07-25 Arnold D. Robbins <arnold@skeeve.com> + + * main.c (main): Add a warning message if -M is used and gawk was + compiled without MPFR/GMP. + 2014-07-24 Arnold D. Robbins <arnold@skeeve.com> * main.c (usage): Put text for `-n' *after* text for `-m'. @@ -472,6 +472,8 @@ main(int argc, char **argv) case 'M': #ifdef HAVE_MPFR do_flags |= DO_MPFR; +#else + warning(_("-M ignored: MPFR/GMP support not compiled in")); #endif break; diff --git a/test/ChangeLog b/test/ChangeLog index 79e2d538..ed673d8c 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,8 @@ +2014-07-25 Arnold D. Robbins <arnold@skeeve.com> + + * printhuge.awk: Add a newline to output. + * printhuge.ok: Adjust. + 2014-07-24 Arnold D. Robbins <arnold@skeeve.com> * badargs.ok: Adjust after correctly alphabetizing options. diff --git a/test/printhuge.awk b/test/printhuge.awk index 4d4fb7d4..1de27ecc 100644 --- a/test/printhuge.awk +++ b/test/printhuge.awk @@ -1,3 +1,3 @@ BEGIN { - printf("%c", sprintf("%c", (0xffffff00+255))) + printf("%c\n", sprintf("%c", (0xffffff00+255))) } diff --git a/test/printhuge.ok b/test/printhuge.ok index ce542efa..29e181eb 100644 --- a/test/printhuge.ok +++ b/test/printhuge.ok @@ -1 +1 @@ -ÿ
\ No newline at end of file +ÿ |