2017-10-18 04:32:28 +02:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# libopenssl
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2022-07-08 09:17:17 +02:00
|
|
|
LIBOPENSSL_VERSION = 1.1.1q
|
2018-12-10 11:06:35 +01:00
|
|
|
LIBOPENSSL_SITE = https://www.openssl.org/source
|
2017-10-18 04:32:28 +02:00
|
|
|
LIBOPENSSL_SOURCE = openssl-$(LIBOPENSSL_VERSION).tar.gz
|
|
|
|
LIBOPENSSL_LICENSE = OpenSSL or SSLeay
|
|
|
|
LIBOPENSSL_LICENSE_FILES = LICENSE
|
|
|
|
LIBOPENSSL_INSTALL_STAGING = YES
|
|
|
|
LIBOPENSSL_DEPENDENCIES = zlib
|
|
|
|
HOST_LIBOPENSSL_DEPENDENCIES = host-zlib
|
2019-10-27 11:24:17 +01:00
|
|
|
LIBOPENSSL_TARGET_ARCH = $(call qstrip,$(BR2_PACKAGE_LIBOPENSSL_TARGET_ARCH))
|
2017-10-18 04:32:28 +02:00
|
|
|
LIBOPENSSL_CFLAGS = $(TARGET_CFLAGS)
|
|
|
|
LIBOPENSSL_PROVIDES = openssl
|
2020-12-04 16:46:01 +01:00
|
|
|
LIBOPENSSL_CPE_ID_VENDOR = $(LIBOPENSSL_PROVIDES)
|
2021-01-18 18:41:51 +01:00
|
|
|
LIBOPENSSL_CPE_ID_PRODUCT = $(LIBOPENSSL_PROVIDES)
|
2017-10-18 04:32:28 +02:00
|
|
|
|
|
|
|
ifeq ($(BR2_m68k_cf),y)
|
2019-02-08 19:46:59 +01:00
|
|
|
# relocation truncated to fit: R_68K_GOT16O
|
2017-10-18 04:32:28 +02:00
|
|
|
LIBOPENSSL_CFLAGS += -mxgot
|
2019-02-08 19:46:59 +01:00
|
|
|
# resolves an assembler "out of range error" with blake2 and sha512 algorithms
|
|
|
|
LIBOPENSSL_CFLAGS += -DOPENSSL_SMALL_FOOTPRINT
|
2017-10-18 04:32:28 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_USE_MMU),)
|
2019-01-29 10:39:19 +01:00
|
|
|
LIBOPENSSL_CFLAGS += -DHAVE_FORK=0 -DOPENSSL_NO_MADVISE
|
2017-10-18 04:32:28 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_HAS_CRYPTODEV),y)
|
|
|
|
LIBOPENSSL_DEPENDENCIES += cryptodev
|
|
|
|
endif
|
|
|
|
|
2019-01-29 10:39:19 +01:00
|
|
|
# fixes the following build failures:
|
|
|
|
#
|
|
|
|
# - musl
|
|
|
|
# ./libcrypto.so: undefined reference to `getcontext'
|
|
|
|
# ./libcrypto.so: undefined reference to `setcontext'
|
|
|
|
# ./libcrypto.so: undefined reference to `makecontext'
|
|
|
|
#
|
|
|
|
# - uclibc:
|
2019-05-07 22:35:24 +02:00
|
|
|
# crypto/async/arch/../arch/async_posix.h:32:5: error: unknown type name 'ucontext_t'
|
2019-01-29 10:39:19 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_USES_MUSL),y)
|
|
|
|
LIBOPENSSL_CFLAGS += -DOPENSSL_NO_ASYNC
|
|
|
|
endif
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_UCONTEXT),)
|
|
|
|
LIBOPENSSL_CFLAGS += -DOPENSSL_NO_ASYNC
|
|
|
|
endif
|
|
|
|
|
2017-10-18 04:32:28 +02:00
|
|
|
define HOST_LIBOPENSSL_CONFIGURE_CMDS
|
2022-07-07 07:49:48 +02:00
|
|
|
cd $(@D); \
|
2017-10-18 04:32:28 +02:00
|
|
|
$(HOST_CONFIGURE_OPTS) \
|
|
|
|
./config \
|
|
|
|
--prefix=$(HOST_DIR) \
|
|
|
|
--openssldir=$(HOST_DIR)/etc/ssl \
|
2019-01-29 10:39:19 +01:00
|
|
|
no-tests \
|
|
|
|
no-fuzz-libfuzzer \
|
|
|
|
no-fuzz-afl \
|
2017-10-18 04:32:28 +02:00
|
|
|
shared \
|
2022-07-07 07:49:48 +02:00
|
|
|
zlib-dynamic
|
2017-10-18 04:32:28 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define LIBOPENSSL_CONFIGURE_CMDS
|
2022-07-07 07:49:48 +02:00
|
|
|
cd $(@D); \
|
2017-10-18 04:32:28 +02:00
|
|
|
$(TARGET_CONFIGURE_ARGS) \
|
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
2022-07-07 07:49:48 +02:00
|
|
|
CFLAGS="$(LIBOPENSSL_CFLAGS)" \
|
2017-10-18 04:32:28 +02:00
|
|
|
./Configure \
|
2019-05-31 15:39:28 +02:00
|
|
|
$(LIBOPENSSL_TARGET_ARCH) \
|
2017-10-18 04:32:28 +02:00
|
|
|
--prefix=/usr \
|
|
|
|
--openssldir=/etc/ssl \
|
2019-01-29 10:39:19 +01:00
|
|
|
$(if $(BR2_TOOLCHAIN_HAS_LIBATOMIC),-latomic) \
|
2021-04-25 15:38:45 +02:00
|
|
|
$(if $(BR2_TOOLCHAIN_HAS_THREADS),threads,no-threads) \
|
2017-10-18 04:32:28 +02:00
|
|
|
$(if $(BR2_STATIC_LIBS),no-shared,shared) \
|
2019-01-29 10:39:19 +01:00
|
|
|
$(if $(BR2_PACKAGE_HAS_CRYPTODEV),enable-devcryptoeng) \
|
2017-10-18 04:32:28 +02:00
|
|
|
no-rc5 \
|
|
|
|
enable-camellia \
|
2019-01-29 10:39:19 +01:00
|
|
|
no-tests \
|
|
|
|
no-fuzz-libfuzzer \
|
|
|
|
no-fuzz-afl \
|
2022-10-04 13:15:28 +02:00
|
|
|
no-afalgeng \
|
2020-05-11 15:21:33 +02:00
|
|
|
$(if $(BR2_PACKAGE_LIBOPENSSL_ENABLE_CHACHA),,no-chacha) \
|
|
|
|
$(if $(BR2_PACKAGE_LIBOPENSSL_ENABLE_RC2),,no-rc2) \
|
|
|
|
$(if $(BR2_PACKAGE_LIBOPENSSL_ENABLE_RC4),,no-rc4) \
|
|
|
|
$(if $(BR2_PACKAGE_LIBOPENSSL_ENABLE_MD2),,no-md2) \
|
|
|
|
$(if $(BR2_PACKAGE_LIBOPENSSL_ENABLE_MD4),,no-md4) \
|
|
|
|
$(if $(BR2_PACKAGE_LIBOPENSSL_ENABLE_MDC2),,no-mdc2) \
|
|
|
|
$(if $(BR2_PACKAGE_LIBOPENSSL_ENABLE_BLAKE2),,no-blake2) \
|
|
|
|
$(if $(BR2_PACKAGE_LIBOPENSSL_ENABLE_IDEA),,no-idea) \
|
|
|
|
$(if $(BR2_PACKAGE_LIBOPENSSL_ENABLE_SEED),,no-seed) \
|
|
|
|
$(if $(BR2_PACKAGE_LIBOPENSSL_ENABLE_DES),,no-des) \
|
|
|
|
$(if $(BR2_PACKAGE_LIBOPENSSL_ENABLE_RMD160),,no-rmd160) \
|
|
|
|
$(if $(BR2_PACKAGE_LIBOPENSSL_ENABLE_WHIRLPOOL),,no-whirlpool) \
|
|
|
|
$(if $(BR2_PACKAGE_LIBOPENSSL_ENABLE_BLOWFISH),,no-bf) \
|
|
|
|
$(if $(BR2_PACKAGE_LIBOPENSSL_ENABLE_SSL),,no-ssl) \
|
|
|
|
$(if $(BR2_PACKAGE_LIBOPENSSL_ENABLE_SSL2),,no-ssl2) \
|
|
|
|
$(if $(BR2_PACKAGE_LIBOPENSSL_ENABLE_SSL3),,no-ssl3) \
|
|
|
|
$(if $(BR2_PACKAGE_LIBOPENSSL_ENABLE_WEAK_SSL),,no-weak-ssl-ciphers) \
|
|
|
|
$(if $(BR2_PACKAGE_LIBOPENSSL_ENABLE_PSK),,no-psk) \
|
|
|
|
$(if $(BR2_PACKAGE_LIBOPENSSL_ENABLE_CAST),,no-cast) \
|
|
|
|
$(if $(BR2_PACKAGE_LIBOPENSSL_UNSECURE),,no-unit-test no-crypto-mdebug-backtrace no-crypto-mdebug no-autoerrinit) \
|
|
|
|
$(if $(BR2_PACKAGE_LIBOPENSSL_DYNAMIC_ENGINE),,no-dynamic-engine ) \
|
|
|
|
$(if $(BR2_PACKAGE_LIBOPENSSL_ENABLE_COMP),,no-comp) \
|
2017-10-18 04:32:28 +02:00
|
|
|
$(if $(BR2_STATIC_LIBS),zlib,zlib-dynamic) \
|
2022-07-07 07:49:48 +02:00
|
|
|
$(if $(BR2_STATIC_LIBS),no-dso)
|
2017-10-18 04:32:28 +02:00
|
|
|
endef
|
|
|
|
|
2021-04-25 15:38:45 +02:00
|
|
|
# libdl is not available in a static build, and this is not implied by no-dso
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
|
|
define LIBOPENSSL_FIXUP_STATIC_MAKEFILE
|
|
|
|
$(SED) 's#-ldl##g' $(@D)/Makefile
|
|
|
|
endef
|
|
|
|
LIBOPENSSL_POST_CONFIGURE_HOOKS += LIBOPENSSL_FIXUP_STATIC_MAKEFILE
|
|
|
|
endif
|
|
|
|
|
2017-10-18 04:32:28 +02:00
|
|
|
define HOST_LIBOPENSSL_BUILD_CMDS
|
|
|
|
$(HOST_MAKE_ENV) $(MAKE) -C $(@D)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define LIBOPENSSL_BUILD_CMDS
|
|
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define LIBOPENSSL_INSTALL_STAGING_CMDS
|
2019-01-29 10:39:19 +01:00
|
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(STAGING_DIR) install
|
2017-10-18 04:32:28 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define HOST_LIBOPENSSL_INSTALL_CMDS
|
|
|
|
$(HOST_MAKE_ENV) $(MAKE) -C $(@D) install
|
|
|
|
endef
|
|
|
|
|
|
|
|
define LIBOPENSSL_INSTALL_TARGET_CMDS
|
2019-01-29 10:39:19 +01:00
|
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install
|
2017-10-18 04:32:28 +02:00
|
|
|
rm -rf $(TARGET_DIR)/usr/lib/ssl
|
|
|
|
rm -f $(TARGET_DIR)/usr/bin/c_rehash
|
|
|
|
endef
|
|
|
|
|
2021-04-25 15:38:45 +02:00
|
|
|
# libdl has no business in a static build
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
|
|
define LIBOPENSSL_FIXUP_STATIC_PKGCONFIG
|
|
|
|
$(SED) 's#-ldl##' $(STAGING_DIR)/usr/lib/pkgconfig/libcrypto.pc
|
|
|
|
$(SED) 's#-ldl##' $(STAGING_DIR)/usr/lib/pkgconfig/libssl.pc
|
|
|
|
$(SED) 's#-ldl##' $(STAGING_DIR)/usr/lib/pkgconfig/openssl.pc
|
|
|
|
endef
|
|
|
|
LIBOPENSSL_POST_INSTALL_STAGING_HOOKS += LIBOPENSSL_FIXUP_STATIC_PKGCONFIG
|
|
|
|
endif
|
|
|
|
|
2017-10-18 04:32:28 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_PERL),)
|
|
|
|
define LIBOPENSSL_REMOVE_PERL_SCRIPTS
|
|
|
|
$(RM) -f $(TARGET_DIR)/etc/ssl/misc/{CA.pl,tsget}
|
|
|
|
endef
|
|
|
|
LIBOPENSSL_POST_INSTALL_TARGET_HOOKS += LIBOPENSSL_REMOVE_PERL_SCRIPTS
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBOPENSSL_BIN),)
|
|
|
|
define LIBOPENSSL_REMOVE_BIN
|
|
|
|
$(RM) -f $(TARGET_DIR)/usr/bin/openssl
|
|
|
|
$(RM) -f $(TARGET_DIR)/etc/ssl/misc/{CA.*,c_*}
|
|
|
|
endef
|
|
|
|
LIBOPENSSL_POST_INSTALL_TARGET_HOOKS += LIBOPENSSL_REMOVE_BIN
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(BR2_PACKAGE_LIBOPENSSL_ENGINES),y)
|
|
|
|
define LIBOPENSSL_REMOVE_LIBOPENSSL_ENGINES
|
2019-01-29 10:39:19 +01:00
|
|
|
rm -rf $(TARGET_DIR)/usr/lib/engines-1.1
|
2017-10-18 04:32:28 +02:00
|
|
|
endef
|
|
|
|
LIBOPENSSL_POST_INSTALL_TARGET_HOOKS += LIBOPENSSL_REMOVE_LIBOPENSSL_ENGINES
|
|
|
|
endif
|
|
|
|
|
|
|
|
$(eval $(generic-package))
|
|
|
|
$(eval $(host-generic-package))
|