diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2014-08-24 16:39:15 -0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-25 10:23:27 +0100 |
commit | 7d056397ab9912316064db850aae05aacabc726c (patch) | |
tree | 282a78d1ee877089f71a45b41c2ff9ccd5ecb8d7 /meta | |
parent | cbd868c34718e8fd2a41f5382da71ee959ea4e71 (diff) | |
download | openembedded-core-7d056397ab9912316064db850aae05aacabc726c.tar.gz openembedded-core-7d056397ab9912316064db850aae05aacabc726c.tar.bz2 openembedded-core-7d056397ab9912316064db850aae05aacabc726c.zip |
libxml2: Explicitly enable zlib support
The zlib support is a must if you are using RPM backend. So this
explicitly enable it and adds a comment in the recipe to avoid its
removal by mistake.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/libxml/libxml2.inc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/meta/recipes-core/libxml/libxml2.inc b/meta/recipes-core/libxml/libxml2.inc index 2dffc5ac9f..24ea66a0d8 100644 --- a/meta/recipes-core/libxml/libxml2.inc +++ b/meta/recipes-core/libxml/libxml2.inc @@ -39,10 +39,11 @@ do_configure_prepend_class-nativesdk () { export PYTHON_SITE_PACKAGES="${PYTHON_SITEPACKAGES_DIR}" } +# WARNING: zlib is require for RPM use EXTRA_OECONF = "--without-python --without-debug --without-legacy --with-catalog --without-docbook --with-c14n --without-lzma --with-fexceptions" -EXTRA_OECONF_class-native = "--with-python=${STAGING_BINDIR}/python --without-legacy --without-docbook --with-c14n --without-lzma" -EXTRA_OECONF_class-nativesdk = "--with-python=${STAGING_BINDIR}/python --without-legacy --without-docbook --with-c14n --without-lzma" -EXTRA_OECONF_linuxstdbase = "--without-python --with-debug --with-legacy --with-docbook --with-c14n --without-lzma" +EXTRA_OECONF_class-native = "--with-python=${STAGING_BINDIR}/python --without-legacy --without-docbook --with-c14n --without-lzma --with-zlib" +EXTRA_OECONF_class-nativesdk = "--with-python=${STAGING_BINDIR}/python --without-legacy --without-docbook --with-c14n --without-lzma --with-zlib" +EXTRA_OECONF_linuxstdbase = "--without-python --with-debug --with-legacy --with-docbook --with-c14n --without-lzma --with-zlib" # required for pythong binding export HOST_SYS |