2017-01-14 02:03:39 +01:00
|
|
|
$NetBSD: distinfo,v 1.38 2017/01/14 01:03:39 ryoon Exp $
|
2001-04-17 13:22:34 +02:00
|
|
|
|
2017-01-14 02:03:39 +01:00
|
|
|
SHA1 (gawk-4.1.4.tar.xz) = d67e00e2f6178e9cbd2c0ba923ae157bc0b3b570
|
|
|
|
RMD160 (gawk-4.1.4.tar.xz) = 7f0b1ec45c207cf365bc9b93c7e0b247e6c57186
|
|
|
|
SHA512 (gawk-4.1.4.tar.xz) = 6a0e9cf086544212f54b54261dcd517b611aaf495ef99c4b7740d07e363bb00c5632f3d7fd5e12a954d5aa9793764162a57453e0e18884b29c6c54b5f444c097
|
|
|
|
Size (gawk-4.1.4.tar.xz) = 2367832 bytes
|
2015-05-28 08:35:25 +02:00
|
|
|
SHA1 (patch-Makefile.in) = 8330ac068dcb712539465a467a42f713ee4a8a73
|
2013-12-26 20:19:31 +01:00
|
|
|
SHA1 (patch-awk.h) = 2292be5ec392e7fea5688fbb18012a735e43803f
|
2015-04-19 16:26:06 +02:00
|
|
|
SHA1 (patch-debug.c) = 40c423e2ddbb7de1eb35bb4b7b4452f8f2ebec01
|
Update to 4.1.2
Upstream changes:
Changes from 4.1.1 to 4.1.2
---------------------------
1. The manual has been considerably improved.
- Thoroughly reviewed and updated.
- Out-of-date examples replaced.
- Chapter 15 on MPFR reworked.
- Summary sections added to all chapters.
- Exercises added in several chapters.
- Heavily proof-read and copyedited.
2. The debugger's "restart" command now works again.
3. Redirected getline is now allowed inside BEGINFILE/ENDFILE.
4. A number of bugs have been fixed in the MPFR code.
5. Indirect function calls now work for both built-in and extension functions.
6. Built-in functions are now included in FUNCTAB.
7. POSIX and historical practice require the exclusive use of the English
alphabet in identifiers. In non-English locales, it was accidentally
possible to use "letters" beside those of the English alphabet. This
has been fixed. (isalpha and isalnum are NOT our friends.)
If you feel that you must have this misfeature, use `configure --help'
to see what option to use when configuring gawk to reenable it.
8. The "where" command has been added to the debugger as an alias
for "backtrace". This will make life easier for long-time GDB users.
9. Gawk no longer explicitly checks the current directory after doing
a path search of AWKPATH. The default value continues to have "." at
the front, so most people should not be affected. If you have your own
AWKPATH setting, be sure to put "." in it somewhere. The documentation
has been updated and clarified.
10. Infrastructure upgrades: Automake 1.15, Gettext 0.19.4, Libtool 2.4.6,
Bison 3.0.4.
11. If a user-defined function has a parameter with the same name as another
user-defined function, it is no longer possible to call the second
function from inside the first.
12. POSIX requires that the names of function parameters not be the
same as any of the special built-in variables and also not conflict
with the names of any functions. Gawk has checked for the former
since 3.1.7. With --posix, it now also checks for the latter.
13. The test suite should check for necessary locales and skip the tests
where it matters if support isn't what it should be.
14. Gawk now expects to be compiled on a system with multibyte character
support. Systems without such support, at least at the C language
level, are so obsolete as to not be worth supporting anymore.
15. A number of bugs have been fixed. See the ChangeLog.
2015-05-01 04:02:40 +02:00
|
|
|
SHA1 (patch-extension_Makefile.in) = 7a03efc54d0fe54ef94fbe6f35d5145b61cb0f07
|
Update to 4.1.1
Changelog:
Changes from 4.1.0 to 4.1.1
---------------------------
1. The "stat" extension now includes a "devbsize" element which indicates
the units for the "nblocks" element.
2. The extension facility now works on MinGW. Many of the extensions can be
built and used directly.
3. A number of bugs in the pretty-printing / profiling code have been fixed.
4. Sockets and two-way pipes now work under MinGW.
5. The debugger now lists source code correctly under Cygwin.
6. Configuration and building with the Mac OS X libreadline should work now.
7. The -O option now works again.
8. The --include option, documented since 4.0, now actually works.
9. Infrastructure updated to automake 1.13.4, bison 3.0.2, and
libtool 2.4.2.418.
10. The configure script now accepts a --disable-extensions option,
which disables checking for and building the extensions.
11. The VMS port has been considerably improved. In particular config.h
is now generated by a DCL script. Also, the extension facility works
and several of the extensions can be built and used. Currently, the
extension facility only works on Alpha and Itanium.
12. The API now provides functions pointers for malloc(), calloc(),
realloc() and free(), to insure that the same memory allocation
functions are always used. This bumps the minor version by one.
13. The printf quote flag now works correctly in locales with a different
decimal point character but without a thousands separator character.
If the thousands separator is a string, it will be correctly added
to decimal numbers.
14. The readfile extension now has an input parser that will read whole
files as a single record.
15. A number of bugs have been fixed. See the ChangeLog.
2014-06-07 01:24:10 +02:00
|
|
|
SHA1 (patch-extension_filefuncs.c) = 212774354ab55f69ff67728470ab23b43e038093
|
2015-12-30 00:34:43 +01:00
|
|
|
SHA1 (patch-extension_gawkfts.c) = a88ac0ed14be5133cf081bf25ab8663f0f3372a7
|
2016-09-08 18:16:15 +02:00
|
|
|
SHA1 (patch-extension_inplace.c) = 3a8f5c091cfa4d6f8a8d048bd74166defbd85908
|
Update to 4.1.1
Changelog:
Changes from 4.1.0 to 4.1.1
---------------------------
1. The "stat" extension now includes a "devbsize" element which indicates
the units for the "nblocks" element.
2. The extension facility now works on MinGW. Many of the extensions can be
built and used directly.
3. A number of bugs in the pretty-printing / profiling code have been fixed.
4. Sockets and two-way pipes now work under MinGW.
5. The debugger now lists source code correctly under Cygwin.
6. Configuration and building with the Mac OS X libreadline should work now.
7. The -O option now works again.
8. The --include option, documented since 4.0, now actually works.
9. Infrastructure updated to automake 1.13.4, bison 3.0.2, and
libtool 2.4.2.418.
10. The configure script now accepts a --disable-extensions option,
which disables checking for and building the extensions.
11. The VMS port has been considerably improved. In particular config.h
is now generated by a DCL script. Also, the extension facility works
and several of the extensions can be built and used. Currently, the
extension facility only works on Alpha and Itanium.
12. The API now provides functions pointers for malloc(), calloc(),
realloc() and free(), to insure that the same memory allocation
functions are always used. This bumps the minor version by one.
13. The printf quote flag now works correctly in locales with a different
decimal point character but without a thousands separator character.
If the thousands separator is a string, it will be correctly added
to decimal numbers.
14. The readfile extension now has an input parser that will read whole
files as a single record.
15. A number of bugs have been fixed. See the ChangeLog.
2014-06-07 01:24:10 +02:00
|
|
|
SHA1 (patch-test_Makefile.in) = 7610407e0735f4b78b568e24717f3f103f8566d3
|