package/transmission: bump version to 2.9.4
authorBernd Kuhls <bernd.kuhls@t-online.de>
Wed, 2 May 2018 06:05:37 +0000 (08:05 +0200)
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>
Sun, 20 May 2018 13:48:36 +0000 (15:48 +0200)
Removed patch 0003, a different fix was committed upstream:
https://github.com/transmission/transmission/commit/b21a6140e963491f146293c9b0a2863a9ae99ad3

Renumbered remaining patches.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
package/transmission/0003-fix-utp-include.patch [new file with mode: 0644]
package/transmission/0003-miniupnpc-cross.patch [deleted file]
package/transmission/0004-fix-utp-include.patch [deleted file]
package/transmission/0004-uClibc-ng-since-1.0.18-has-sys-quota.h-synced-with-G.patch [new file with mode: 0644]
package/transmission/0005-libsystemd.patch [new file with mode: 0644]
package/transmission/0005-uClibc-ng-since-1.0.18-has-sys-quota.h-synced-with-G.patch [deleted file]
package/transmission/0006-libsystemd.patch [deleted file]
package/transmission/transmission.hash
package/transmission/transmission.mk

diff --git a/package/transmission/0003-fix-utp-include.patch b/package/transmission/0003-fix-utp-include.patch
new file mode 100644 (file)
index 0000000..db8b5ab
--- /dev/null
@@ -0,0 +1,46 @@
+Fix compilation when using system libminiupnpc with libutp disabled
+
+If transmission uses its own copy of libminiupnpc in third-party/ then
+the configure script adds that path to CFLAGS:
+https://trac.transmissionbt.com/browser/trunk/configure.ac#L455
+
+This path is also added if transmission uses its own copy of libutp:
+https://trac.transmissionbt.com/browser/trunk/configure.ac#L349
+
+But if a system-provided libminiupnpc is used and utp-support is
+disabled using --disable-utp the result is a build error, detected by
+buildroot autobuilders:
+http://autobuild.buildroot.net/results/b79/b79e51140cb0320554a58ce59dcb33f53cd9211a/build-end.log
+
+net.c:40:24: fatal error: libutp/utp.h: No such file or directory
+
+Patch proposed by Yann E. MORIN:
+http://lists.busybox.net/pipermail/buildroot/2016-July/167896.html
+
+Patch sent upstream: https://trac.transmissionbt.com/ticket/6163
+
+Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
+
+diff -uNr transmission-2.92.org/configure.ac transmission-2.92/configure.ac
+--- transmission-2.92.org/configure.ac 2016-03-06 21:23:45.336198393 +0100
++++ transmission-2.92/configure.ac     2016-07-31 12:13:40.921660078 +0200
+@@ -358,6 +358,10 @@
+     else
+       AC_MSG_ERROR("Unable to build uTP support -- C++ compiler not found")
+     fi
++else
++    # For the system libminiupnpc with UTC disabled,
++    # point to our bundled UTP headers
++    LIBUTP_CFLAGS="-I\$(top_srcdir)/third-party/"
+ fi
+ AC_SUBST(LIBUTP_CFLAGS)
+ AC_SUBST(LIBUTP_LIBS)
+@@ -457,7 +461,7 @@
+     LIBUPNP_LIBS_QT="\$\${TRANSMISSION_TOP}/third-party/miniupnp/libminiupnp.a"
+ else
+     AC_DEFINE([SYSTEM_MINIUPNP])
+-    LIBUPNP_CFLAGS="" 
++    LIBUPNP_CFLAGS="${LIBUTP_CFLAGS}"
+     LIBUPNP_LIBS="-lminiupnpc"
+     LIBUPNP_LIBS_QT="-lminiupnpc"
+ fi
diff --git a/package/transmission/0003-miniupnpc-cross.patch b/package/transmission/0003-miniupnpc-cross.patch
deleted file mode 100644 (file)
index 5037c2e..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-Fix libminiupnpc version detection
-
-Problem is known upstream: https://trac.transmissionbt.com/ticket/6140
-
-For buildroot we know the libminiupnpc version so we hard-code 2.0.
-
-Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
-
-diff -uNr transmission-2.92.org/configure.ac transmission-2.92/configure.ac
---- transmission-2.92.org/configure.ac 2016-03-06 21:23:45.336198393 +0100
-+++ transmission-2.92/configure.ac     2016-07-02 21:48:13.452385686 +0200
-@@ -386,18 +386,7 @@
- dnl MINIUPNPC_API_VERSION and we won't have to figure
- dnl it out on our own
- if test "x$upnp_version" = "xunknown" ; then
--  AC_RUN_IFELSE(
--    [AC_LANG_PROGRAM(
--      [#include <stdlib.h>
--       #include <miniupnpc/miniupnpc.h>],
--      [#ifdef MINIUPNPC_API_VERSION
--       return EXIT_SUCCESS;
--       #else
--       return EXIT_FAILURE;
--       #endif]
--    )],
--    [upnp_version=">= 1.7"]
--  )
-+  upnp_version="2.0"
- fi
- dnl Or maybe it's miniupnp 1.6
diff --git a/package/transmission/0004-fix-utp-include.patch b/package/transmission/0004-fix-utp-include.patch
deleted file mode 100644 (file)
index db8b5ab..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-Fix compilation when using system libminiupnpc with libutp disabled
-
-If transmission uses its own copy of libminiupnpc in third-party/ then
-the configure script adds that path to CFLAGS:
-https://trac.transmissionbt.com/browser/trunk/configure.ac#L455
-
-This path is also added if transmission uses its own copy of libutp:
-https://trac.transmissionbt.com/browser/trunk/configure.ac#L349
-
-But if a system-provided libminiupnpc is used and utp-support is
-disabled using --disable-utp the result is a build error, detected by
-buildroot autobuilders:
-http://autobuild.buildroot.net/results/b79/b79e51140cb0320554a58ce59dcb33f53cd9211a/build-end.log
-
-net.c:40:24: fatal error: libutp/utp.h: No such file or directory
-
-Patch proposed by Yann E. MORIN:
-http://lists.busybox.net/pipermail/buildroot/2016-July/167896.html
-
-Patch sent upstream: https://trac.transmissionbt.com/ticket/6163
-
-Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
-
-diff -uNr transmission-2.92.org/configure.ac transmission-2.92/configure.ac
---- transmission-2.92.org/configure.ac 2016-03-06 21:23:45.336198393 +0100
-+++ transmission-2.92/configure.ac     2016-07-31 12:13:40.921660078 +0200
-@@ -358,6 +358,10 @@
-     else
-       AC_MSG_ERROR("Unable to build uTP support -- C++ compiler not found")
-     fi
-+else
-+    # For the system libminiupnpc with UTC disabled,
-+    # point to our bundled UTP headers
-+    LIBUTP_CFLAGS="-I\$(top_srcdir)/third-party/"
- fi
- AC_SUBST(LIBUTP_CFLAGS)
- AC_SUBST(LIBUTP_LIBS)
-@@ -457,7 +461,7 @@
-     LIBUPNP_LIBS_QT="\$\${TRANSMISSION_TOP}/third-party/miniupnp/libminiupnp.a"
- else
-     AC_DEFINE([SYSTEM_MINIUPNP])
--    LIBUPNP_CFLAGS="" 
-+    LIBUPNP_CFLAGS="${LIBUTP_CFLAGS}"
-     LIBUPNP_LIBS="-lminiupnpc"
-     LIBUPNP_LIBS_QT="-lminiupnpc"
- fi
diff --git a/package/transmission/0004-uClibc-ng-since-1.0.18-has-sys-quota.h-synced-with-G.patch b/package/transmission/0004-uClibc-ng-since-1.0.18-has-sys-quota.h-synced-with-G.patch
new file mode 100644 (file)
index 0000000..91a962a
--- /dev/null
@@ -0,0 +1,29 @@
+From 8682fe1bad44acc06154003ca9c9163b917bf4e3 Mon Sep 17 00:00:00 2001
+From: Waldemar Brodkorb <wbx@uclibc-ng.org>
+Date: Thu, 29 Sep 2016 19:52:49 +0200
+Subject: [PATCH] uClibc-ng since 1.0.18 has sys/quota.h synced with GNU libc
+
+Signed-off-by: Waldemar Brodkorb <wbx@uclibc-ng.org>
+
+Pull Request:
+https://github.com/transmission/transmission/pull/42
+---
+ libtransmission/platform-quota.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/libtransmission/platform-quota.c b/libtransmission/platform-quota.c
+index 58c518a..57377ef 100644
+--- a/libtransmission/platform-quota.c
++++ b/libtransmission/platform-quota.c
+@@ -284,7 +284,7 @@ getquota (const char * device)
+       spaceused = (int64_t) dq.dqb_curblocks >> 1;
+ #elif defined(__APPLE__)
+       spaceused = (int64_t) dq.dqb_curbytes;
+-#elif defined(__UCLIBC__)
++#elif defined(__UCLIBC__) && (__UCLIBC_MAJOR__ == 0 || (__UCLIBC_MAJOR__ == 1 && __UCLIBC_SUBLEVEL__ <= 17))
+       spaceused = (int64_t) btodb(dq.dqb_curblocks);
+ #elif defined(__sun) || (defined(_LINUX_QUOTA_VERSION) && _LINUX_QUOTA_VERSION < 2)
+       spaceused = (int64_t) dq.dqb_curblocks >> 1;
+-- 
+2.1.4
+
diff --git a/package/transmission/0005-libsystemd.patch b/package/transmission/0005-libsystemd.patch
new file mode 100644 (file)
index 0000000..b32aff2
--- /dev/null
@@ -0,0 +1,133 @@
+From 0862099d0bf5a3ec8b2e9d538458d612897741a2 Mon Sep 17 00:00:00 2001
+From: Mike Gelfand <mikedld@mikedld.com>
+Date: Sat, 23 Apr 2016 16:13:25 +0000
+Subject: [PATCH] #5921: Use libsystemd instead of libsystemd-daemon (original
+ patches by Sandro Tosi and Mike Gilbert)
+
+In systemd v209, released over two years ago, the various libsystemd-*
+libraries (libsystemd-journal.so, libsystemd-login.so, libsystem-daemon.so,
+libsystemd-id128.so) were merged into a single libsystemd.so library to
+reduce code duplication and avoid cyclic dependencies.
+
+Downloaded from upstream commit:
+https://github.com/transmission/transmission/commit/0862099d0bf5a3ec8b2e9d538458d612897741a2
+
+Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
+---
+ CMakeLists.txt        |  4 ++--
+ configure.ac          | 16 ++++++++--------
+ daemon/CMakeLists.txt |  8 ++++----
+ daemon/Makefile.am    |  4 ++--
+ daemon/daemon.c       |  2 +-
+ 5 files changed, 17 insertions(+), 17 deletions(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 8b324dc..356fc2f 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -398,9 +398,9 @@ endif()
+ if(WITH_SYSTEMD)
+     tr_get_required_flag(WITH_SYSTEMD SYSTEMD_IS_REQUIRED)
+-    pkg_check_modules(SYSTEMD_DAEMON ${SYSTEMD_IS_REQUIRED} libsystemd-daemon)
++    pkg_check_modules(SYSTEMD ${SYSTEMD_IS_REQUIRED} libsystemd)
+-    tr_fixup_auto_option(WITH_SYSTEMD SYSTEMD_DAEMON_FOUND SYSTEMD_IS_REQUIRED)
++    tr_fixup_auto_option(WITH_SYSTEMD SYSTEMD_FOUND SYSTEMD_IS_REQUIRED)
+ endif()
+ include_directories(${CMAKE_BINARY_DIR})
+diff --git a/configure.ac b/configure.ac
+index 92e4372..b64f2a3 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -240,15 +240,15 @@ dnl
+ dnl file monitoring for the daemon
+ # Check whether to enable systemd startup notification.
+-# This requires libsystemd-daemon.
+-AC_ARG_WITH([systemd-daemon], AS_HELP_STRING([--with-systemd-daemon],
++# This requires libsystemd.
++AC_ARG_WITH([systemd], AS_HELP_STRING([--with-systemd],
+             [Add support for systemd startup notification (default is autodetected)]),
+-            [USE_SYSTEMD_DAEMON=$withval], [USE_SYSTEMD_DAEMON=auto])
+-AS_IF([test "x$USE_SYSTEMD_DAEMON" != "xno"], [
+-    PKG_CHECK_MODULES([SYSTEMD_DAEMON], [libsystemd-daemon],
+-        [AC_DEFINE(USE_SYSTEMD_DAEMON,1,[Use systemd startup notification])],
+-        [AS_IF([test "x$USE_SYSTEMD_DAEMON" = "xyes"],
+-            [AC_MSG_ERROR([systemd startup notification support requested, but libsystemd-daemon not found.])]
++            [USE_SYSTEMD=$withval], [USE_SYSTEMD=auto])
++AS_IF([test "x$USE_SYSTEMD" != "xno"], [
++    PKG_CHECK_MODULES([SYSTEMD], [libsystemd],
++        [AC_DEFINE(USE_SYSTEMD,1,[Use systemd startup notification])],
++        [AS_IF([test "x$USE_SYSTEMD" = "xyes"],
++            [AC_MSG_ERROR([systemd startup notification support requested, but libsystemd not found.])]
+         )]
+     )
+ ])
+diff --git a/daemon/CMakeLists.txt b/daemon/CMakeLists.txt
+index e8f8b34..8ec3b95 100644
+--- a/daemon/CMakeLists.txt
++++ b/daemon/CMakeLists.txt
+@@ -1,7 +1,7 @@
+ project(trdaemon)
+ if(WITH_SYSTEMD)
+-    add_definitions(-DUSE_SYSTEMD_DAEMON)
++    add_definitions(-DUSE_SYSTEMD)
+ endif()
+ include_directories(
+@@ -37,14 +37,14 @@ add_executable(${TR_NAME}-daemon
+     ${${PROJECT_NAME}_WIN32_RC_FILE})
+ set_target_properties(${TR_NAME}-daemon PROPERTIES
+-    COMPILE_FLAGS "${SYSTEMD_DAEMON_CFLAGS}"
+-    LINK_FLAGS "${SYSTEMD_DAEMON_LDFLAGS}"
++    COMPILE_FLAGS "${SYSTEMD_CFLAGS}"
++    LINK_FLAGS "${SYSTEMD_LDFLAGS}"
+ )
+ target_link_libraries(${TR_NAME}-daemon
+     ${TR_NAME}
+     ${EVENT2_LIBRARIES}
+-    ${SYSTEMD_DAEMON_LIBRARIES}
++    ${SYSTEMD_LIBRARIES}
+ )
+ tr_win32_app_info(${PROJECT_NAME}_remote_WIN32_RC_FILE
+diff --git a/daemon/Makefile.am b/daemon/Makefile.am
+index 677f765..34d7076 100644
+--- a/daemon/Makefile.am
++++ b/daemon/Makefile.am
+@@ -3,7 +3,7 @@ AM_CPPFLAGS = -I@top_srcdir@ -DEMBEDDED
+ AM_CFLAGS = \
+     @LIBEVENT_CFLAGS@ \
+     @LIBCURL_CFLAGS@ \
+-    @SYSTEMD_DAEMON_CFLAGS@ \
++    @SYSTEMD_CFLAGS@ \
+     @ZLIB_CFLAGS@ \
+     @PTHREAD_CFLAGS@
+@@ -29,7 +29,7 @@ LDADD = \
+     @LIBCURL_LIBS@ \
+     @CRYPTO_LIBS@ \
+     @INTLLIBS@ \
+-    @SYSTEMD_DAEMON_LIBS@ \
++    @SYSTEMD_LIBS@ \
+     @ZLIB_LIBS@ \
+     @PTHREAD_LIBS@ \
+     ${LIBM}
+diff --git a/daemon/daemon.c b/daemon/daemon.c
+index 40ac5a6..62ac715 100644
+--- a/daemon/daemon.c
++++ b/daemon/daemon.c
+@@ -33,7 +33,7 @@
+ #include <libtransmission/version.h>
+ #include <libtransmission/watchdir.h>
+-#ifdef USE_SYSTEMD_DAEMON
++#ifdef USE_SYSTEMD
+  #include <systemd/sd-daemon.h>
+ #else
+  static void sd_notify (int status UNUSED, const char * str UNUSED) { }
diff --git a/package/transmission/0005-uClibc-ng-since-1.0.18-has-sys-quota.h-synced-with-G.patch b/package/transmission/0005-uClibc-ng-since-1.0.18-has-sys-quota.h-synced-with-G.patch
deleted file mode 100644 (file)
index 91a962a..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-From 8682fe1bad44acc06154003ca9c9163b917bf4e3 Mon Sep 17 00:00:00 2001
-From: Waldemar Brodkorb <wbx@uclibc-ng.org>
-Date: Thu, 29 Sep 2016 19:52:49 +0200
-Subject: [PATCH] uClibc-ng since 1.0.18 has sys/quota.h synced with GNU libc
-
-Signed-off-by: Waldemar Brodkorb <wbx@uclibc-ng.org>
-
-Pull Request:
-https://github.com/transmission/transmission/pull/42
----
- libtransmission/platform-quota.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/libtransmission/platform-quota.c b/libtransmission/platform-quota.c
-index 58c518a..57377ef 100644
---- a/libtransmission/platform-quota.c
-+++ b/libtransmission/platform-quota.c
-@@ -284,7 +284,7 @@ getquota (const char * device)
-       spaceused = (int64_t) dq.dqb_curblocks >> 1;
- #elif defined(__APPLE__)
-       spaceused = (int64_t) dq.dqb_curbytes;
--#elif defined(__UCLIBC__)
-+#elif defined(__UCLIBC__) && (__UCLIBC_MAJOR__ == 0 || (__UCLIBC_MAJOR__ == 1 && __UCLIBC_SUBLEVEL__ <= 17))
-       spaceused = (int64_t) btodb(dq.dqb_curblocks);
- #elif defined(__sun) || (defined(_LINUX_QUOTA_VERSION) && _LINUX_QUOTA_VERSION < 2)
-       spaceused = (int64_t) dq.dqb_curblocks >> 1;
--- 
-2.1.4
-
diff --git a/package/transmission/0006-libsystemd.patch b/package/transmission/0006-libsystemd.patch
deleted file mode 100644 (file)
index b32aff2..0000000
+++ /dev/null
@@ -1,133 +0,0 @@
-From 0862099d0bf5a3ec8b2e9d538458d612897741a2 Mon Sep 17 00:00:00 2001
-From: Mike Gelfand <mikedld@mikedld.com>
-Date: Sat, 23 Apr 2016 16:13:25 +0000
-Subject: [PATCH] #5921: Use libsystemd instead of libsystemd-daemon (original
- patches by Sandro Tosi and Mike Gilbert)
-
-In systemd v209, released over two years ago, the various libsystemd-*
-libraries (libsystemd-journal.so, libsystemd-login.so, libsystem-daemon.so,
-libsystemd-id128.so) were merged into a single libsystemd.so library to
-reduce code duplication and avoid cyclic dependencies.
-
-Downloaded from upstream commit:
-https://github.com/transmission/transmission/commit/0862099d0bf5a3ec8b2e9d538458d612897741a2
-
-Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
----
- CMakeLists.txt        |  4 ++--
- configure.ac          | 16 ++++++++--------
- daemon/CMakeLists.txt |  8 ++++----
- daemon/Makefile.am    |  4 ++--
- daemon/daemon.c       |  2 +-
- 5 files changed, 17 insertions(+), 17 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 8b324dc..356fc2f 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -398,9 +398,9 @@ endif()
- if(WITH_SYSTEMD)
-     tr_get_required_flag(WITH_SYSTEMD SYSTEMD_IS_REQUIRED)
--    pkg_check_modules(SYSTEMD_DAEMON ${SYSTEMD_IS_REQUIRED} libsystemd-daemon)
-+    pkg_check_modules(SYSTEMD ${SYSTEMD_IS_REQUIRED} libsystemd)
--    tr_fixup_auto_option(WITH_SYSTEMD SYSTEMD_DAEMON_FOUND SYSTEMD_IS_REQUIRED)
-+    tr_fixup_auto_option(WITH_SYSTEMD SYSTEMD_FOUND SYSTEMD_IS_REQUIRED)
- endif()
- include_directories(${CMAKE_BINARY_DIR})
-diff --git a/configure.ac b/configure.ac
-index 92e4372..b64f2a3 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -240,15 +240,15 @@ dnl
- dnl file monitoring for the daemon
- # Check whether to enable systemd startup notification.
--# This requires libsystemd-daemon.
--AC_ARG_WITH([systemd-daemon], AS_HELP_STRING([--with-systemd-daemon],
-+# This requires libsystemd.
-+AC_ARG_WITH([systemd], AS_HELP_STRING([--with-systemd],
-             [Add support for systemd startup notification (default is autodetected)]),
--            [USE_SYSTEMD_DAEMON=$withval], [USE_SYSTEMD_DAEMON=auto])
--AS_IF([test "x$USE_SYSTEMD_DAEMON" != "xno"], [
--    PKG_CHECK_MODULES([SYSTEMD_DAEMON], [libsystemd-daemon],
--        [AC_DEFINE(USE_SYSTEMD_DAEMON,1,[Use systemd startup notification])],
--        [AS_IF([test "x$USE_SYSTEMD_DAEMON" = "xyes"],
--            [AC_MSG_ERROR([systemd startup notification support requested, but libsystemd-daemon not found.])]
-+            [USE_SYSTEMD=$withval], [USE_SYSTEMD=auto])
-+AS_IF([test "x$USE_SYSTEMD" != "xno"], [
-+    PKG_CHECK_MODULES([SYSTEMD], [libsystemd],
-+        [AC_DEFINE(USE_SYSTEMD,1,[Use systemd startup notification])],
-+        [AS_IF([test "x$USE_SYSTEMD" = "xyes"],
-+            [AC_MSG_ERROR([systemd startup notification support requested, but libsystemd not found.])]
-         )]
-     )
- ])
-diff --git a/daemon/CMakeLists.txt b/daemon/CMakeLists.txt
-index e8f8b34..8ec3b95 100644
---- a/daemon/CMakeLists.txt
-+++ b/daemon/CMakeLists.txt
-@@ -1,7 +1,7 @@
- project(trdaemon)
- if(WITH_SYSTEMD)
--    add_definitions(-DUSE_SYSTEMD_DAEMON)
-+    add_definitions(-DUSE_SYSTEMD)
- endif()
- include_directories(
-@@ -37,14 +37,14 @@ add_executable(${TR_NAME}-daemon
-     ${${PROJECT_NAME}_WIN32_RC_FILE})
- set_target_properties(${TR_NAME}-daemon PROPERTIES
--    COMPILE_FLAGS "${SYSTEMD_DAEMON_CFLAGS}"
--    LINK_FLAGS "${SYSTEMD_DAEMON_LDFLAGS}"
-+    COMPILE_FLAGS "${SYSTEMD_CFLAGS}"
-+    LINK_FLAGS "${SYSTEMD_LDFLAGS}"
- )
- target_link_libraries(${TR_NAME}-daemon
-     ${TR_NAME}
-     ${EVENT2_LIBRARIES}
--    ${SYSTEMD_DAEMON_LIBRARIES}
-+    ${SYSTEMD_LIBRARIES}
- )
- tr_win32_app_info(${PROJECT_NAME}_remote_WIN32_RC_FILE
-diff --git a/daemon/Makefile.am b/daemon/Makefile.am
-index 677f765..34d7076 100644
---- a/daemon/Makefile.am
-+++ b/daemon/Makefile.am
-@@ -3,7 +3,7 @@ AM_CPPFLAGS = -I@top_srcdir@ -DEMBEDDED
- AM_CFLAGS = \
-     @LIBEVENT_CFLAGS@ \
-     @LIBCURL_CFLAGS@ \
--    @SYSTEMD_DAEMON_CFLAGS@ \
-+    @SYSTEMD_CFLAGS@ \
-     @ZLIB_CFLAGS@ \
-     @PTHREAD_CFLAGS@
-@@ -29,7 +29,7 @@ LDADD = \
-     @LIBCURL_LIBS@ \
-     @CRYPTO_LIBS@ \
-     @INTLLIBS@ \
--    @SYSTEMD_DAEMON_LIBS@ \
-+    @SYSTEMD_LIBS@ \
-     @ZLIB_LIBS@ \
-     @PTHREAD_LIBS@ \
-     ${LIBM}
-diff --git a/daemon/daemon.c b/daemon/daemon.c
-index 40ac5a6..62ac715 100644
---- a/daemon/daemon.c
-+++ b/daemon/daemon.c
-@@ -33,7 +33,7 @@
- #include <libtransmission/version.h>
- #include <libtransmission/watchdir.h>
--#ifdef USE_SYSTEMD_DAEMON
-+#ifdef USE_SYSTEMD
-  #include <systemd/sd-daemon.h>
- #else
-  static void sd_notify (int status UNUSED, const char * str UNUSED) { }
index 4c1c3f9a3a543ecee8bcbac7e423dc09e48ce093..0d2af32f4f23bb98fc0298b59d7fc24f6a61bcda 100644 (file)
@@ -1,3 +1,3 @@
 # Locally calculated
-sha256 8815920e0a4499bcdadbbe89a4115092dab42ce5199f71ff9a926cfd12b9b90b  transmission-2.93.tar.xz
+sha256 35442cc849f91f8df982c3d0d479d650c6ca19310a994eccdaa79a4af3916b7d  transmission-2.94.tar.xz
 sha256 20801783bf59e27d03ed6aab625b32a34e221ae95bf801db87827c8023398495  COPYING
index 4e78604fdb917e4ffcd3997ff8ce4d1dd2187a9e..640c78c650650b83f7e804dfd3bf81d66f2fc2eb 100644 (file)
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-TRANSMISSION_VERSION = 2.93
+TRANSMISSION_VERSION = 2.94
 TRANSMISSION_SITE = https://github.com/transmission/transmission-releases/raw/master
 TRANSMISSION_SOURCE = transmission-$(TRANSMISSION_VERSION).tar.xz
 TRANSMISSION_DEPENDENCIES = \