[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-3824-g92a7d2
From: |
Arnold Robbins |
Subject: |
[gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-3824-g92a7d23 |
Date: |
Sun, 22 Sep 2019 13:33:38 -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, master has been updated
via 92a7d2382ca92b2f5fcffb757018223c6ff423f5 (commit)
from 7feb08d627491b168eba3aa353363358619d58f8 (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=92a7d2382ca92b2f5fcffb757018223c6ff423f5
commit 92a7d2382ca92b2f5fcffb757018223c6ff423f5
Author: Arnold D. Robbins <address@hidden>
Date: Fri Sep 20 10:59:34 2019 +0300
Configuration improvements.
diff --git a/ChangeLog b/ChangeLog
index da29bc2..a76a555 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2019-09-20 Florian Weimer <address@hidden>
+
+ * configure.ac (PRINTF_HAS_F_FORMAT): Include <string.h> for
+ strcmp.
+ (PRINTF_HAS_A_FORMAT): Likewise.
+ * configure: Regenerate.
+
2019-09-17 Arnold D. Robbins <address@hidden>
* awkgram.y, commands.y: Upgrade to Bison 3.4.2.
diff --git a/configure b/configure
index ee0bbbf..8d5d2d2 100755
--- a/configure
+++ b/configure
@@ -10169,6 +10169,7 @@ else
#include <stdio.h>
+#include <string.h>
int main()
{
@@ -10211,6 +10212,7 @@ else
#include <stdio.h>
+#include <string.h>
int main()
{
@@ -10455,6 +10457,8 @@ else
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
#include <stdio.h>
+#include <fcntl.h>
+#include <unistd.h>
#include <readline/readline.h>
#include <readline/history.h>
diff --git a/configure.ac b/configure.ac
index 7c01f48..f353cea 100644
--- a/configure.ac
+++ b/configure.ac
@@ -361,6 +361,7 @@ AC_MSG_CHECKING([for printf %F format])
AC_RUN_IFELSE([
AC_LANG_SOURCE([
#include <stdio.h>
+#include <string.h>
int main()
{
@@ -389,6 +390,7 @@ AC_MSG_CHECKING([for printf %a format])
AC_RUN_IFELSE([
AC_LANG_SOURCE([
#include <stdio.h>
+#include <string.h>
int main()
{
diff --git a/m4/ChangeLog b/m4/ChangeLog
index 6df93c5..a4e8450 100644
--- a/m4/ChangeLog
+++ b/m4/ChangeLog
@@ -1,3 +1,8 @@
+2019-09-10 Florian Weimer <address@hidden>
+
+ * readline.m4 (GAWK_CHECK_READLINE): Include <fcntl.h>, <unistd.h>
+ for close, open, dup.
+
2019-06-18 Arnold D. Robbins <address@hidden>
* 5.0.1: Release tar ball made.
diff --git a/m4/readline.m4 b/m4/readline.m4
index 5c0bb1e..12f389b 100644
--- a/m4/readline.m4
+++ b/m4/readline.m4
@@ -39,6 +39,8 @@ AC_DEFUN([GAWK_CHECK_READLINE],
AC_TRY_RUN(
dnl source program:
AC_LANG_SOURCE([[#include <stdio.h>
+#include <fcntl.h>
+#include <unistd.h>
#include <readline/readline.h>
#include <readline/history.h>
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 7 +++++++
configure | 4 ++++
configure.ac | 2 ++
m4/ChangeLog | 5 +++++
m4/readline.m4 | 2 ++
5 files changed, 20 insertions(+)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-3824-g92a7d23,
Arnold Robbins <=