diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2016-07-13 17:44:27 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-09 12:12:22 +0100 |
commit | 94317f52cec76eeec6dcf885cd1e83dc37f40614 (patch) | |
tree | d32d5320863d6e26dddf022a2022c627692ad09a /meta/recipes-support/source-highlight/files | |
parent | 8c46605d16a5ace05dfe5d165563a44b2f03c957 (diff) | |
download | poky-94317f52cec76eeec6dcf885cd1e83dc37f40614.tar.gz |
source-highlight: add a recipe
gtk-doc relies on this to highlight source code snippets
(From OE-Core rev: 380f449bc1881a6e8592463c7eeda3655efb97ea)
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/source-highlight/files')
-rw-r--r-- | meta/recipes-support/source-highlight/files/0001-source-highlight.pc.in-do-not-add-Boost-s-libraries-.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-support/source-highlight/files/0001-source-highlight.pc.in-do-not-add-Boost-s-libraries-.patch b/meta/recipes-support/source-highlight/files/0001-source-highlight.pc.in-do-not-add-Boost-s-libraries-.patch new file mode 100644 index 0000000000..b0aa5d1739 --- /dev/null +++ b/meta/recipes-support/source-highlight/files/0001-source-highlight.pc.in-do-not-add-Boost-s-libraries-.patch | |||
@@ -0,0 +1,30 @@ | |||
1 | From 9aa01fd5f9d8b2b98c34684dc8f68115750ef41c Mon Sep 17 00:00:00 2001 | ||
2 | From: Alexander Kanavin <alex.kanavin@gmail.com> | ||
3 | Date: Tue, 12 Jul 2016 17:15:13 +0300 | ||
4 | Subject: [PATCH] source-highlight.pc.in: do not add Boost's libraries and | ||
5 | includes | ||
6 | |||
7 | This breaks when compiling in sysroots; a proper way is to use Depends | ||
8 | |||
9 | Upstream-Status: Pending | ||
10 | Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> | ||
11 | --- | ||
12 | source-highlight.pc.in | 4 ++-- | ||
13 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
14 | |||
15 | diff --git a/source-highlight.pc.in b/source-highlight.pc.in | ||
16 | index 79ab63e..64114a7 100644 | ||
17 | --- a/source-highlight.pc.in | ||
18 | +++ b/source-highlight.pc.in | ||
19 | @@ -7,6 +7,6 @@ Name: libsource-highlight | ||
20 | Description: GNU Source-highlight library. | ||
21 | URL: http://www.gnu.org/software/src-highlite/ | ||
22 | Version: @VERSION@ | ||
23 | -Libs: -L${libdir} -lsource-highlight @BOOST_LDFLAGS@ @BOOST_REGEX_LIB@ | ||
24 | -Cflags: -I${includedir} @BOOST_CPPFLAGS@ | ||
25 | +Libs: -L${libdir} -lsource-highlight | ||
26 | +Cflags: -I${includedir} | ||
27 | |||
28 | -- | ||
29 | 2.8.1 | ||
30 | |||