summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/systemtap/systemtap/0001-PR16632-Adapt-to-glibc-deprecation-of-_BSD_SOURCE-ad.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-kernel/systemtap/systemtap/0001-PR16632-Adapt-to-glibc-deprecation-of-_BSD_SOURCE-ad.patch')
-rw-r--r--meta/recipes-kernel/systemtap/systemtap/0001-PR16632-Adapt-to-glibc-deprecation-of-_BSD_SOURCE-ad.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta/recipes-kernel/systemtap/systemtap/0001-PR16632-Adapt-to-glibc-deprecation-of-_BSD_SOURCE-ad.patch b/meta/recipes-kernel/systemtap/systemtap/0001-PR16632-Adapt-to-glibc-deprecation-of-_BSD_SOURCE-ad.patch
new file mode 100644
index 0000000000..df9b7c94cf
--- /dev/null
+++ b/meta/recipes-kernel/systemtap/systemtap/0001-PR16632-Adapt-to-glibc-deprecation-of-_BSD_SOURCE-ad.patch
@@ -0,0 +1,27 @@
1From 62379eedc739605f04d02e76eb50c4d2f129ae08 Mon Sep 17 00:00:00 2001
2From: "Frank Ch. Eigler" <fche@redhat.com>
3Date: Tue, 25 Nov 2014 13:45:14 +0800
4Subject: [PATCH] PR16632: Adapt to glibc deprecation of _BSD_SOURCE: add _DEFAULT_SOURCE
5
6Upstream-Status: Backport from commit c6278d012a483d97f5ee4756406d9c88735d2838
7
8Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
9---
10 staprun/staprun.c | 1 +
11 1 file changed, 1 insertion(+)
12
13diff --git a/staprun/staprun.c b/staprun/staprun.c
14index b85e2b0..1e1b5c3 100644
15--- a/staprun/staprun.c
16+++ b/staprun/staprun.c
17@@ -21,6 +21,7 @@
18
19 #define _XOPEN_SOURCE
20 #define _BSD_SOURCE
21+#define _DEFAULT_SOURCE
22 #include "staprun.h"
23 #include "../privilege.h"
24 #include "../runtime/k_syms.h"
25--
261.9.1
27