summaryrefslogtreecommitdiffstats
path: root/meta/packages/libxml/libxml2.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/packages/libxml/libxml2.inc')
-rw-r--r--meta/packages/libxml/libxml2.inc18
1 files changed, 18 insertions, 0 deletions
diff --git a/meta/packages/libxml/libxml2.inc b/meta/packages/libxml/libxml2.inc
index e8b03cf02d..1aa7132ceb 100644
--- a/meta/packages/libxml/libxml2.inc
+++ b/meta/packages/libxml/libxml2.inc
@@ -7,6 +7,24 @@ SRC_URI = "ftp://xmlsoft.org/libxml2/libxml2-${PV}.tar.gz \
7 file://libxml-64bit.patch;patch=1 \ 7 file://libxml-64bit.patch;patch=1 \
8 file://libxml-nanohttp.patch;patch=1" 8 file://libxml-nanohttp.patch;patch=1"
9 9
10DEPENDS_virtclass-native = "python-native"
11
10inherit autotools pkgconfig binconfig 12inherit autotools pkgconfig binconfig
11 13
12EXTRA_OECONF = "--without-python --without-debug --without-legacy --without-catalog --without-docbook --with-c14n" 14EXTRA_OECONF = "--without-python --without-debug --without-legacy --without-catalog --without-docbook --with-c14n"
15EXTRA_OECONF_virtclass-native = "--with-python=${STAGING_DIR_NATIVE}/${prefix} --without-debug --without-legacy --with-catalog --without-docbook --with-c14n"
16
17export LDFLAGS += "-ldl"
18
19python populate_packages_prepend () {
20 # autonamer would call this libxml2-2, but we don't want that
21 if bb.data.getVar('DEBIAN_NAMES', d, 1):
22 bb.data.setVar('PKG_libxml2', 'libxml2', d)
23}
24
25PACKAGES = "${PN}-dbg ${PN}-dev ${PN}-utils ${PN} ${PN}-doc ${PN}-locale"
26
27FILES_${PN}-dev += "${bindir}/*-config"
28FILES_${PN}-utils += "${bindir}/*"
29
30BBCLASSEXTEND = "native"