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.1-stable, updated. gawk-4.1.0-859


From: John Malmberg
Subject: [gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-859-g51b4e6f
Date: Sun, 10 Apr 2016 21:57:29 +0000

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.1-stable has been updated
       via  51b4e6f84be3ba3d48ee7406633d136b588537e9 (commit)
      from  22b550f985e356d4036b5ff724a50249d3816025 (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=51b4e6f84be3ba3d48ee7406633d136b588537e9

commit 51b4e6f84be3ba3d48ee7406633d136b588537e9
Author: John Malmberg <address@hidden>
Date:   Sun Apr 10 16:34:18 2016 -0500

    Fix the build on VMS

diff --git a/ChangeLog b/ChangeLog
index 00dda86..42fc807 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2016-04-10         John E. Malmberg      <address@hidden>
+
+       * regex_internal.c: Use _GL_ATTRIBUTE_PURE macro
+
 2016-04-07         Arnold D. Robbins     <address@hidden>
 
        * awk.h (two_way_close_type): Move here from io.c.
@@ -40,7 +44,7 @@
 2016-03-14         Arnold D. Robbins     <address@hidden>
 
        * io.c (socketopen): For SOCK_DGRAM, set read_len to sizeof
-       remote_addr. Makes UDP more or less work again. 
+       remote_addr. Makes UDP more or less work again.
        Thanks to Juergen Kahrs for the fix.
 
 2016-03-10         Arnold D. Robbins     <address@hidden>
diff --git a/regex_internal.c b/regex_internal.c
index 759c7c8..f6b2574 100644
--- a/regex_internal.c
+++ b/regex_internal.c
@@ -840,7 +840,7 @@ re_string_reconstruct (re_string_t *pstr, int idx, int 
eflags)
 }
 
 static unsigned char
-internal_function __attribute ((pure))
+internal_function _GL_ATTRIBUTE_PURE
 re_string_peek_byte_case (const re_string_t *pstr, int idx)
 {
   int ch, off;
@@ -1372,7 +1372,7 @@ re_node_set_insert_last (re_node_set *set, int elem)
    return 1 if SET1 and SET2 are equivalent, return 0 otherwise.  */
 
 static int
-internal_function __attribute ((pure))
+internal_function _GL_ATTRIBUTE_PURE
 re_node_set_compare (const re_node_set *set1, const re_node_set *set2)
 {
   int i;
@@ -1387,7 +1387,7 @@ re_node_set_compare (const re_node_set *set1, const 
re_node_set *set2)
 /* Return (idx + 1) if SET contains the element ELEM, return 0 otherwise.  */
 
 static int
-internal_function __attribute ((pure))
+internal_function _GL_ATTRIBUTE_PURE
 re_node_set_contains (const re_node_set *set, int elem)
 {
   unsigned int idx, right, mid;
diff --git a/vms/ChangeLog b/vms/ChangeLog
index 203dd9a..6b8791d 100644
--- a/vms/ChangeLog
+++ b/vms/ChangeLog
@@ -1,3 +1,7 @@
+2016-04-10         John E. Malmberg      <address@hidden>
+
+       * generate_config_vms_h_gawk.com: define __attribute() as macro.
+
 2016-02-02         John E. Malmberg      <address@hidden>
 
        * descrip.mms: Add gawk_debug target.
diff --git a/vms/generate_config_vms_h_gawk.com 
b/vms/generate_config_vms_h_gawk.com
index 805b764..83a6463 100644
--- a/vms/generate_config_vms_h_gawk.com
+++ b/vms/generate_config_vms_h_gawk.com
@@ -291,6 +291,9 @@ $ 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                          |    6 +++++-
 regex_internal.c                   |    6 +++---
 vms/ChangeLog                      |    4 ++++
 vms/generate_config_vms_h_gawk.com |    3 +++
 4 files changed, 15 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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