diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2014-07-09 10:32:05 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-10 17:38:35 +0100 |
commit | e56bc9990e3fdf18cd231946a3ed4a4a7a4b0653 (patch) | |
tree | 326549502af02edc14e901031282c7fb15edacc7 /meta/recipes-graphics | |
parent | 91c7cbaa02f055362bbcde96ff0bdefced3de989 (diff) | |
download | poky-e56bc9990e3fdf18cd231946a3ed4a4a7a4b0653.tar.gz |
xorg-lib-common.inc: add PACKAGECONFIG for xmlto
Support xmlto for documentation generation and disable it by default.
[YOCTO #2416]
(From OE-Core rev: 5d80a47de953f47cdb0cc8d394bf200758fa9624)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r-- | meta/recipes-graphics/xorg-lib/xorg-lib-common.inc | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/meta/recipes-graphics/xorg-lib/xorg-lib-common.inc b/meta/recipes-graphics/xorg-lib/xorg-lib-common.inc index 7231664773..3db67ced13 100644 --- a/meta/recipes-graphics/xorg-lib/xorg-lib-common.inc +++ b/meta/recipes-graphics/xorg-lib/xorg-lib-common.inc | |||
@@ -13,9 +13,14 @@ S = "${WORKDIR}/${XORG_PN}-${PV}" | |||
13 | 13 | ||
14 | inherit autotools distro_features_check pkgconfig | 14 | inherit autotools distro_features_check pkgconfig |
15 | 15 | ||
16 | EXTRA_OECONF = "--disable-specs --without-groff --without-ps2pdf --without-fop --without-xmlto" | 16 | EXTRA_OECONF = "--disable-specs --without-groff --without-ps2pdf --without-fop" |
17 | |||
18 | PACKAGECONFIG ??= "" | ||
19 | PACKAGECONFIG[xmlto] = "--with-xmlto, --without-xmlto, xmlto-native" | ||
17 | 20 | ||
18 | UNKNOWN_CONFIGURE_WHITELIST += "--enable-malloc0returnsnull --disable-malloc0returnsnull \ | 21 | UNKNOWN_CONFIGURE_WHITELIST += "--enable-malloc0returnsnull --disable-malloc0returnsnull \ |
19 | --disable-specs --without-groff --without-ps2pdf --without-fop --without-xmlto" | 22 | --disable-specs --without-groff --without-ps2pdf --without-fop \ |
23 | --without-xmlto --with-xmlto \ | ||
24 | " | ||
20 | 25 | ||
21 | REQUIRED_DISTRO_FEATURES ?= "x11" | 26 | REQUIRED_DISTRO_FEATURES ?= "x11" |