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:26:00 +0100 |
commit | c58b4e42db0719f1752ef2a0eb6a10edaf825cd1 (patch) | |
tree | b9da5e82e1e138837d2c94a72dd8d8d36fc99dbc /meta/recipes-core | |
parent | e601c8b1603fd7f977fd307d7cecea9fb9331119 (diff) | |
download | poky-c58b4e42db0719f1752ef2a0eb6a10edaf825cd1.tar.gz |
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.
(From OE-Core rev: 7d056397ab9912316064db850aae05aacabc726c)
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-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 () { | |||
39 | export PYTHON_SITE_PACKAGES="${PYTHON_SITEPACKAGES_DIR}" | 39 | export PYTHON_SITE_PACKAGES="${PYTHON_SITEPACKAGES_DIR}" |
40 | } | 40 | } |
41 | 41 | ||
42 | # WARNING: zlib is require for RPM use | ||
42 | EXTRA_OECONF = "--without-python --without-debug --without-legacy --with-catalog --without-docbook --with-c14n --without-lzma --with-fexceptions" | 43 | EXTRA_OECONF = "--without-python --without-debug --without-legacy --with-catalog --without-docbook --with-c14n --without-lzma --with-fexceptions" |
43 | EXTRA_OECONF_class-native = "--with-python=${STAGING_BINDIR}/python --without-legacy --without-docbook --with-c14n --without-lzma" | 44 | EXTRA_OECONF_class-native = "--with-python=${STAGING_BINDIR}/python --without-legacy --without-docbook --with-c14n --without-lzma --with-zlib" |
44 | EXTRA_OECONF_class-nativesdk = "--with-python=${STAGING_BINDIR}/python --without-legacy --without-docbook --with-c14n --without-lzma" | 45 | EXTRA_OECONF_class-nativesdk = "--with-python=${STAGING_BINDIR}/python --without-legacy --without-docbook --with-c14n --without-lzma --with-zlib" |
45 | EXTRA_OECONF_linuxstdbase = "--without-python --with-debug --with-legacy --with-docbook --with-c14n --without-lzma" | 46 | EXTRA_OECONF_linuxstdbase = "--without-python --with-debug --with-legacy --with-docbook --with-c14n --without-lzma --with-zlib" |
46 | 47 | ||
47 | # required for pythong binding | 48 | # required for pythong binding |
48 | export HOST_SYS | 49 | export HOST_SYS |