68d09243b6fd Add initial GitLab CI support 8280140db9d1 wolfssl: remove now deprecated compatibility code cee6791b362a ustream-mbedtls: fix certificate verification 55c3fd89d508 ustream-mbedtls: implement set_require_validation c6b4c48689a3 ustream-openssl: wolfSSL: fix certificate validation 3bc05402bfab cmake: enable extra compiler checks cd2c3d12db43 ustream-mbedtls: fix comparison of integers of different signs 5896991e46a3 ustream-openssl: fix BIO_method memory leak 2c342ae57c5b ustream-openssl: fix wolfSSL includes fa8ecd6ed140 cmake: fix linking when mbed TLS not in default paths 63656f81045f cmake: fix linking when wolfSSL not in default paths c26f71e844df cmake: fix building out of the tree Signed-off-by: Petr Štetiar <ynezz@true.cz>
		
			
				
	
	
		
			71 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
include $(TOPDIR)/rules.mk
 | 
						|
 | 
						|
PKG_NAME:=ustream-ssl
 | 
						|
PKG_RELEASE:=1
 | 
						|
 | 
						|
PKG_SOURCE_PROTO:=git
 | 
						|
PKG_SOURCE_URL=$(PROJECT_GIT)/project/ustream-ssl.git
 | 
						|
PKG_SOURCE_DATE:=2020-12-10
 | 
						|
PKG_SOURCE_VERSION:=68d09243b6fd4473004b27ff6483352e76e6af1a
 | 
						|
PKG_MIRROR_HASH:=a620090dee08c0624d167c10e9e45d54aa2b953a1f356eff7325a8fe53c622e6
 | 
						|
CMAKE_INSTALL:=1
 | 
						|
 | 
						|
PKG_LICENSE:=ISC
 | 
						|
PKG_LICENSE_FILES:=
 | 
						|
 | 
						|
PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
 | 
						|
 | 
						|
include $(INCLUDE_DIR)/package.mk
 | 
						|
include $(INCLUDE_DIR)/cmake.mk
 | 
						|
 | 
						|
define Package/libustream/default
 | 
						|
  SECTION:=libs
 | 
						|
  CATEGORY:=Libraries
 | 
						|
  TITLE:=ustream SSL Library
 | 
						|
  DEPENDS:=+libubox
 | 
						|
  ABI_VERSION:=20201210
 | 
						|
endef
 | 
						|
 | 
						|
define Package/libustream-openssl
 | 
						|
  $(Package/libustream/default)
 | 
						|
  TITLE += (openssl)
 | 
						|
  DEPENDS += +PACKAGE_libustream-openssl:libopenssl
 | 
						|
  VARIANT:=openssl
 | 
						|
endef
 | 
						|
 | 
						|
define Package/libustream-wolfssl
 | 
						|
  $(Package/libustream/default)
 | 
						|
  TITLE += (wolfssl)
 | 
						|
  DEPENDS += +PACKAGE_libustream-wolfssl:libwolfssl
 | 
						|
  VARIANT:=wolfssl
 | 
						|
endef
 | 
						|
 | 
						|
define Package/libustream-mbedtls
 | 
						|
  $(Package/libustream/default)
 | 
						|
  TITLE += (mbedtls)
 | 
						|
  DEPENDS += +libmbedtls
 | 
						|
  VARIANT:=mbedtls
 | 
						|
  DEFAULT_VARIANT:=1
 | 
						|
endef
 | 
						|
 | 
						|
ifeq ($(BUILD_VARIANT),wolfssl)
 | 
						|
  TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include/wolfssl
 | 
						|
  CMAKE_OPTIONS += -DWOLFSSL=on
 | 
						|
endif
 | 
						|
ifeq ($(BUILD_VARIANT),mbedtls)
 | 
						|
  CMAKE_OPTIONS += -DMBEDTLS=on
 | 
						|
endif
 | 
						|
 | 
						|
define Package/libustream/default/install
 | 
						|
	$(INSTALL_DIR) $(1)/lib/
 | 
						|
	$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libustream-ssl.so $(1)/lib/
 | 
						|
endef
 | 
						|
 | 
						|
Package/libustream-openssl/install = $(Package/libustream/default/install)
 | 
						|
Package/libustream-wolfssl/install = $(Package/libustream/default/install)
 | 
						|
Package/libustream-mbedtls/install = $(Package/libustream/default/install)
 | 
						|
 | 
						|
$(eval $(call BuildPackage,libustream-mbedtls))
 | 
						|
$(eval $(call BuildPackage,libustream-wolfssl))
 | 
						|
$(eval $(call BuildPackage,libustream-openssl))
 |