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-4278-g59e758a


From: Arnold Robbins
Subject: [SCM] gawk branch, gawk-5.1-stable, updated. gawk-4.1.0-4278-g59e758a
Date: Sun, 15 Aug 2021 10:42:29 -0400 (EDT)

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  59e758a8ee45b58c9a765a6ceed4da3775d78952 (commit)
      from  bcc0594e9b64c89b56e8ea6891c0a9f8b97c57d1 (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=59e758a8ee45b58c9a765a6ceed4da3775d78952

commit 59e758a8ee45b58c9a765a6ceed4da3775d78952
Author: Arnold D. Robbins <arnold@skeeve.com>
Date:   Sun Aug 15 10:42:09 2021 -0400

    Allow setting AR and ARFLAGS on the configure command line.

diff --git a/ChangeLog b/ChangeLog
index 4e82bff..ff1f213 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2021-08-15         Arnold D. Robbins     <arnold@skeeve.com>
+
+       Allow setting AR and ARFLAGS on the configure command line.
+       Thanks to Jacob Burkholder <jake.burkholder2@gmail.com> for
+       the report.
+
+       * configure.ac (AR_FLAGS): Provide default value.
+       (AR): Call AC_SUBST on it.
+
 2021-08-13         Arnold D. Robbins     <arnold@skeeve.com>
 
        * builtin.c (do_sub): Rationalize handling of strongly typed
diff --git a/configure b/configure
index d9003da..50a0511 100755
--- a/configure
+++ b/configure
@@ -5677,6 +5677,9 @@ unknown)
 esac
 
 
+AR_FLAGS = cru         # set default
+
+
 # This is mainly for my use during testing and development.
 # Yes, it's a bit of a hack.
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for special development 
options" >&5
diff --git a/configure.ac b/configure.ac
index 69c6524..8fe35f8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -110,6 +110,9 @@ AC_PROG_MAKE_SET
 # support/ builds libsupport.a, allow for cross version of ar
 AM_PROG_AR
 
+AR_FLAGS = cru         # set default
+AC_SUBST(AR)
+
 # This is mainly for my use during testing and development.
 # Yes, it's a bit of a hack.
 AC_MSG_CHECKING([for special development options])
diff --git a/support/ChangeLog b/support/ChangeLog
index 8baacf3..81b564a 100644
--- a/support/ChangeLog
+++ b/support/ChangeLog
@@ -1,3 +1,8 @@
+2021-08-15         Arnold D. Robbins     <arnold@skeeve.com>
+
+       * Makefile.am (AR): Set from @AR@ so that it can be set
+       at configure time.
+
 2021-06-30         Arnold D. Robbins     <arnold@skeeve.com>
 
        * dfa.c, dynarray.h, libc-config.h, regexec.c,
diff --git a/support/Makefile.am b/support/Makefile.am
index 18e5020..a2d2df0 100644
--- a/support/Makefile.am
+++ b/support/Makefile.am
@@ -26,6 +26,8 @@
 AM_CFLAGS  = @CFLAGS@
 AM_LDFLAGS = @LDFLAGS@
 
+AR = @AR@
+
 # Stuff to include in the dist that doesn't need it's own
 # Makefile.am files
 EXTRA_DIST = \

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

Summary of changes:
 ChangeLog           | 9 +++++++++
 configure           | 3 +++
 configure.ac        | 3 +++
 support/ChangeLog   | 5 +++++
 support/Makefile.am | 2 ++
 5 files changed, 22 insertions(+)


hooks/post-receive
-- 
gawk



reply via email to

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