[Buildroot] [PATCH 1/1] package/transmission: Fix compilation when using system libminiupnpc with libutp disabled

Bernd Kuhls bernd.kuhls at t-online.de
Thu Jul 7 05:13:06 UTC 2016


Fixes
http://autobuild.buildroot.net/results/b79/b79e51140cb0320554a58ce59dcb33f53cd9211a/

Signed-off-by: Bernd Kuhls <bernd.kuhls at t-online.de>
---
Sending the patch upstream failed until now because I could not finish
my registration on trac.transmissionbt.com for over 12h. I will continue
to try to send the patch upstream, but I need to receive a security
token from upstream to finish my registration.

 package/transmission/0004-fix-utp-include.patch | 41 +++++++++++++++++++++++++
 1 file changed, 41 insertions(+)
 create mode 100644 package/transmission/0004-fix-utp-include.patch

diff --git a/package/transmission/0004-fix-utp-include.patch b/package/transmission/0004-fix-utp-include.patch
new file mode 100644
index 0000000..e693bf9
--- /dev/null
+++ b/package/transmission/0004-fix-utp-include.patch
@@ -0,0 +1,41 @@
+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 patch 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
+
+This patch moves LIBUTP_CFLAGS outside the if-condition because
+transmission needs utp.h regardless whether support for libutp is
+enabled or not.
+
+Signed-off-by: Bernd Kuhls <berndkuhls at 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-06 22:27:25.809613723 +0200
+@@ -333,6 +333,7 @@
+     want_utp_default="no"
+ fi
+ 
++LIBUTP_CFLAGS="-I\$(top_srcdir)/third-party/"
+ AC_ARG_ENABLE([utp],
+               AS_HELP_STRING([--enable-utp],[build µTP support]),
+               [want_utp=${enableval}],
+@@ -346,7 +347,6 @@
+         AC_DEFINE([WITH_UTP],[1])
+         build_utp="system"
+     elif test "x$CXX" != "x"; then
+-        LIBUTP_CFLAGS="-I\$(top_srcdir)/third-party/"
+         LIBUTP_LIBS="\$(top_builddir)/third-party/libutp/libutp.a"
+         LIBUTP_LIBS_QT="\$\${TRANSMISSION_TOP}/third-party/libutp/libutp.a"
+         if test "x$libutp_extra_libs" != "x" ; then
-- 
2.8.1



More information about the buildroot mailing list