Mirror of the lttng-dev mailing list
 help / color / mirror / Atom feed
* [lttng-dev] [PATCH] urcu: fix deprecation warning with new glibc
@ 2015-06-01 13:16 Marc Kleine-Budde
  2015-06-01 14:25 ` Mathieu Desnoyers
  0 siblings, 1 reply; 4+ messages in thread
From: Marc Kleine-Budde @ 2015-06-01 13:16 UTC (permalink / raw)


This patch fixes the following warning:

/usr/include/features.h:148:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp]
 # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE"

Signed-off-by: Marc Kleine-Budde <mkl at pengutronix.de>
---
 urcu.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/urcu.c b/urcu.c
index 1429f6dfbbd3..6f5b1e01ea04 100644
--- a/urcu.c
+++ b/urcu.c
@@ -26,6 +26,7 @@
 #define _BSD_SOURCE
 #define _GNU_SOURCE
 #define _LGPL_SOURCE
+#define _DEFAULT_SOURCE
 #include <stdio.h>
 #include <pthread.h>
 #include <signal.h>
-- 
2.1.4




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-06-01 15:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-01 13:16 [lttng-dev] [PATCH] urcu: fix deprecation warning with new glibc Marc Kleine-Budde
2015-06-01 14:25 ` Mathieu Desnoyers
2015-06-01 15:16   ` Marc Kleine-Budde
2015-06-01 15:25     ` Mathieu Desnoyers

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox