diff options
Diffstat (limited to 'pc')
-rw-r--r-- | pc/ChangeLog | 5 | ||||
-rw-r--r-- | pc/Makefile.tst | 6 | ||||
-rw-r--r-- | pc/config.h | 9 |
3 files changed, 14 insertions, 6 deletions
diff --git a/pc/ChangeLog b/pc/ChangeLog index 399dcc90..37821c66 100644 --- a/pc/ChangeLog +++ b/pc/ChangeLog @@ -1,3 +1,8 @@ +2021-05-05 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.tst: Rebuilt. + * config.h: Rebuilt. + 2021-02-13 Arnold D. Robbins <arnold@skeeve.com> * Makefile.tst: Rebuilt. diff --git a/pc/Makefile.tst b/pc/Makefile.tst index 573981fc..d37233b5 100644 --- a/pc/Makefile.tst +++ b/pc/Makefile.tst @@ -1037,8 +1037,8 @@ testext:: @$(AWK) ' /^(@load|BEGIN)/,/^}/' "$(top_srcdir)"/extension/testext.c > testext.awk @$(AWK) -f ./testext.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-if echo "$$GAWK_TEST_ARGS" | egrep -q -e '-M|--bignum'; \ - then cmp "."/$@-mpfr.ok _$@ && rm -f _$@ testext.awk testexttmp.txt ; \ - else cmp "."/$@.ok _$@ && rm -f _$@ testext.awk testexttmp.txt ; fi + then cmp "$(srcdir)"/$@-mpfr.ok _$@ && rm -f _$@ testext.awk testexttmp.txt ; \ + else cmp "$(srcdir)"/$@.ok _$@ && rm -f _$@ testext.awk testexttmp.txt ; fi getfile: @echo $@ @@ -1238,7 +1238,7 @@ iolint: @echo $@ @echo hello > 'echo hello' @touch 'exec cat' ; chmod 755 'exec cat' - @$(AWK) -f "$(srcdir)"/$@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ + @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ @-$(RM) -f cat 'echo hello' 'exec cat' f1 f2 md5sum diff --git a/pc/config.h b/pc/config.h index 5e6a2701..294201c5 100644 --- a/pc/config.h +++ b/pc/config.h @@ -29,9 +29,9 @@ /* Define to 1 if you have the `btowc' function. */ #define HAVE_BTOWC 1 -/* Define to 1 if you have the Mac OS X function CFLocaleCopyCurrent in the - CoreFoundation framework. */ -#undef HAVE_CFLOCALECOPYCURRENT +/* Define to 1 if you have the Mac OS X function + CFLocaleCopyPreferredLanguages in the CoreFoundation framework. */ +#undef HAVE_CFLOCALECOPYPREFERREDLANGUAGES /* Define to 1 if you have the Mac OS X function CFPreferencesCopyAppValue in the CoreFoundation framework. */ @@ -191,6 +191,9 @@ /* Define to 1 if you have fully functional mpfr and gmp libraries. */ /* #undef HAVE_MPFR */ +/* Define to 1 if you have the `mtrace' function. */ +#undef HAVE_MTRACE + /* Define to 1 if you have the <netdb.h> header file. */ #undef HAVE_NETDB_H |