]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
BZ #16632: Change [_BSD/_SVID]_SOURCE warning.
authorCarlos O'Donell <carlos@redhat.com>
Tue, 25 Feb 2014 18:23:25 +0000 (13:23 -0500)
committerCarlos O'Donell <carlos@redhat.com>
Tue, 25 Feb 2014 18:23:25 +0000 (13:23 -0500)
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

ChangeLog
NEWS
include/features.h

index 9e564f7fd177fb036b549ff0d7b57e8ea32f5643..e6246ea1ff1367cf9b1119856c78999fc3cdb663 100644 (file)
--- 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>
 
diff --git a/NEWS b/NEWS
index ae9c3d62c8e1fea2b23e26a1f640a8280106a290..acd04def8d54f2090b218d324c60008358885a9f 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -10,7 +10,7 @@ Version 2.20
 * The following bugs are resolved with this release:
 
   15347, 15804, 15894, 16447, 16545, 16574, 16600, 16609, 16610, 16611,
-  16613.
+  16613, 16632.
 
 * The am33 port, which had not worked for several years, has been removed
   from ports.
index 75237a7984dd331caa5898c59e13afafcf6bd3ae..c3ed81fa19bf4d85f3dcb4e104333c6af5bb1697 100644 (file)
 #endif
 
 /* _BSD_SOURCE and _SVID_SOURCE are deprecated aliases for
-   _DEFAULT_SOURCE.  */
-#if defined _BSD_SOURCE || defined _SVID_SOURCE
+   _DEFAULT_SOURCE.  If _DEFAULT_SOURCE is present we do not
+   issue a warning; the expectation is that the source is being
+   transitioned to use the new macro.  */
+#if (defined _BSD_SOURCE || defined _SVID_SOURCE) \
+    && !defined _DEFAULT_SOURCE
 # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE"
 # undef  _DEFAULT_SOURCE
 # define _DEFAULT_SOURCE       1