summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2019-03-01 18:48:03 -0800
committerKhem Raj <raj.khem@gmail.com>2019-03-03 14:00:26 -0800
commit88c6c00c0caf922a2eeb1c40fe8fc682ea1ee08b (patch)
tree7c044d605f3547b4b428d00f5aeb8b0ee3d96694
parentda34efdc4670ff1fbaab715e2a36ae1cc120021f (diff)
downloadmeta-openembedded-88c6c00c0caf922a2eeb1c40fe8fc682ea1ee08b.tar.gz
uftrace: Upgrade to 0.9.2
Drop pathes which are upstreamed Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-devtools/uftrace/uftrace/0001-include-dlfcn.h-for-RTLD_DEFAULT.patch39
-rw-r--r--meta-oe/recipes-devtools/uftrace/uftrace_0.9.2.bb (renamed from meta-oe/recipes-devtools/uftrace/uftrace_0.8.3.bb)5
2 files changed, 2 insertions, 42 deletions
diff --git a/meta-oe/recipes-devtools/uftrace/uftrace/0001-include-dlfcn.h-for-RTLD_DEFAULT.patch b/meta-oe/recipes-devtools/uftrace/uftrace/0001-include-dlfcn.h-for-RTLD_DEFAULT.patch
deleted file mode 100644
index fe7aac931..000000000
--- a/meta-oe/recipes-devtools/uftrace/uftrace/0001-include-dlfcn.h-for-RTLD_DEFAULT.patch
+++ /dev/null
@@ -1,39 +0,0 @@
1From cdf7f2e394fcfb93a61f509ae3388f29540a6b35 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sat, 8 Sep 2018 11:56:13 -0700
4Subject: [PATCH] include dlfcn.h for RTLD_DEFAULT
5
6Fixes
7plthook.c:128:41: error: use of undeclared identifier 'RTLD_DEFAULT'
8
9Upstream-Status: Submitted [https://github.com/namhyung/uftrace/pull/487]
10Signed-off-by: Khem Raj <raj.khem@gmail.com>
11---
12 libmcount/plthook.c | 1 +
13 utils/debug.c | 1 +
14 2 files changed, 2 insertions(+)
15
16diff --git a/libmcount/plthook.c b/libmcount/plthook.c
17index d9d84f0..d54f5e8 100644
18--- a/libmcount/plthook.c
19+++ b/libmcount/plthook.c
20@@ -6,6 +6,7 @@
21 #include <sys/mman.h>
22 #include <pthread.h>
23 #include <assert.h>
24+#include <dlfcn.h>
25
26 /* This should be defined before #include "utils.h" */
27 #define PR_FMT "mcount"
28diff --git a/utils/debug.c b/utils/debug.c
29index 2134b09..5460def 100644
30--- a/utils/debug.c
31+++ b/utils/debug.c
32@@ -13,6 +13,7 @@
33 #include <assert.h>
34 #include <limits.h>
35 #include <inttypes.h>
36+#include <dlfcn.h>
37
38 #include "utils/utils.h"
39
diff --git a/meta-oe/recipes-devtools/uftrace/uftrace_0.8.3.bb b/meta-oe/recipes-devtools/uftrace/uftrace_0.9.2.bb
index 5963e5d69..4f4016895 100644
--- a/meta-oe/recipes-devtools/uftrace/uftrace_0.8.3.bb
+++ b/meta-oe/recipes-devtools/uftrace/uftrace_0.9.2.bb
@@ -10,10 +10,9 @@ DEPENDS_append_libc-musl = " argp-standalone"
10 10
11inherit autotools 11inherit autotools
12 12
13# v0.8.3 13# v0.9.2
14SRCREV = "8b723a6fae2ef30495cd6279774fba9c95cd9c88" 14SRCREV = "66fc1fb973f4a44aecd216541405ffe05196f11e"
15SRC_URI = "git://github.com/namhyung/${BPN} \ 15SRC_URI = "git://github.com/namhyung/${BPN} \
16 file://0001-include-dlfcn.h-for-RTLD_DEFAULT.patch \
17 " 16 "
18S = "${WORKDIR}/git" 17S = "${WORKDIR}/git"
19 18