From bb5badf17087099dd9140f812778f7a8615b2111 Mon Sep 17 00:00:00 2001 From: Carlos O'Donell Date: Mon, 31 Oct 2016 16:46:57 -0400 Subject: [PATCH] Bug 20729: Include libc-internal.h where required. The original fix for bug 20729 failed to include libc-internal.h in the files that needed them and this caused build failures on machines that don't implicitly include this header. This commit fixes that by following the consensus rule that a header, if needed, should always be directly included. --- ChangeLog | 9 ++++++++- locale/weight.h | 2 ++ locale/weightwc.h | 2 ++ nptl_db/thread_dbP.h | 1 + 4 files changed, 13 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 1a14fdfab6..831c876b6e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2016-10-31 Carlos O'Donell + + [Bz #20729] + * locale/weight.h: Include libc-internal.h. + * locale/weightwc.h: Likewise. + * nptl/nptl_dbP.h: Likewise. + 2016-10-31 Brent W. Baccala * sysdeps/mach/hurd/dl-sysdep.c (__mmap): Do not deallocate memobj_wr @@ -16,7 +23,7 @@ [BZ #20729] * include/libc-internal.h (DIAG_IGNORE_Os_NEEDS_COMMENT): Define. - * iso-2022-cn-ext.c: Include libc-internal.h and ignore + * iconvdata/iso-2022-cn-ext.c: Include libc-internal.h and ignore -Wmaybe-uninitialized for BODY macro only for -Os compiles. * locale/weight.h (findix): Ignore -Wmaybe-uninitialized error for seq2.back_us and seq1.back_us only for -Os compiles. diff --git a/locale/weight.h b/locale/weight.h index 1f61f01e1e..19b8e4a2df 100644 --- a/locale/weight.h +++ b/locale/weight.h @@ -19,6 +19,8 @@ #ifndef _WEIGHT_H_ #define _WEIGHT_H_ 1 +#include + /* Find index of weight. */ static inline int32_t __attribute__ ((always_inline)) findidx (const int32_t *table, diff --git a/locale/weightwc.h b/locale/weightwc.h index e42ce13241..ae189658eb 100644 --- a/locale/weightwc.h +++ b/locale/weightwc.h @@ -19,6 +19,8 @@ #ifndef _WEIGHTWC_H_ #define _WEIGHTWC_H_ 1 +#include + /* Find index of weight. */ static inline int32_t __attribute__ ((always_inline)) findidx (const int32_t *table, diff --git a/nptl_db/thread_dbP.h b/nptl_db/thread_dbP.h index b53f1c1def..f448547cd3 100644 --- a/nptl_db/thread_dbP.h +++ b/nptl_db/thread_dbP.h @@ -30,6 +30,7 @@ #include "../nptl/pthreadP.h" /* This is for *_BITMASK only. */ #include #include +#include /* Indeces for the symbol names. */ enum -- 2.43.5