gawk-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-1510-g4d928b


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-1510-g4d928b4
Date: Sun, 02 Aug 2015 18:30:38 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".

The branch, master has been updated
       via  4d928b409634fa305ccb26975e59ae8ca447cf12 (commit)
       via  4b00462246822209b642a4dd63491e59a4fab759 (commit)
      from  a90865d0db6d60847272d46020a14aad9901f304 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=4d928b409634fa305ccb26975e59ae8ca447cf12

commit 4d928b409634fa305ccb26975e59ae8ca447cf12
Merge: a90865d 4b00462
Author: Arnold D. Robbins <address@hidden>
Date:   Sun Aug 2 21:30:30 2015 +0300

    Merge branch 'gawk-4.1-stable'

diff --cc NEWS
index f1eb63f,0d8bdf0..081ae41
--- a/NEWS
+++ b/NEWS
@@@ -5,68 -5,11 +5,73 @@@
     are permitted in any medium without royalty provided the copyright
     notice and this notice are preserved.
  
 +Changes from 4.1.x to 4.2.0
 +---------------------------
 +
 +1. If not in POSIX mode, changes to ENVIRON are reflected into
 +   gawk's environment, affecting any programs run by system()
 +   or for piped redirections. This can also affect built-in routines, such
 +   as mktime(), which is typically influenced by the TZ environment variable.
 +
 +2. The series of numbers returned by rand() should now be "more
 +   random" than previously.  Gawk's rand() remains repeatable; you will
 +   get the same series of numbers each time you call rand() repeatedly,
 +   but this will be a different series than previously.
 +
 +3. The --pretty-print option no longer runs the program too.
 +
 +4. The igawk script and igawk.1 man page are no longer installed by
 +   `make install'.  They have been obsolete since gawk 4.0.0.
 +
 +5. Gawk now has a `intdiv()' function to perform integer division; this is
 +   primarily useful for the -M option to avoid MPFR division when all
 +   values involved are integers.
 +
 +6. Gawk can now be built with CMake.  This is an alternative build
 +   system for those who may want it; gawk is not going to switch off
 +   use of the autotools anytime soon, if ever.
 +
 +7. Gawk now processes a maximum of two hexadecimal digits in \x
 +   escape sequences inside strings.
 +
 +8. MirBSD is no longer supported.
 +
 +9. Pretty printing now preserves comments and places them into the
 +   pretty-printed file.
 +
 +10. `make install' now installs shell startup files
 +    $sysconfdir/profile.d/gawk.{csh,sh} containing shell functions to
 +    manipulate the AWKPATH and AWKLIBPATH environment variables.  On a Fedora
 +    system, these files belong in /etc/profile.d, but the appropriate location
 +    may be different on other platforms.
 +
 +11. Gawk now supports retryable I/O via PROCINFO[input-file, "RETRY"]; see
 +    the manual.
 +
 +12. The API minor version has been increased to 2; the get_file()
 +    API provides access to open redirections. Also see the manual.
 +
 +13. Revisions in the POSIX standard remove the special case for POSIX
 +    mode when FS = " " where newline was not a field separator. The code
 +    and doc have been updated.
 +
 +14. Gawk now supports strongly typed regexp constants. Such constants
 +    look like @/.../.  You can assign them to variables, pass them to
 +    functions, use them in ~, !~ and the case part of a switch statement.
 +    More details are provided in the manual.
 +
 +15. The new typeof() function can be used to indicate if a variable or
 +    array element is an array, regexp, string or number.  The isarray()
 +    function is deprecated in favor of typeof().
 +
 +16. As promised when 4.1 was released, the old extension mechanism,
 +    using the `extension' function, is now gone.
 +
+ Changes from 4.1.3 to 4.1.x
+ ---------------------------
+ 
+ 1. Updated to GNU autoconf 2.69, automake 1.15, gettext 0.19.5.1.
+ 
  Changes from 4.1.2 to 4.1.3
  ---------------------------
  

-----------------------------------------------------------------------

Summary of changes:
 NEWS                |    5 +
 configh.in          |    6 +-
 configure           |  113 ++++++++-------
 extension/configure |   10 +-
 m4/ChangeLog        |   10 ++
 m4/codeset.m4       |   14 +-
 m4/extern-inline.m4 |  100 +++++++++++++
 m4/fcntl-o.m4       |  134 ++++++++++++++++++
 m4/glibc2.m4        |    7 +-
 m4/glibc21.m4       |   14 ++-
 m4/intdiv0.m4       |   15 ++-
 m4/intl.m4          |   72 +++++-----
 m4/intlmacosx.m4    |   25 ++--
 m4/intmax.m4        |   13 +-
 m4/inttypes-pri.m4  |   16 ++-
 m4/inttypes_h.m4    |   19 ++-
 m4/lcmessage.m4     |   12 +-
 m4/lock.m4          |   25 ++--
 m4/longlong.m4      |   87 ++++++------
 m4/printf-posix.m4  |   23 ++--
 m4/size_max.m4      |   16 ++-
 m4/stdint_h.m4      |   17 ++-
 m4/threadlib.m4     |  389 +++++++++++++++++++++++++++++++++++++++++++++++++++
 m4/visibility.m4    |   25 ++--
 m4/wchar_t.m4       |   14 ++-
 m4/wint_t.m4        |   14 ++-
 m4/xsize.m4         |    5 +-
 27 files changed, 955 insertions(+), 245 deletions(-)
 create mode 100644 m4/extern-inline.m4
 create mode 100644 m4/fcntl-o.m4
 create mode 100644 m4/threadlib.m4


hooks/post-receive
-- 
gawk



reply via email to

[Prev in Thread] Current Thread [Next in Thread]