From ad933f9119340f0d11415b9bc3433d0de3681aa2 Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Sat, 17 Oct 2020 21:46:39 +0200 Subject: [PATCH] package/transmission: drop second patch transmission in version 3.00 is building fine on musl and upstream thinks that this patch is not needed anymore: https://github.com/transmission/transmission/pull/1156 Signed-off-by: Fabrice Fontaine Signed-off-by: Yann E. MORIN --- ...clude.patch => 0002-fix-utp-include.patch} | 0 .../0002-musl-missing-header.patch | 36 ------------------- 2 files changed, 36 deletions(-) rename package/transmission/{0003-fix-utp-include.patch => 0002-fix-utp-include.patch} (100%) delete mode 100644 package/transmission/0002-musl-missing-header.patch diff --git a/package/transmission/0003-fix-utp-include.patch b/package/transmission/0002-fix-utp-include.patch similarity index 100% rename from package/transmission/0003-fix-utp-include.patch rename to package/transmission/0002-fix-utp-include.patch diff --git a/package/transmission/0002-musl-missing-header.patch b/package/transmission/0002-musl-missing-header.patch deleted file mode 100644 index ebb74cbffb..0000000000 --- a/package/transmission/0002-musl-missing-header.patch +++ /dev/null @@ -1,36 +0,0 @@ -Fix musl build - -Downloaded from -https://cgit.gentoo.org/proj/musl.git/tree/net-p2p/transmission/files/transmission-2.84-musl-missing-header.patch - -Signed-off-by: Bernd Kuhls - - -libtransmission/transmission.h: add missing - -transmission.h and several files including it, like bitfield.c and fdlimits.h -make reference to ssize_t, off_t and other types defined in but -never include the header. By including in transmission.h, the -required type definitions are propagated to all files that need them. - -Not including on glibc and uClibc systems does not pose a problem -because of the way the headers stack in those C Standard Libraries, but on musl -excluding leads to compile time failure. - -For the POSIX specs, see - -http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_types.h.html - -Signed-of-by: Anthony G. Basile - -diff -Naur transmission-2.84.orig/libtransmission/transmission.h transmission-2.84/libtransmission/transmission.h ---- transmission-2.84.orig/libtransmission/transmission.h 2014-07-01 13:09:01.682910744 -0400 -+++ transmission-2.84/libtransmission/transmission.h 2015-07-19 03:11:07.379219181 -0400 -@@ -28,6 +28,7 @@ - - #include /* uintN_t */ - #include /* time_t */ -+#include - - #ifdef WIN32 - #define __USE_MINGW_ANSI_STDIO 1 -- 2.30.2