From b7688c42e7cca0c24889f3a8f9b685783661fb24 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 26 Feb 2013 14:17:12 +0530 Subject: [PATCH] Bring back definition of __attribute__ for non-gcc and older gcc gnulib copies this file over and needs it. --- ChangeLog | 5 +++++ posix/regex_internal.h | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/ChangeLog b/ChangeLog index 8450c3ce6d..cbf4083f0d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-02-26 Paul Eggert + + * posix/regex_internal.h [__GNUC__ < 3 + (__GNUC_MINOR__ < 1]: + Define __attribute__. + 2013-02-26 Siddhesh Poyarekar * locale/elem-hash.h (elem_hash): Mark as pure and possibly diff --git a/posix/regex_internal.h b/posix/regex_internal.h index 0521f74048..3c94fbed7d 100644 --- a/posix/regex_internal.h +++ b/posix/regex_internal.h @@ -121,6 +121,10 @@ # define attribute_hidden #endif /* not _LIBC */ +#if __GNUC__ < 3 + (__GNUC_MINOR__ < 1) +# define __attribute__(arg) +#endif + extern const char __re_error_msgid[] attribute_hidden; extern const size_t __re_error_msgid_idx[] attribute_hidden;