f5d88d8db3
- Drop patch (already in version)
- LIBCOAP_IGNORE_CVES is not needed after bump
- Update hash of license file: LGPL-2.1 added when RIOT support with
8d869fff04
https://github.com/obgm/libcoap/blob/v4.3.4/ChangeLog
https://github.com/obgm/libcoap/compare/v4.3.1...v4.3.4
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
35 lines
1.1 KiB
Makefile
35 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# libcoap
|
|
#
|
|
################################################################################
|
|
|
|
LIBCOAP_VERSION = 4.3.4
|
|
LIBCOAP_SITE = $(call github,obgm,libcoap,v$(LIBCOAP_VERSION))
|
|
LIBCOAP_INSTALL_STAGING = YES
|
|
LIBCOAP_LICENSE = BSD-2-Clause
|
|
LIBCOAP_LICENSE_FILES = COPYING LICENSE
|
|
LIBCOAP_CPE_ID_VENDOR = libcoap
|
|
LIBCOAP_DEPENDENCIES = host-pkgconf
|
|
LIBCOAP_CONF_OPTS = \
|
|
--disable-examples --disable-examples-source --without-tinydtls
|
|
LIBCOAP_AUTORECONF = YES
|
|
|
|
ifeq ($(BR2_PACKAGE_GNUTLS),y)
|
|
LIBCOAP_DEPENDENCIES += gnutls
|
|
LIBCOAP_CONF_OPTS += \
|
|
--enable-dtls --with-gnutls --without-mbedtls --without-openssl
|
|
else ifeq ($(BR2_PACKAGE_LIBOPENSSL),y)
|
|
LIBCOAP_DEPENDENCIES += openssl
|
|
LIBCOAP_CONF_OPTS += \
|
|
--enable-dtls --without-gnutls --without-mbedtls --with-openssl
|
|
else ifeq ($(BR2_PACKAGE_MBEDTLS),y)
|
|
LIBCOAP_DEPENDENCIES += mbedtls
|
|
LIBCOAP_CONF_OPTS += \
|
|
--enable-dtls --without-gnutls --with-mbedtls --without-openssl
|
|
else
|
|
LIBCOAP_CONF_OPTS += --disable-dtls
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|