mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 15:38:40 +01:00
Merge pull request #14342 from neheb/transmis
transmission: do not use wolfSSL
This commit is contained in:
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
|||||||
|
|
||||||
PKG_NAME:=transmission
|
PKG_NAME:=transmission
|
||||||
PKG_VERSION:=3.00
|
PKG_VERSION:=3.00
|
||||||
PKG_RELEASE:=9
|
PKG_RELEASE:=10
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
||||||
PKG_SOURCE_URL:=@GITHUB/transmission/transmission-releases/master
|
PKG_SOURCE_URL:=@GITHUB/transmission/transmission-releases/master
|
||||||
@@ -40,7 +40,7 @@ define Package/transmission/template
|
|||||||
CATEGORY:=Network
|
CATEGORY:=Network
|
||||||
TITLE:=BitTorrent client
|
TITLE:=BitTorrent client
|
||||||
URL:=https://www.transmissionbt.com
|
URL:=https://www.transmissionbt.com
|
||||||
DEPENDS:=+libcurl +libevent2 +libminiupnpc +libnatpmp +libpthread +librt +zlib +LIBCURL_NOSSL:libmbedtls +LIBCURL_GNUTLS:libmbedtls $(ICONV_DEPENDS)
|
DEPENDS:=+libcurl +libevent2 +libminiupnpc +libnatpmp +libpthread +librt +zlib +LIBCURL_NOSSL:libmbedtls +LIBCURL_GNUTLS:libmbedtls +LIBCURL_WOLFSSL:libmbedtls $(ICONV_DEPENDS)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/transmission-daemon
|
define Package/transmission-daemon
|
||||||
@@ -104,7 +104,7 @@ CONFIGURE_ARGS += \
|
|||||||
$(if $(CONFIG_LIBCURL_GNUTLS),--with-crypto=polarssl) \
|
$(if $(CONFIG_LIBCURL_GNUTLS),--with-crypto=polarssl) \
|
||||||
$(if $(CONFIG_LIBCURL_MBEDTLS),--with-crypto=polarssl) \
|
$(if $(CONFIG_LIBCURL_MBEDTLS),--with-crypto=polarssl) \
|
||||||
$(if $(CONFIG_LIBCURL_OPENSSL),--with-crypto=openssl) \
|
$(if $(CONFIG_LIBCURL_OPENSSL),--with-crypto=openssl) \
|
||||||
$(if $(CONFIG_LIBCURL_WOLFSSL),--with-crypto=cyassl)
|
$(if $(CONFIG_LIBCURL_WOLFSSL),--with-crypto=polarssl)
|
||||||
|
|
||||||
define Package/transmission-daemon/install
|
define Package/transmission-daemon/install
|
||||||
$(INSTALL_DIR) $(1)/usr/bin
|
$(INSTALL_DIR) $(1)/usr/bin
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
--- a/configure.ac
|
--- a/configure.ac
|
||||||
+++ b/configure.ac
|
+++ b/configure.ac
|
||||||
@@ -555,9 +555,6 @@ dnl it should be safe to re-edit 0.40 back down to 0.23
|
@@ -555,9 +555,6 @@ dnl it should be safe to re-edit 0.40 ba
|
||||||
use_nls=no
|
use_nls=no
|
||||||
if test "x$enable_nls" = "xyes" ; then
|
if test "x$enable_nls" = "xyes" ; then
|
||||||
use_nls=yes
|
use_nls=yes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
--- a/configure.ac
|
--- a/configure.ac
|
||||||
+++ b/configure.ac
|
+++ b/configure.ac
|
||||||
@@ -152,8 +152,8 @@ AS_IF([test "x$want_crypto" = "xauto" -o "x$want_crypto" = "xcyassl"], [
|
@@ -152,8 +152,8 @@ AS_IF([test "x$want_crypto" = "xauto" -o
|
||||||
)
|
)
|
||||||
])
|
])
|
||||||
AS_IF([test "x$want_crypto" = "xauto" -o "x$want_crypto" = "xpolarssl"], [
|
AS_IF([test "x$want_crypto" = "xauto" -o "x$want_crypto" = "xpolarssl"], [
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
--- a/libtransmission/webseed.c
|
--- a/libtransmission/webseed.c
|
||||||
+++ b/libtransmission/webseed.c
|
+++ b/libtransmission/webseed.c
|
||||||
@@ -510,8 +510,6 @@ static void webseed_timer_func(evutil_socket_t foo UNUSED, short bar UNUSED, voi
|
@@ -510,8 +510,6 @@ static void webseed_timer_func(evutil_so
|
||||||
++w->retry_tickcount;
|
++w->retry_tickcount;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user