86ab91483d
- Drop patch (already in version)
- This bump will also fix the following build failure with libressl raised
since bump to version 3.5.2 in commit
8b216927db
:
p11_cert.c: In function 'pkcs11_store_certificate':
p11_cert.c:310:34: error: dereferencing pointer to incomplete type 'X509' {aka 'struct x509_st'}
310 | signature_nid = OBJ_obj2nid(x509->sig_alg->algorithm);
| ^~
https://github.com/OpenSC/libp11/releases/tag/libp11-0.4.12
Fixes:
- http://autobuild.buildroot.org/results/3acfa1419b59f7daa58fa8e61abc63ecb00f853c
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
33 lines
1.0 KiB
Makefile
33 lines
1.0 KiB
Makefile
################################################################################
|
|
#
|
|
# libp11
|
|
#
|
|
################################################################################
|
|
|
|
LIBP11_VERSION = 0.4.12
|
|
LIBP11_SITE = https://github.com/OpenSC/libp11/releases/download/libp11-$(LIBP11_VERSION)
|
|
LIBP11_DEPENDENCIES = openssl host-pkgconf
|
|
LIBP11_INSTALL_STAGING = YES
|
|
LIBP11_LICENSE = LGPL-2.1+
|
|
LIBP11_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBOPENSSL),y)
|
|
LIBP11_ENGINESDIR = enginesdir
|
|
else ifeq ($(BR2_PACKAGE_LIBRESSL),y)
|
|
LIBP11_ENGINESDIR = libdir
|
|
endif
|
|
|
|
# pkg-config returns a libcrypto enginesdir prefixed with the sysroot,
|
|
# so let's rip it out.
|
|
LIBP11_CONF_OPTS = \
|
|
--with-enginesdir=`$(PKG_CONFIG_HOST_BINARY) --variable $(LIBP11_ENGINESDIR) libcrypto | xargs readlink -f | sed 's%^$(STAGING_DIR)%%'`
|
|
|
|
ifeq ($(BR2_PACKAGE_P11_KIT),y)
|
|
LIBP11_CONF_OPTS += --with-pkcs11-module=/usr/lib/p11-kit-proxy.so
|
|
endif
|
|
|
|
HOST_LIBP11_DEPENDENCIES = host-pkgconf host-openssl
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|