summaryrefslogtreecommitdiffstats
path: root/meta-multimedia
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@stusta.de>2019-05-22 15:11:00 +0300
committerKhem Raj <raj.khem@gmail.com>2019-05-23 08:26:14 -0700
commitdb45f2c886253533df079a161bfd6a75c4070db4 (patch)
tree7659710edc03de4d228d12d68859a7113c2166c8 /meta-multimedia
parentf31935321b97dc664b1d7a1d87fec60a72ba249e (diff)
downloadmeta-openembedded-db45f2c886253533df079a161bfd6a75c4070db4.tar.gz
dvb-apps: Remove workaround patch for ancient target compilers
Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-multimedia')
-rw-r--r--meta-multimedia/recipes-multimedia/dvb-apps/dvb-apps_1.1.1.bb1
-rw-r--r--meta-multimedia/recipes-multimedia/dvb-apps/files/0002-Fix-compiler-warning-flags.patch44
2 files changed, 0 insertions, 45 deletions
diff --git a/meta-multimedia/recipes-multimedia/dvb-apps/dvb-apps_1.1.1.bb b/meta-multimedia/recipes-multimedia/dvb-apps/dvb-apps_1.1.1.bb
index 2aa7ccebf..3f491181d 100644
--- a/meta-multimedia/recipes-multimedia/dvb-apps/dvb-apps_1.1.1.bb
+++ b/meta-multimedia/recipes-multimedia/dvb-apps/dvb-apps_1.1.1.bb
@@ -7,7 +7,6 @@ SRCREV = "3d43b280298c39a67d1d889e01e173f52c12da35"
7SRC_URI = "hg://linuxtv.org/hg;module=dvb-apps;protocol=http \ 7SRC_URI = "hg://linuxtv.org/hg;module=dvb-apps;protocol=http \
8 file://dvb-scan-table \ 8 file://dvb-scan-table \
9 file://0001-Fix-generate-keynames.patch \ 9 file://0001-Fix-generate-keynames.patch \
10 file://0002-Fix-compiler-warning-flags.patch \
11 file://0003-handle-static-shared-only-build.patch \ 10 file://0003-handle-static-shared-only-build.patch \
12 file://0004-Makefile-remove-test.patch \ 11 file://0004-Makefile-remove-test.patch \
13 file://0005-libucsi-optimization-removal.patch \ 12 file://0005-libucsi-optimization-removal.patch \
diff --git a/meta-multimedia/recipes-multimedia/dvb-apps/files/0002-Fix-compiler-warning-flags.patch b/meta-multimedia/recipes-multimedia/dvb-apps/files/0002-Fix-compiler-warning-flags.patch
deleted file mode 100644
index 9c6276beb..000000000
--- a/meta-multimedia/recipes-multimedia/dvb-apps/files/0002-Fix-compiler-warning-flags.patch
+++ /dev/null
@@ -1,44 +0,0 @@
1From 9b8f1df41f7579da63c27763ff184d351e4c7fef Mon Sep 17 00:00:00 2001
2From: Simon Dawson <spdawson@gmail.com>
3Date: Sun, 4 Jan 2015 12:06:18 +0100
4Subject: [PATCH] Fix compiler warning flags
5
6 When building for bfin, the build fails as follows.
7
8 cc1: error: unrecognized command line option "-Wno-packed-bitfield-compat"
9
10An example of an autobuild failure arising from this is the following.
11
12 http://autobuild.buildroot.net/results/92e/92e472004812a3616f62d766a9ea07a997a66e89/
13 http://autobuild.buildroot.net/results/6e7/6e7b48ad9768349d983985c3067c4267cde80541/
14
15Clearly, not all toolchains provide a gcc that understands
16the -Wno-packed-bitfield-compat flag; remove usage of this flag.
17
18Wno-packed-bitfield-compat option was added in gcc 4.4.
19
20[Romain:
21 - This patch is also needed for bfin toolchains which use gcc 4.3.5
22 - Add a link to bfin build failure]
23Signed-off-by: Simon Dawson <spdawson@gmail.com>
24Signed-off-by: Romain Naour <romain.naour@openwide.fr>
25---
26 util/scan/Makefile | 2 +-
27 1 file changed, 1 insertion(+), 1 deletion(-)
28
29diff --git a/util/scan/Makefile b/util/scan/Makefile
30index d48c478..88667c5 100644
31--- a/util/scan/Makefile
32+++ b/util/scan/Makefile
33@@ -14,7 +14,7 @@ inst_bin = $(binaries)
34
35 removing = atsc_psip_section.c atsc_psip_section.h
36
37-CPPFLAGS += -Wno-packed-bitfield-compat -D__KERNEL_STRICT_NAMES
38+CPPFLAGS += -D__KERNEL_STRICT_NAMES
39
40 .PHONY: all
41
42--
431.9.3
44