300f9c9c9d
Thanks to the pkgparentdir and pkgname functions, we can rewrite the AUTOTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
34 lines
949 B
Makefile
34 lines
949 B
Makefile
#############################################################
|
|
#
|
|
# libsoup
|
|
#
|
|
#############################################################
|
|
|
|
LIBSOUP_MAJOR_VERSION:=2.32
|
|
LIBSOUP_VERSION:=$(LIBSOUP_MAJOR_VERSION).2
|
|
LIBSOUP_SOURCE:=libsoup-$(LIBSOUP_VERSION).tar.bz2
|
|
LIBSOUP_SITE:=http://ftp.gnome.org/pub/gnome/sources/libsoup/$(LIBSOUP_MAJOR_VERSION)
|
|
LIBSOUP_INSTALL_STAGING = YES
|
|
|
|
LIBSOUP_CONF_ENV = ac_cv_path_GLIB_GENMARSHAL=$(LIBGLIB2_HOST_BINARY)
|
|
|
|
ifneq ($(BR2_INET_IPV6),y)
|
|
LIBSOUP_CONF_ENV += soup_cv_ipv6=no
|
|
endif
|
|
|
|
LIBSOUP_CONF_OPT = \
|
|
--disable-explicit-deps \
|
|
--disable-glibtest \
|
|
--without-gnome
|
|
|
|
LIBSOUP_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext libintl) host-pkg-config host-libglib2 libglib2 libxml2
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSOUP_SSL),y)
|
|
LIBSOUP_DEPENDENCIES += gnutls
|
|
LIBSOUP_CONF_OPT += --enable-ssl --with-libgcrypt-prefix=$(STAGING_DIR)/usr
|
|
else
|
|
LIBSOUP_CONF_OPT += --disable-ssl
|
|
endif
|
|
|
|
$(eval $(call AUTOTARGETS))
|