Share

Wrapper for AWK providing modules

File Release Notes and Changelog

Release Name: runawk-0.14.3

Notes:
Version 0.14.3, by Aleksey Cheusov, Sat, 18 Oct 2008 19:39:47 +0300

   The following code fails with nawk (seen on NetBSD)
                  runawk -e ' { print "123" } ' /dev/null
     It says
                  /usr/bin/awk: can't open file --
                   source line number 7
     This happens because nawk treats `--' after program as a generic file.

   fixed: compilation bug under FreeBSD (WARNS=4 -> warning -> error)
   caused by comparison of signed with unsigned

   More verbose output when stat(filename) failed

   modules/str2regexp.awk: adapted to buggy MAWK


Changes: 2008-10-19 Aleksey Cheusov <vle@gmx.net> * Makefile: sinclude removed 2008-10-18 Aleksey Cheusov <vle@gmx.net> * Makefile, NEWS: version -> 0.14.3, release notes * tests/test.out, tests/test.sh: more regression tests for recently found bug * runawk.c: fixed: compilation bug under FreeBSD (WARNS=4 -> warning -> error) * runawk.c, tests/test.out, tests/test.sh: The following code fails with nawk (seen on NetBSD) runawk -e ' { print "123" } ' /dev/null It says /usr/bin/awk: can't open file -- source line number 7 This happens because nawk treats `--' after program as a generic file. * tests/test_tokenre: bad NF is output * tests/test_multisub: more verbose output * modules/str2regexp.awk: str2regexp adapted to buggy MAWK * Makefile: buggy mawk and heirloom/bin/nawk excluded from tests 2008-10-06 Aleksey Cheusov <vle@gmx.net> * tests/test.out: update according to recent changes in code 2008-10-05 Aleksey Cheusov <vle@gmx.net> * runawk.c: more verbose output when stat(filename) failed