SPEC-3723: restructure meta-agl-demo
[AGL/meta-agl-demo.git] / recipes-connectivity / rtl-sdr / rtl-sdr / 0001-remove-I-usr-include-in-pkg-config.patch
1 From 3aeaf8054fcb2617ca8f6196ca32be3e69337f77 Mon Sep 17 00:00:00 2001
2 From: Martin Kelly <mkelly@xevo.com>
3 Date: Fri, 21 Apr 2017 10:29:19 -0700
4 Subject: [PATCH] remove -I/usr/include in pkg-config
5
6 This shouldn't be necessary as it's part of the default compiler include
7 paths anyway. Morever, it can cause GCC 6 C++ build failures in
8 downstream packages when combined with QMake (such as
9 qtmultimedia-rtlfm-radio-plugin).
10
11 Fix these issues by removing it.
12
13 Upstream-Status: Inappropriate [disable-feature]
14
15 This patch should not go upstream because it breaks the ability to build
16 with --prefix. That's not a problem for Openembedded, but it is for
17 upstream more generally. See this mail thread for more information:
18
19 http://lists.osmocom.org/pipermail/osmocom-sdr/2017-April/001580.html
20
21 Signed-off-by: Martin Kelly <mkelly@xevo.com>
22 ---
23  librtlsdr.pc.in | 2 +-
24  1 file changed, 1 insertion(+), 1 deletion(-)
25
26 diff --git a/librtlsdr.pc.in b/librtlsdr.pc.in
27 index 5e55049..84b6d0c 100644
28 --- a/librtlsdr.pc.in
29 +++ b/librtlsdr.pc.in
30 @@ -6,6 +6,6 @@ includedir=@includedir@
31  Name: RTL-SDR Library
32  Description: C Utility Library
33  Version: @VERSION@
34 -Cflags: -I${includedir}/ @RTLSDR_PC_CFLAGS@
35 +Cflags: @RTLSDR_PC_CFLAGS@
36  Libs: -L${libdir} -lrtlsdr -lusb-1.0
37  Libs.private: @RTLSDR_PC_LIBS@
38 -- 
39 2.1.4
40