diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2016-02-22 19:38:31 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-03-14 12:15:33 +0100 |
commit | 9afa64e6d2c482bfc807b4c6b6ed76ac519dc94e (patch) | |
tree | 31f69f76e3caf85eb50e461f33e23a53ad2fdb82 /meta-oe/recipes-support | |
parent | c259f032feb7213420451972ea00d4a89eb03edb (diff) | |
download | meta-openembedded-9afa64e6d2c482bfc807b4c6b6ed76ac519dc94e.tar.gz |
poppler: fix gobject introspection
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Diffstat (limited to 'meta-oe/recipes-support')
-rw-r--r-- | meta-oe/recipes-support/poppler/poppler_0.37.0.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/poppler/poppler_0.37.0.bb b/meta-oe/recipes-support/poppler/poppler_0.37.0.bb index 59c477dbd..2c6b1a9d9 100644 --- a/meta-oe/recipes-support/poppler/poppler_0.37.0.bb +++ b/meta-oe/recipes-support/poppler/poppler_0.37.0.bb | |||
@@ -11,7 +11,7 @@ SRC_URI[sha256sum] = "b89f9c5eae3bbb1046b0f767714afd75eca102a0406a3a30856778d42a | |||
11 | 11 | ||
12 | DEPENDS = "fontconfig zlib cairo lcms" | 12 | DEPENDS = "fontconfig zlib cairo lcms" |
13 | 13 | ||
14 | inherit autotools pkgconfig gtk-doc | 14 | inherit autotools pkgconfig gtk-doc gobject-introspection |
15 | 15 | ||
16 | PACKAGECONFIG ??= "jpeg openjpeg png tiff ${@bb.utils.contains('BBFILE_COLLECTIONS', 'qt5-layer', 'qt5', '', d)}" | 16 | PACKAGECONFIG ??= "jpeg openjpeg png tiff ${@bb.utils.contains('BBFILE_COLLECTIONS', 'qt5-layer', 'qt5', '', d)}" |
17 | PACKAGECONFIG[jpeg] = "--enable-libjpeg,--disable-libjpeg,jpeg" | 17 | PACKAGECONFIG[jpeg] = "--enable-libjpeg,--disable-libjpeg,jpeg" |
@@ -28,6 +28,10 @@ EXTRA_OECONF = "\ | |||
28 | --enable-zlib \ | 28 | --enable-zlib \ |
29 | " | 29 | " |
30 | 30 | ||
31 | do_compile_prepend() { | ||
32 | export GIR_EXTRA_LIBS_PATH="${B}/poppler/.libs" | ||
33 | } | ||
34 | |||
31 | # Adjust library names when building for QT4e | 35 | # Adjust library names when building for QT4e |
32 | QT4E_PATCHES = "${@bb.utils.contains('PACKAGECONFIG', 'qt4e', 'file://fix-qt4e-library-dependencies.patch', '', d)}" | 36 | QT4E_PATCHES = "${@bb.utils.contains('PACKAGECONFIG', 'qt4e', 'file://fix-qt4e-library-dependencies.patch', '', d)}" |
33 | SRC_URI_append = "${QT4E_PATCHES}" | 37 | SRC_URI_append = "${QT4E_PATCHES}" |