Removed all patches because they are included in this release, although with different commits than mentioned in our patch files: 0001:acbbeef9f50002:f7ebc65f050003:c24909ba260004:c340e41950Updated license hash due to upstream commit:4bd66d4549Removed python3 bindings due to their pending removal in 2.16: https://download.gnome.org/sources/libxml2/2.15/libxml2-2.15.0.news which prevents us from adding a dependency on host-doxygen due to upstream commitbbe5827c94"Doxygen will also be required to build the Python bindings." Removed lzma support due to upstream removal:1763281cd6Added configure options for threads and static/shared libs needed due to upstream commit:f070acc564Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
74 lines
1.8 KiB
Makefile
74 lines
1.8 KiB
Makefile
################################################################################
|
|
#
|
|
# libxml2
|
|
#
|
|
################################################################################
|
|
|
|
LIBXML2_VERSION_MAJOR = 2.15
|
|
LIBXML2_VERSION = $(LIBXML2_VERSION_MAJOR).0
|
|
LIBXML2_SOURCE = libxml2-$(LIBXML2_VERSION).tar.xz
|
|
LIBXML2_SITE = \
|
|
https://download.gnome.org/sources/libxml2/$(LIBXML2_VERSION_MAJOR)
|
|
LIBXML2_INSTALL_STAGING = YES
|
|
LIBXML2_LICENSE = MIT
|
|
LIBXML2_LICENSE_FILES = Copyright
|
|
LIBXML2_CPE_ID_VENDOR = xmlsoft
|
|
LIBXML2_CONFIG_SCRIPTS = xml2-config
|
|
|
|
# relocation truncated to fit: R_68K_GOT16O
|
|
ifeq ($(BR2_m68k_cf),y)
|
|
LIBXML2_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) -mxgot"
|
|
endif
|
|
|
|
LIBXML2_CONF_OPTS = --with-http --with-gnu-ld --without-debug
|
|
|
|
HOST_LIBXML2_DEPENDENCIES = host-pkgconf
|
|
LIBXML2_DEPENDENCIES = host-pkgconf
|
|
|
|
HOST_LIBXML2_CONF_OPTS = --without-zlib
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
|
|
LIBXML2_CONF_OPTS += --with-threads
|
|
else
|
|
LIBXML2_CONF_OPTS += --without-threads
|
|
endif
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
LIBXML2_CONF_OPTS += --without-modules
|
|
else
|
|
LIBXML2_CONF_OPTS += --with-modules
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_ICU),y)
|
|
LIBXML2_DEPENDENCIES += icu
|
|
LIBXML2_CONF_OPTS += --with-icu
|
|
else
|
|
LIBXML2_CONF_OPTS += --without-icu
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
LIBXML2_DEPENDENCIES += zlib
|
|
LIBXML2_CONF_OPTS += --with-zlib=$(STAGING_DIR)/usr
|
|
else
|
|
LIBXML2_CONF_OPTS += --without-zlib
|
|
endif
|
|
|
|
LIBXML2_DEPENDENCIES += $(if $(BR2_PACKAGE_LIBICONV),libiconv)
|
|
|
|
ifeq ($(BR2_ENABLE_LOCALE)$(BR2_PACKAGE_LIBICONV),y)
|
|
LIBXML2_CONF_OPTS += --with-iconv
|
|
else
|
|
LIBXML2_CONF_OPTS += --without-iconv
|
|
endif
|
|
|
|
define LIBXML2_CLEANUP_XML2CONF
|
|
rm -f $(TARGET_DIR)/usr/lib/xml2Conf.sh
|
|
endef
|
|
LIBXML2_POST_INSTALL_TARGET_HOOKS += LIBXML2_CLEANUP_XML2CONF
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|
|
|
|
# libxml2 for the host
|
|
LIBXML2_HOST_BINARY = $(HOST_DIR)/bin/xmllint
|