aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorCarlos O'Donell <carlos@redhat.com>2014-02-25 13:23:25 -0500
committerCarlos O'Donell <carlos@redhat.com>2014-02-25 13:23:25 -0500
commitade40b10ff5fa59a318cf55b9d8414b758e8df78 (patch)
tree599c080add2a6060c32f97d8e2c8c47318b7fb4e /ChangeLog
parentd050367659e04685a0eab910e86ea6829a8d24f9 (diff)
downloadglibc-ade40b10ff5fa59a318cf55b9d8414b758e8df78.zip
glibc-ade40b10ff5fa59a318cf55b9d8414b758e8df78.tar.gz
glibc-ade40b10ff5fa59a318cf55b9d8414b758e8df78.tar.bz2
BZ #16632: Change [_BSD/_SVID]_SOURCE warning.
Source packages that need to support both 2.19 and 2.20 will need to decide to use _BSD_SOURCE and _SVID_SOURCE vs. _DEFAULT_SOURCE. The difficulty in making that decision is that __GLIBC_MINOR__ is itself defined in features.h, but you want to set the feature test macros before including features.h. Therefore to ease the transition we should disable the warning if _DEFAULT_SOURCE is also defined. https://sourceware.org/ml/libc-alpha/2014-02/msg00666.html https://sourceware.org/glibc/wiki/Release/2.20#Packaging_Changes
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 9e564f7..e6246ea 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2014-02-25 Carlos O'Donell <carlos@redhat.com>
+
+ [BZ #16632]
+ * include/features.h: Don't warn about _BSD_SOURCE or _SVID_SOURCE if
+ _DEFAULT_SOURCE is defined.
+
2014-02-25 Ulrich Drepper <drepper@gmail.com>
Carlos O'Donell <carlos@redhat.com>