summaryrefslogtreecommitdiffstats
path: root/meta-gnome/recipes-kernel/sysprof/files
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2020-01-13 20:01:02 +0100
committerKhem Raj <raj.khem@gmail.com>2020-01-14 14:40:52 -0800
commit84e87356aa7fcd3190b288702f971b6b5c1b8b6f (patch)
tree91fdd62ab29af97c0e4f407a987c3e626d13fb31 /meta-gnome/recipes-kernel/sysprof/files
parent7836ff731b1c562cd6dc195be0030792da560623 (diff)
downloadmeta-openembedded-84e87356aa7fcd3190b288702f971b6b5c1b8b6f.tar.gz
sysprof: update to 3.34.1
0001-Do-not-build-anything-in-help-as-it-requires-itstool.patch is replaced by a meson option. Enable all options, as polkit is now available. Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-gnome/recipes-kernel/sysprof/files')
-rw-r--r--meta-gnome/recipes-kernel/sysprof/files/0001-Do-not-build-anything-in-help-as-it-requires-itstool.patch27
-rw-r--r--meta-gnome/recipes-kernel/sysprof/files/0001-sysprof-Define-NT_GNU_BUILD_ID-if-undefined.patch35
-rw-r--r--meta-gnome/recipes-kernel/sysprof/files/define-NT_GNU_BUILD_ID.patch22
3 files changed, 35 insertions, 49 deletions
diff --git a/meta-gnome/recipes-kernel/sysprof/files/0001-Do-not-build-anything-in-help-as-it-requires-itstool.patch b/meta-gnome/recipes-kernel/sysprof/files/0001-Do-not-build-anything-in-help-as-it-requires-itstool.patch
deleted file mode 100644
index ade51cf864..0000000000
--- a/meta-gnome/recipes-kernel/sysprof/files/0001-Do-not-build-anything-in-help-as-it-requires-itstool.patch
+++ /dev/null
@@ -1,27 +0,0 @@
1From d332b480257aa98b63d39c3c94896a111536f937 Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Wed, 23 Aug 2017 18:38:26 +0300
4Subject: [PATCH 2/2] Do not build anything in help/ as it requires itstool.
5
6Upstream-Status: Inappropriate [oe-core specific]
7Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
8
9---
10 meson.build | 1 -
11 1 file changed, 1 deletion(-)
12
13diff --git a/meson.build b/meson.build
14index 3986273..ae2f65e 100644
15--- a/meson.build
16+++ b/meson.build
17@@ -164,7 +164,6 @@ subdir('tools')
18 subdir('tests')
19
20 subdir('data')
21-subdir('help')
22 subdir('po')
23
24 meson.add_install_script('build-aux/meson/post_install.sh')
25--
262.7.4
27
diff --git a/meta-gnome/recipes-kernel/sysprof/files/0001-sysprof-Define-NT_GNU_BUILD_ID-if-undefined.patch b/meta-gnome/recipes-kernel/sysprof/files/0001-sysprof-Define-NT_GNU_BUILD_ID-if-undefined.patch
new file mode 100644
index 0000000000..75aa86cdbf
--- /dev/null
+++ b/meta-gnome/recipes-kernel/sysprof/files/0001-sysprof-Define-NT_GNU_BUILD_ID-if-undefined.patch
@@ -0,0 +1,35 @@
1From 3025d80aaacc5f67aa9eb1e6fde30f71d9c5b04b Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 18 Jul 2011 16:00:17 -0700
4Subject: [PATCH 1/2] sysprof: Define NT_GNU_BUILD_ID if undefined
5
6On uclibc elf.h does not have GNU extentions but we need this define
7so we define it locally if its not getting it from elf.h
8
9Signed-off-by: Khem Raj <raj.khem@gmail.com>
10
11Upstream-Status: Pending
12
13%% original patch: define-NT_GNU_BUILD_ID.patch
14---
15 src/libsysprof/elfparser.h | 4 ++++
16 1 file changed, 4 insertions(+)
17
18diff --git a/src/libsysprof/elfparser.h b/src/libsysprof/elfparser.h
19index 160e4c9..94fa5c0 100644
20--- a/src/libsysprof/elfparser.h
21+++ b/src/libsysprof/elfparser.h
22@@ -18,6 +18,10 @@
23
24 #include <glib.h>
25
26+#ifndef NT_GNU_BUILD_ID
27+#define NT_GNU_BUILD_ID 3
28+#endif
29+
30 typedef struct ElfSym ElfSym;
31 typedef struct ElfParser ElfParser;
32
33--
342.17.1
35
diff --git a/meta-gnome/recipes-kernel/sysprof/files/define-NT_GNU_BUILD_ID.patch b/meta-gnome/recipes-kernel/sysprof/files/define-NT_GNU_BUILD_ID.patch
deleted file mode 100644
index f75ddad43a..0000000000
--- a/meta-gnome/recipes-kernel/sysprof/files/define-NT_GNU_BUILD_ID.patch
+++ /dev/null
@@ -1,22 +0,0 @@
1On uclibc elf.h does not have GNU extentions but we need this define
2so we define it locally if its not getting it from elf.h
3
4Signed-off-by: Khem Raj <raj.khem@gmail.com>
5
6Upstream-Status: Pending
7
8Index: git/elfparser.h
9===================================================================
10--- git.orig/lib/util/elfparser.h 2011-07-16 18:57:41.000000000 -0700
11+++ git/lib/util/elfparser.h 2011-07-16 20:28:54.733829895 -0700
12@@ -17,6 +17,10 @@
13 */
14 #include <glib.h>
15
16+#ifndef NT_GNU_BUILD_ID
17+#define NT_GNU_BUILD_ID 3
18+#endif
19+
20 typedef struct ElfSym ElfSym;
21 typedef struct ElfParser ElfParser;
22