mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-28 13:46:32 +00:00
libsoup: add option to enable HTTPS (SSL) support
By selecting BR2_PACKAGE_LIBSOUP_SSL the gnutls package is selected and libsoup will be compiled with SSL support. [Peter: pass --with-libgcrypt-prefix so configure finds it] Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
044edd0637
commit
bd387486ad
@ -12,5 +12,12 @@ config BR2_PACKAGE_LIBSOUP
|
|||||||
|
|
||||||
http://live.gnome.org/LibSoup
|
http://live.gnome.org/LibSoup
|
||||||
|
|
||||||
|
config BR2_PACKAGE_LIBSOUP_SSL
|
||||||
|
bool "https support"
|
||||||
|
select BR2_PACKAGE_GNUTLS
|
||||||
|
depends on BR2_PACKAGE_LIBSOUP
|
||||||
|
help
|
||||||
|
Enable HTTPS (SSL) support.
|
||||||
|
|
||||||
comment "libsoup requires a toolchain with WCHAR support"
|
comment "libsoup requires a toolchain with WCHAR support"
|
||||||
depends on !BR2_USE_WCHAR
|
depends on !BR2_USE_WCHAR
|
||||||
|
@ -19,9 +19,15 @@ endif
|
|||||||
LIBSOUP_CONF_OPT = \
|
LIBSOUP_CONF_OPT = \
|
||||||
--disable-explicit-deps \
|
--disable-explicit-deps \
|
||||||
--disable-glibtest \
|
--disable-glibtest \
|
||||||
--disable-ssl \
|
|
||||||
--without-gnome
|
--without-gnome
|
||||||
|
|
||||||
LIBSOUP_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext libintl) host-pkg-config host-libglib2 libglib2 libxml2
|
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,package,libsoup))
|
$(eval $(call AUTOTARGETS,package,libsoup))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user