gawk-diffs
[Top][All Lists]
Advanced

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

[gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-308


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-3085-gc856f5c
Date: Thu, 6 Dec 2018 14:51:10 -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-4.2-stable has been updated
       via  c856f5c96f88cc8a5aacf6ee90e92ed80bd8c3ba (commit)
      from  9b393a2e9d9d46ddea86e20bffaa0214cd40204b (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=c856f5c96f88cc8a5aacf6ee90e92ed80bd8c3ba

commit c856f5c96f88cc8a5aacf6ee90e92ed80bd8c3ba
Author: Arnold D. Robbins <address@hidden>
Date:   Thu Dec 6 21:50:41 2018 +0200

    Configuration stuff updates, including no optimization.

diff --git a/ChangeLog b/ChangeLog
index a252b9b..b20df74 100755
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2018-12-06         Arnold D. Robbins     <address@hidden>
+
+       * configure.ac: Add -ggdb3 to CFLAGS if developing and remove
+       -O2 from Makefile, extension/Makefile, and support/Makefile.
+       * config.guess, config.sub: Updated from GNULIB.
+
 2018-11-25         Arnold D. Robbins     <address@hidden>
 
        * config.sub: Updated from GNULIB.
diff --git a/config.guess b/config.guess
index 18f8edc..47d7bed 100755
--- a/config.guess
+++ b/config.guess
@@ -2,7 +2,7 @@
 # Attempt to guess a canonical system name.
 #   Copyright 1992-2018 Free Software Foundation, Inc.
 
-timestamp='2018-08-29'
+timestamp='2018-11-28'
 
 # 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
@@ -1424,6 +1424,9 @@ EOF
     amd64:Isilon\ OneFS:*:*)
        echo x86_64-unknown-onefs
        exit ;;
+    *:Unleashed:*:*)
+       echo "$UNAME_MACHINE"-unknown-unleashed"$UNAME_RELEASE"
+       exit ;;
 esac
 
 echo "$0: unable to guess system type" >&2
diff --git a/config.sub b/config.sub
index b29f8f1..4670805 100755
--- a/config.sub
+++ b/config.sub
@@ -2,7 +2,7 @@
 # Configuration validation subroutine script.
 #   Copyright 1992-2018 Free Software Foundation, Inc.
 
-timestamp='2018-08-29'
+timestamp='2018-11-28'
 
 # 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
@@ -1361,7 +1361,7 @@ case $os in
             | powermax* | dnix* | nx6 | nx7 | sei* | dragonfly* \
             | skyos* | haiku* | rdos* | toppers* | drops* | es* \
             | onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \
-            | midnightbsd* | amdhsa*)
+            | midnightbsd* | amdhsa* | unleashed*)
        # Remember, each alternative MUST END IN *, to match a version number.
                ;;
        qnx*)
diff --git a/configure b/configure
index b07b156..b3ba275 100755
--- a/configure
+++ b/configure
@@ -5444,7 +5444,7 @@ then
        # enable debugging using macros also
        if test "$GCC" = yes
        then
-               CFLAGS="$CFLAGS -Wall -fno-builtin -g3"
+               CFLAGS="$CFLAGS -Wall -fno-builtin -g3 -ggdb3"
        fi
        { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 $as_echo "yes" >&6; }
@@ -12830,3 +12830,11 @@ if test -n "$ac_unrecognized_opts" && test 
"$enable_option_checking" != no; then
 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
 fi
 
+if test "$GCC" = yes && test -f $srcdir/.developing
+then
+       for i in . support extension
+       do
+               sed '/-O2/s///' $i/Makefile > foo
+               mv foo $i/Makefile
+       done
+fi
diff --git a/configure.ac b/configure.ac
index 01cab0e..c6c7e50 100644
--- a/configure.ac
+++ b/configure.ac
@@ -133,7 +133,7 @@ then
        # enable debugging using macros also
        if test "$GCC" = yes
        then
-               CFLAGS="$CFLAGS -Wall -fno-builtin -g3"
+               CFLAGS="$CFLAGS -Wall -fno-builtin -g3 -ggdb3"
        fi
        AC_MSG_RESULT([yes])
 else
@@ -485,3 +485,11 @@ then
        AC_CONFIG_SUBDIRS(extension)
 fi
 AC_OUTPUT
+if test "$GCC" = yes && test -f $srcdir/.developing
+then
+       for i in . support extension
+       do
+               sed '/-O2/s///' $i/Makefile > foo
+               mv foo $i/Makefile
+       done
+fi
diff --git a/extension/build-aux/ChangeLog b/extension/build-aux/ChangeLog
index 25828dc..828d4b1 100644
--- a/extension/build-aux/ChangeLog
+++ b/extension/build-aux/ChangeLog
@@ -1,3 +1,7 @@
+2018-12-06         Arnold D. Robbins     <address@hidden>
+
+       * config.guess, config.sub: Updated from GNULIB.
+
 2018-11-25         Arnold D. Robbins     <address@hidden>
 
        * config.sub: Updated from GNULIB.
diff --git a/extension/build-aux/config.guess b/extension/build-aux/config.guess
index 18f8edc..47d7bed 100755
--- a/extension/build-aux/config.guess
+++ b/extension/build-aux/config.guess
@@ -2,7 +2,7 @@
 # Attempt to guess a canonical system name.
 #   Copyright 1992-2018 Free Software Foundation, Inc.
 
-timestamp='2018-08-29'
+timestamp='2018-11-28'
 
 # 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
@@ -1424,6 +1424,9 @@ EOF
     amd64:Isilon\ OneFS:*:*)
        echo x86_64-unknown-onefs
        exit ;;
+    *:Unleashed:*:*)
+       echo "$UNAME_MACHINE"-unknown-unleashed"$UNAME_RELEASE"
+       exit ;;
 esac
 
 echo "$0: unable to guess system type" >&2
diff --git a/extension/build-aux/config.sub b/extension/build-aux/config.sub
index b29f8f1..4670805 100755
--- a/extension/build-aux/config.sub
+++ b/extension/build-aux/config.sub
@@ -2,7 +2,7 @@
 # Configuration validation subroutine script.
 #   Copyright 1992-2018 Free Software Foundation, Inc.
 
-timestamp='2018-08-29'
+timestamp='2018-11-28'
 
 # 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
@@ -1361,7 +1361,7 @@ case $os in
             | powermax* | dnix* | nx6 | nx7 | sei* | dragonfly* \
             | skyos* | haiku* | rdos* | toppers* | drops* | es* \
             | onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \
-            | midnightbsd* | amdhsa*)
+            | midnightbsd* | amdhsa* | unleashed*)
        # Remember, each alternative MUST END IN *, to match a version number.
                ;;
        qnx*)

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

Summary of changes:
 ChangeLog                        |  6 ++++++
 config.guess                     |  5 ++++-
 config.sub                       |  4 ++--
 configure                        | 10 +++++++++-
 configure.ac                     | 10 +++++++++-
 extension/build-aux/ChangeLog    |  4 ++++
 extension/build-aux/config.guess |  5 ++++-
 extension/build-aux/config.sub   |  4 ++--
 8 files changed, 40 insertions(+), 8 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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