6af9c84a51
Do not build against libgcrypt on the host, since we don't build libgcrypt ourself, and it might fail even when libgcrypt is installed on the host: ...configure... checking for libgcrypt-config... /usr/bin/libgcrypt-config Crypto extensions will be available. ...build... gcc: /usr/lib/libgcrypt.so: No such file or directory Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
44 lines
1.4 KiB
Makefile
44 lines
1.4 KiB
Makefile
#############################################################
|
|
#
|
|
# libxslt
|
|
#
|
|
#############################################################
|
|
LIBXSLT_VERSION = 1.1.24
|
|
LIBXSLT_SOURCE = libxslt-$(LIBXSLT_VERSION).tar.gz
|
|
LIBXSLT_SITE = ftp://xmlsoft.org/libxslt
|
|
LIBXSLT_INSTALL_STAGING = YES
|
|
LIBXSLT_INSTALL_TARGET = YES
|
|
|
|
# If we have enabled libgcrypt then use it, else disable crypto support.
|
|
ifeq ($(BR2_PACKAGE_LIBGCRYPT),y)
|
|
LIBXSLT_DEPENDENCIES_EXTRA=libgcrypt
|
|
else
|
|
LIBXSLT_XTRA_CONF_OPT = --without-crypto
|
|
endif
|
|
|
|
LIBXSLT_CONF_OPT = --with-gnu-ld --enable-shared \
|
|
--enable-static $(LIBXSLT_XTRA_CONF_OPT) \
|
|
--without-debugging --without-python \
|
|
--without-threads \
|
|
--with-libxml-prefix=$(STAGING_DIR)/usr/
|
|
|
|
LIBXSLT_DEPENDENCIES = libxml2 $(LIBXSLT_DEPENDENCIES_EXTRA)
|
|
|
|
HOST_LIBXSLT_CONF_OPT = --enable-shared \
|
|
--without-debugging \
|
|
--without-python \
|
|
--without-threads \
|
|
--without-crypto
|
|
|
|
HOST_LIBXSLT_DEPENDENCIES = host-libxml2
|
|
|
|
$(eval $(call AUTOTARGETS,package,libxslt))
|
|
$(eval $(call AUTOTARGETS,package,libxslt,host))
|
|
|
|
$(LIBXSLT_HOOK_POST_INSTALL):
|
|
$(SED) "s,^prefix=.*,prefix=\'$(STAGING_DIR)/usr\',g" $(STAGING_DIR)/usr/bin/xslt-config
|
|
$(SED) "s,^exec_prefix=.*,exec_prefix=\'$(STAGING_DIR)/usr\',g" $(STAGING_DIR)/usr/bin/xslt-config
|
|
$(SED) "s,^includedir=.*,includedir=\'$(STAGING_DIR)/usr/include\',g" $(STAGING_DIR)/usr/bin/xslt-config
|
|
touch $@
|
|
|