mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-09 17:03:35 -09:00
https://lists.infradead.org/pipermail/openconnect-devel/2026-June/005539.html https://lists.infradead.org/pipermail/openconnect-devel/2026-June/005540.html Removed patch which is included in this release. Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
34 lines
983 B
Makefile
34 lines
983 B
Makefile
################################################################################
|
|
#
|
|
# openconnect
|
|
#
|
|
################################################################################
|
|
|
|
OPENCONNECT_VERSION = 9.21
|
|
OPENCONNECT_SITE = https://www.infradead.org/openconnect/download
|
|
OPENCONNECT_DEPENDENCIES = host-pkgconf libxml2 zlib
|
|
OPENCONNECT_LICENSE = LGPL-2.1
|
|
OPENCONNECT_LICENSE_FILES = COPYING.LGPL
|
|
OPENCONNECT_CPE_ID_VENDOR = infradead
|
|
OPENCONNECT_CONF_OPTS = \
|
|
--disable-dsa-tests \
|
|
--with-vpnc-script=/etc/vpnc/vpnc-script \
|
|
--without-java
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
OPENCONNECT_DEPENDENCIES += openssl
|
|
OPENCONNECT_CONF_OPTS += --without-gnutls --with-openssl
|
|
else ifeq ($(BR2_PACKAGE_GNUTLS),y)
|
|
OPENCONNECT_DEPENDENCIES += gnutls
|
|
OPENCONNECT_CONF_OPTS += --with-gnutls --without-openssl
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LZ4),y)
|
|
OPENCONNECT_DEPENDENCIES += lz4
|
|
OPENCONNECT_CONF_OPTS += --with-lz4
|
|
else
|
|
OPENCONNECT_CONF_OPTS += --without-lz4
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|