gawk-diffs
[Top][All Lists]
Advanced

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

[SCM] gawk branch, gawk-5.1-stable, updated. gawk-4.1.0-4206-g68d5d16


From: Arnold Robbins
Subject: [SCM] gawk branch, gawk-5.1-stable, updated. gawk-4.1.0-4206-g68d5d16
Date: Thu, 28 Jan 2021 15:23:12 -0500 (EST)

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, gawk-5.1-stable has been updated
       via  68d5d1696256371e124c8c89de3734bd270fde83 (commit)
       via  6c8aa0845f91038e08ff48f668d9c4318b93b114 (commit)
      from  e02e38ad7bd54ced8baa24cca6e931a62b0c1deb (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=68d5d1696256371e124c8c89de3734bd270fde83

commit 68d5d1696256371e124c8c89de3734bd270fde83
Author: Arnold D. Robbins <arnold@skeeve.com>
Date:   Thu Jan 28 22:22:52 2021 +0200

    Update build aux stuff.

diff --git a/build-aux/ChangeLog b/build-aux/ChangeLog
index 0ef7838..e98b18b 100644
--- a/build-aux/ChangeLog
+++ b/build-aux/ChangeLog
@@ -1,3 +1,7 @@
+2021-01-28         Arnold D. Robbins     <arnold@skeeve.com>
+
+       * config.guess, config.sub: Updated from GNULIB.
+
 2021-01-07         Arnold D. Robbins     <arnold@skeeve.com>
 
        * config.guess, config.rpath, config.sub: Updated from GNULIB.
diff --git a/build-aux/config.guess b/build-aux/config.guess
index f772702..1972fda 100755
--- a/build-aux/config.guess
+++ b/build-aux/config.guess
@@ -2,7 +2,7 @@
 # Attempt to guess a canonical system name.
 #   Copyright 1992-2021 Free Software Foundation, Inc.
 
-timestamp='2021-01-01'
+timestamp='2021-01-25'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -188,10 +188,9 @@ case 
"$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION" in
        #
        # Note: NetBSD doesn't particularly care about the vendor
        # portion of the name.  We always set it to "unknown".
-       sysctl="sysctl -n hw.machine_arch"
        UNAME_MACHINE_ARCH=$( (uname -p 2>/dev/null || \
-           "/sbin/$sysctl" 2>/dev/null || \
-           "/usr/sbin/$sysctl" 2>/dev/null || \
+           /sbin/sysctl -n hw.machine_arch 2>/dev/null || \
+           /usr/sbin/sysctl -n hw.machine_arch 2>/dev/null || \
            echo unknown))
        case "$UNAME_MACHINE_ARCH" in
            aarch64eb) machine=aarch64_be-unknown ;;
@@ -1483,8 +1482,8 @@ EOF
     i*86:rdos:*:*)
        echo "$UNAME_MACHINE"-pc-rdos
        exit ;;
-    i*86:AROS:*:*)
-       echo "$UNAME_MACHINE"-pc-aros
+    *:AROS:*:*)
+       echo "$UNAME_MACHINE"-unknown-aros
        exit ;;
     x86_64:VMkernel:*:*)
        echo "$UNAME_MACHINE"-unknown-esx
diff --git a/build-aux/config.sub b/build-aux/config.sub
index b0f8492..63c1f1c 100755
--- a/build-aux/config.sub
+++ b/build-aux/config.sub
@@ -2,7 +2,7 @@
 # Configuration validation subroutine script.
 #   Copyright 1992-2021 Free Software Foundation, Inc.
 
-timestamp='2021-01-07'
+timestamp='2021-01-08'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -1683,12 +1683,15 @@ fi
 
 # Now, validate our (potentially fixed-up) OS.
 case $os in
-       # Sometimes we do "kernel-abi", so those need to count as OSes.
+       # Sometimes we do "kernel-libc", so those need to count as OSes.
        musl* | newlib* | uclibc*)
                ;;
-       # Likewise for "kernel-libc"
+       # Likewise for "kernel-abi"
        eabi* | gnueabi*)
                ;;
+       # VxWorks passes extra cpu info in the 4th filed.
+       simlinux | simwindows | spe)
+               ;;
        # Now accept the basic system types.
        # The portable systems comes first.
        # Each alternative MUST end in a * to match a version number.
@@ -1751,6 +1754,8 @@ case $kernel-$os in
                ;;
        kfreebsd*-gnu* | kopensolaris*-gnu*)
                ;;
+       vxworks-simlinux | vxworks-simwindows | vxworks-spe)
+               ;;
        nto-qnx*)
                ;;
        os2-emx)

http://git.sv.gnu.org/cgit/gawk.git/commit/?id=6c8aa0845f91038e08ff48f668d9c4318b93b114

commit 6c8aa0845f91038e08ff48f668d9c4318b93b114
Author: Arnold D. Robbins <arnold@skeeve.com>
Date:   Thu Jan 28 22:21:42 2021 +0200

    Fix a bug with -b option.

diff --git a/ChangeLog b/ChangeLog
index ad39603..24175ad 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2021-01-28         Arnold D. Robbins     <arnold@skeeve.com>
+
+       Fix a Day One Bug!
+
+       * main.c (main): For -b option, only set LC_ALL to C if
+       not --posix. Ooops.
+
 2021-01-09         Arnold D. Robbins     <arnold@skeeve.com>
 
        Fix problems turning something like 018 into decimal.
diff --git a/main.c b/main.c
index ea3b3a5..5b153bc 100644
--- a/main.c
+++ b/main.c
@@ -359,11 +359,12 @@ main(int argc, char **argv)
        if (do_binary) {
                if (do_posix)
                        warning(_("`--posix' overrides 
`--characters-as-bytes'"));
-               else
+               else {
                        gawk_mb_cur_max = 1;    /* hands off my data! */
 #if defined(LC_ALL)
-               setlocale(LC_ALL, "C");
+                       setlocale(LC_ALL, "C");
 #endif
+               }
        }
 
        if (do_lint && os_is_setuid())

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

Summary of changes:
 ChangeLog              |  7 +++++++
 build-aux/ChangeLog    |  4 ++++
 build-aux/config.guess | 11 +++++------
 build-aux/config.sub   | 11 ++++++++---
 main.c                 |  5 +++--
 5 files changed, 27 insertions(+), 11 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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