transmission: fix mbedtls search 13657/head
authorRosen Penev <rosenp@gmail.com>
Tue, 13 Oct 2020 23:52:40 +0000 (16:52 -0700)
committerRosen Penev <rosenp@gmail.com>
Wed, 14 Oct 2020 04:07:46 +0000 (21:07 -0700)
mbedcrypto should be searched, not mbedtls. Also, there is no pkgconfig
file with mbedtls. Fixed that as well. Removed Makefile hacks.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
net/transmission/Makefile
net/transmission/patches/020-mbedcrypto.patch [new file with mode: 0644]

index 220459e5ba6e1a980d74be2cb1aceef82a72616b..d853d47c18e13033035cf2a4cbba1b5023a14ccc 100644 (file)
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
 
 PKG_NAME:=transmission
 PKG_VERSION:=3.00
-PKG_RELEASE:=5
+PKG_RELEASE:=6
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
 PKG_SOURCE_URL:=@GITHUB/transmission/transmission-releases/master
@@ -137,9 +137,6 @@ CONFIGURE_ARGS += \
 
 ifeq ($(BUILD_VARIANT),mbedtls)
   CONFIGURE_ARGS += --with-crypto=polarssl
-  CONFIGURE_VARS += \
-       MBEDTLS_CFLAGS="-I$(STAGING_DIR)/usr/include/mbedtls" \
-       MBEDTLS_LIBS="-lmbedtls -lmbedcrypto"
 else
   CONFIGURE_ARGS += --with-crypto=openssl
 endif
diff --git a/net/transmission/patches/020-mbedcrypto.patch b/net/transmission/patches/020-mbedcrypto.patch
new file mode 100644 (file)
index 0000000..da0874f
--- /dev/null
@@ -0,0 +1,13 @@
+--- a/configure.ac
++++ b/configure.ac
+@@ -152,8 +152,8 @@ AS_IF([test "x$want_crypto" = "xauto" -o "x$want_crypto" = "xcyassl"], [
+     )
+ ])
+ AS_IF([test "x$want_crypto" = "xauto" -o "x$want_crypto" = "xpolarssl"], [
+-    PKG_CHECK_MODULES(MBEDTLS, [mbedtls >= $POLARSSL_MINIMUM],
+-        [want_crypto="polarssl"; CRYPTO_PKG="polarssl"; CRYPTO_CFLAGS="$MBEDTLS_CFLAGS"; CRYPTO_LIBS="$MBEDTLS_LIBS"; POLARSSL_IS_MBEDTLS=yes],
++    AC_CHECK_LIB(mbedcrypto, mbedtls_strerror,
++        [want_crypto="polarssl"; CRYPTO_PKG="polarssl"; CRYPTO_LIBS="-lmbedcrypto"; POLARSSL_IS_MBEDTLS=yes],
+         [AC_CHECK_HEADER([polarssl/version.h],
+             [AC_EGREP_CPP([version_ok], [#include <polarssl/version.h>
+                                          #if defined (POLARSSL_VERSION_NUMBER) && POLARSSL_VERSION_NUMBER >= $POLARSSL_MINIMUM