libsoup.mk 892 B

1234567891011121314151617181920212223242526272829303132
  1. #############################################################
  2. #
  3. # libsoup
  4. #
  5. #############################################################
  6. LIBSOUP_MAJOR_VERSION:=2.26
  7. LIBSOUP_VERSION:=$(LIBSOUP_MAJOR_VERSION).2
  8. LIBSOUP_SOURCE:=libsoup-$(LIBSOUP_VERSION).tar.bz2
  9. LIBSOUP_SITE:=http://ftp.gnome.org/pub/gnome/sources/libsoup/$(LIBSOUP_MAJOR_VERSION)
  10. LIBSOUP_AUTORECONF = NO
  11. LIBSOUP_INSTALL_STAGING = YES
  12. LIBSOUP_INSTALL_TARGET = YES
  13. LIBSOUP_CONF_ENV = \
  14. ac_cv_path_GLIB_GENMARSHAL=$(HOST_GLIB)/bin/glib-genmarshal
  15. ifneq ($(BR2_INET_IPV6),y)
  16. LIBSOUP_CONF_ENV += soup_cv_ipv6=no
  17. endif
  18. LIBSOUP_CONF_OPT = \
  19. --enable-shared \
  20. --enable-static \
  21. --disable-explicit-deps \
  22. --disable-glibtest \
  23. --without-gnome \
  24. --disable-gtk-doc --without-html-dir
  25. LIBSOUP_DEPENDENCIES = uclibc gettext libintl host-pkgconfig host-libglib2 libglib2 libxml2
  26. $(eval $(call AUTOTARGETS,package,libsoup))