mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-24 14:03:29 +08:00
96d0d67779
Fix the following build failure raised since bump of libressl to version
3.8.2 in commit 21eca49ed5
:
./keys.c:167:35: error: 'ENGINE_METHOD_ALL' undeclared (first use in this function)
167 | if(!ENGINE_set_default(e, ENGINE_METHOD_ALL)) {
| ^~~~~~~~~~~~~~~~~
Fixes:
- http://autobuild.buildroot.org/results/37cc05b78a7004caa1b45d896121f059a4f8ca00
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
49 lines
1.3 KiB
Makefile
49 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# libldns
|
|
#
|
|
################################################################################
|
|
|
|
LIBLDNS_VERSION = 1.8.3
|
|
LIBLDNS_SOURCE = ldns-$(LIBLDNS_VERSION).tar.gz
|
|
LIBLDNS_SITE = http://www.nlnetlabs.nl/downloads/ldns
|
|
LIBLDNS_LICENSE = BSD-3-Clause
|
|
LIBLDNS_LICENSE_FILES = LICENSE
|
|
LIBLDNS_CPE_ID_VENDOR = nlnetlabs
|
|
LIBLDNS_CPE_ID_PRODUCT = ldns
|
|
LIBLDNS_INSTALL_STAGING = YES
|
|
LIBLDNS_DEPENDENCIES = openssl
|
|
LIBLDNS_CONF_OPTS = \
|
|
--with-ssl=$(STAGING_DIR)/usr \
|
|
--enable-dane \
|
|
--enable-ecdsa \
|
|
--enable-sha2 \
|
|
--without-examples \
|
|
--without-p5-dns-ldns \
|
|
--without-pyldns \
|
|
--without-pyldnsx
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBOPENSSL),y)
|
|
LIBLDNS_CONF_OPTS += --enable-dane-verify
|
|
else
|
|
LIBLDNS_CONF_OPTS += --disable-dane-verify
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBOPENSSL_ENGINES),y)
|
|
LIBLDNS_CONF_OPTS += --enable-gost
|
|
else
|
|
LIBLDNS_CONF_OPTS += --disable-gost
|
|
endif
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
LIBLDNS_DEPENDENCIES += host-pkgconf
|
|
# missing -lz breaks configure, add it using pkgconf
|
|
LIBLDNS_CONF_ENV += LIBS="`$(PKG_CONFIG_HOST_BINARY) --libs openssl`"
|
|
endif
|
|
|
|
# the linktest make target fails with static linking, and we are only
|
|
# interested in the lib target anyway
|
|
LIBLDNS_MAKE_OPTS = lib
|
|
|
|
$(eval $(autotools-package))
|