[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-310
From: |
John Malmberg |
Subject: |
[gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-3103-g68e8a8a |
Date: |
Wed, 9 Jan 2019 09:31:04 -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 68e8a8a5bb52a3db4971204e2e23cab2eb29097b (commit)
from a5dd80bb2b2ad33e0397b48d0ab2b220ed040f9e (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=68e8a8a5bb52a3db4971204e2e23cab2eb29097b
commit 68e8a8a5bb52a3db4971204e2e23cab2eb29097b
Author: John Malmberg <address@hidden>
Date: Wed Jan 9 08:29:41 2019 -0600
Fixes for building on OpenVMS
diff --git a/ChangeLog b/ChangeLog
index fc4eec5..86ba9b2 100755
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2019-01-09 John E. Malmberg <address@hidden>
+
+ * awk.h: For non GCC, have __attribute__ definition match
+ support/regex_internal.h exactly.
+
2019-01-08 Arnold D. Robbins <address@hidden>
* interpret.h (r_interpret): For a translatable string, only copy
diff --git a/awk.h b/awk.h
index e3f458b..6c82040 100644
--- a/awk.h
+++ b/awk.h
@@ -3,7 +3,7 @@
*/
/*
- * Copyright (C) 1986, 1988, 1989, 1991-2018 the Free Software Foundation, Inc.
+ * Copyright (C) 1986, 1988, 1989, 1991-2019 the Free Software Foundation, Inc.
*
* This file is part of GAWK, the GNU implementation of the
* AWK Programming Language.
@@ -231,7 +231,7 @@ extern double gawk_strtod();
#endif
#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7)
-# define __attribute__(x)
+# define __attribute__(arg)
#endif
#ifndef ATTRIBUTE_UNUSED
diff --git a/missing_d/ChangeLog b/missing_d/ChangeLog
index 3119ad8..8d62768 100644
--- a/missing_d/ChangeLog
+++ b/missing_d/ChangeLog
@@ -1,3 +1,7 @@
+2019-01-09 John E. Malmberg <address@hidden>
+
+ * timegm.c (timegm): Remove static attribute from function.
+
2018-12-12 Andrew J. Schorr <address@hidden>
* timegm.c (timegm): Add comment indicating that this came from
diff --git a/missing_d/timegm.c b/missing_d/timegm.c
index fdb65fb..faf377e 100644
--- a/missing_d/timegm.c
+++ b/missing_d/timegm.c
@@ -3,7 +3,7 @@
/* timegm -- based on Linux timegm man page */
-static time_t
+time_t
timegm(struct tm *tm)
{
time_t ret;
diff --git a/support/ChangeLog b/support/ChangeLog
index 8bc944b..a941f28 100644
--- a/support/ChangeLog
+++ b/support/ChangeLog
@@ -1,3 +1,8 @@
+2019-01-09 John E. Malmberg <address@hidden>
+
+ * cdefs.h, xalloc.h: For non GCC, have
+ __attribute__ definition match regex_internal.h exactly.
+
2018-12-26 Arnold D. Robbins <address@hidden>
In a spirit of depressed resignation, synced regex
diff --git a/support/cdefs.h b/support/cdefs.h
index 26e2f3f..b616e19 100644
--- a/support/cdefs.h
+++ b/support/cdefs.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 1992-2018 Free Software Foundation, Inc.
+/* Copyright (C) 1992-2019 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -198,7 +198,7 @@
`__attribute__' syntax. All of the ways we use this do fine if
they are omitted for compilers that don't understand it. */
#if !defined __GNUC__ || __GNUC__ < 2
-# define __attribute__(xyz) /* Ignore */
+# define __attribute__(arg) /* Ignore */
#endif
/* At some point during the gcc 2.96 development the `malloc' attribute
diff --git a/support/xalloc.h b/support/xalloc.h
index 89dbe2c..f238bb7 100644
--- a/support/xalloc.h
+++ b/support/xalloc.h
@@ -1,8 +1,8 @@
/* xalloc.h -- malloc with out-of-memory checking
Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
- 2000, 2003, 2004, 2006, 2007, 2008, 2009, 2010 Free Software Foundation,
- Inc.
+ 2000, 2003, 2004, 2006, 2007, 2008, 2009, 2010, 2019
+ Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -30,7 +30,7 @@ extern "C" {
# ifndef __attribute__
# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 8)
-# define __attribute__(x)
+# define __attribute__(arg)
# endif
# endif
diff --git a/vms/ChangeLog b/vms/ChangeLog
index 52b1433..44f13a5 100644
--- a/vms/ChangeLog
+++ b/vms/ChangeLog
@@ -1,3 +1,8 @@
+2019-01-09 John E. Malmberg <address@hidden>
+
+ * generate_config_h_vms_gawk.com: remove unused
+ definition for __attribute(a)
+
2018-08-07 John E. Malmberg <address@hidden>
* vmstest.com: Fixes for back89, gsubtst5, and fsbs
diff --git a/vms/generate_config_vms_h_gawk.com
b/vms/generate_config_vms_h_gawk.com
index 8edf55d..b0d1ed1 100644
--- a/vms/generate_config_vms_h_gawk.com
+++ b/vms/generate_config_vms_h_gawk.com
@@ -13,7 +13,7 @@ $! This generates a []config.h file and also a config_vms.h
file,
$! which is used to supplement that file.
$!
$!
-$! Copyright (C) 2014, 2016 the Free Software Foundation, Inc.
+$! Copyright (C) 2014, 2016, 2019 the Free Software Foundation, Inc.
$!
$! This file is part of GAWK, the GNU implementation of the
$! AWK Progamming Language.
@@ -301,8 +301,6 @@ $ write cvh ""
$ write cvh "#define TIME_T_UNSIGNED 1"
$ write cvh "#include ""custom.h"""
$ write cvh ""
-$ write cvh "#define __attribute(a)"
-$ write cvh ""
$
$!
$! Close out the file
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 5 +++++
awk.h | 4 ++--
missing_d/ChangeLog | 4 ++++
missing_d/timegm.c | 2 +-
support/ChangeLog | 5 +++++
support/cdefs.h | 4 ++--
support/xalloc.h | 6 +++---
vms/ChangeLog | 5 +++++
vms/generate_config_vms_h_gawk.com | 4 +---
9 files changed, 28 insertions(+), 11 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-3103-g68e8a8a,
John Malmberg <=