mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-01 15:37:44 +00:00
libmicrohttpd: bump to version 0.9.24
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
f1b86cef98
commit
562d1ad82e
@ -1,5 +1,6 @@
|
|||||||
config BR2_PACKAGE_LIBMICROHTTPD
|
config BR2_PACKAGE_LIBMICROHTTPD
|
||||||
bool "libmicrohttpd"
|
bool "libmicrohttpd"
|
||||||
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||||
help
|
help
|
||||||
GNU libmicrohttpd is a small C library that makes it easy to
|
GNU libmicrohttpd is a small C library that makes it easy to
|
||||||
run an HTTP server as part of another application.
|
run an HTTP server as part of another application.
|
||||||
@ -9,6 +10,10 @@ config BR2_PACKAGE_LIBMICROHTTPD
|
|||||||
config BR2_PACKAGE_LIBMICROHTTPD_SSL
|
config BR2_PACKAGE_LIBMICROHTTPD_SSL
|
||||||
bool "https support"
|
bool "https support"
|
||||||
depends on BR2_PACKAGE_LIBMICROHTTPD
|
depends on BR2_PACKAGE_LIBMICROHTTPD
|
||||||
|
select BR2_PACKAGE_GNUTLS
|
||||||
select BR2_PACKAGE_LIBGCRYPT
|
select BR2_PACKAGE_LIBGCRYPT
|
||||||
help
|
help
|
||||||
Enable HTTPS (SSL) support.
|
Enable HTTPS (SSL) support.
|
||||||
|
|
||||||
|
comment "libmicrohttpd needs a toolchain with thread support"
|
||||||
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
||||||
|
@ -3,14 +3,14 @@
|
|||||||
# libmicrohttpd
|
# libmicrohttpd
|
||||||
#
|
#
|
||||||
#############################################################
|
#############################################################
|
||||||
LIBMICROHTTPD_VERSION = 0.4.6
|
|
||||||
LIBMICROHTTPD_SOURCE = libmicrohttpd-$(LIBMICROHTTPD_VERSION).tar.gz
|
LIBMICROHTTPD_VERSION = 0.9.24
|
||||||
LIBMICROHTTPD_SITE = $(BR2_GNU_MIRROR)/libmicrohttpd
|
LIBMICROHTTPD_SITE = $(BR2_GNU_MIRROR)/libmicrohttpd
|
||||||
LIBMICROHTTPD_INSTALL_STAGING = YES
|
LIBMICROHTTPD_INSTALL_STAGING = YES
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_LIBMICROHTTPD_SSL),y)
|
ifeq ($(BR2_PACKAGE_LIBMICROHTTPD_SSL),y)
|
||||||
LIBMICROHTTPD_DEPENDENCIES += libgcrypt
|
LIBMICROHTTPD_DEPENDENCIES += gnutls libgcrypt
|
||||||
LIBMICROHTTPD_CONF_OPT += --enable-https \
|
LIBMICROHTTPD_CONF_OPT += --enable-https --with-gnutls=$(STAGING_DIR)/usr \
|
||||||
--with-libgcrypt-prefix=$(STAGING_DIR)/usr
|
--with-libgcrypt-prefix=$(STAGING_DIR)/usr
|
||||||
else
|
else
|
||||||
LIBMICROHTTPD_CONF_OPT += --disable-https
|
LIBMICROHTTPD_CONF_OPT += --disable-https
|
||||||
|
Loading…
x
Reference in New Issue
Block a user