Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] libsoup: update to version 2.32.2 and enable SSL support
@ 2011-07-13 16:58 Sven Neumann
  2011-07-13 16:58 ` [Buildroot] [PATCH 2/2] libsoup: explicitly pass gcrypt prefix to the configure script Sven Neumann
  2011-07-13 17:12 ` [Buildroot] [PATCH 1/2] libsoup: update to version 2.32.2 and enable SSL support Thomas Petazzoni
  0 siblings, 2 replies; 4+ messages in thread
From: Sven Neumann @ 2011-07-13 16:58 UTC (permalink / raw)
  To: buildroot

SSL support is enabled if gnutls is enabled.

Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
---
 package/libsoup/libsoup.mk |   10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/package/libsoup/libsoup.mk b/package/libsoup/libsoup.mk
index 6ec0882..697f426 100644
--- a/package/libsoup/libsoup.mk
+++ b/package/libsoup/libsoup.mk
@@ -4,7 +4,7 @@
 #
 #############################################################
 
-LIBSOUP_MAJOR_VERSION:=2.31
+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)
@@ -19,9 +19,15 @@ endif
 LIBSOUP_CONF_OPT = \
 	--disable-explicit-deps \
 	--disable-glibtest	\
-	--disable-ssl		\
 	--without-gnome
 
 LIBSOUP_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext libintl) host-pkg-config host-libglib2 libglib2 libxml2
 
+ifeq ($(BR2_PACKAGE_GNUTLS),y)
+LIBSOUP_DEPENDENCIES += gnutls
+LIBSOUP_CONF_OPT += --enable-ssl
+else
+LIBSOUP_CONF_OPT += --disable-ssl
+endif
+
 $(eval $(call AUTOTARGETS,package,libsoup))
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-07-13 19:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-13 16:58 [Buildroot] [PATCH 1/2] libsoup: update to version 2.32.2 and enable SSL support Sven Neumann
2011-07-13 16:58 ` [Buildroot] [PATCH 2/2] libsoup: explicitly pass gcrypt prefix to the configure script Sven Neumann
2011-07-13 17:12 ` [Buildroot] [PATCH 1/2] libsoup: update to version 2.32.2 and enable SSL support Thomas Petazzoni
2011-07-13 19:02   ` Sven Neumann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox