All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/transmission: Fix compilation when using system libminiupnpc with libutp disabled
@ 2016-07-07  5:13 Bernd Kuhls
  2016-07-12 16:42 ` Yann E. MORIN
  0 siblings, 1 reply; 4+ messages in thread
From: Bernd Kuhls @ 2016-07-07  5:13 UTC (permalink / raw)
  To: buildroot

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

Signed-off-by: Bernd Kuhls <bernd.kuhls@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@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

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH 1/1] package/transmission: Fix compilation when using system libminiupnpc with libutp disabled
  2016-07-07  5:13 [Buildroot] [PATCH 1/1] package/transmission: Fix compilation when using system libminiupnpc with libutp disabled Bernd Kuhls
@ 2016-07-12 16:42 ` Yann E. MORIN
  2016-07-17 15:44   ` Yann E. MORIN
  0 siblings, 1 reply; 4+ messages in thread
From: Yann E. MORIN @ 2016-07-12 16:42 UTC (permalink / raw)
  To: buildroot

Bernd, All,

On 2016-07-07 07:13 +0200, Bernd Kuhls spake thusly:
> Fixes
> http://autobuild.buildroot.net/results/b79/b79e51140cb0320554a58ce59dcb33f53cd9211a/
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
> 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@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
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH 1/1] package/transmission: Fix compilation when using system libminiupnpc with libutp disabled
  2016-07-12 16:42 ` Yann E. MORIN
@ 2016-07-17 15:44   ` Yann E. MORIN
  2016-07-27 21:32     ` Thomas Petazzoni
  0 siblings, 1 reply; 4+ messages in thread
From: Yann E. MORIN @ 2016-07-17 15:44 UTC (permalink / raw)
  To: buildroot

Bernd, All,

On 2016-07-12 18:42 +0200, Yann E. MORIN spake thusly:
> On 2016-07-07 07:13 +0200, Bernd Kuhls spake thusly:
> > Fixes
> > http://autobuild.buildroot.net/results/b79/b79e51140cb0320554a58ce59dcb33f53cd9211a/
> > 
> > Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> 
> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Well, I withdraw this review of mine... :-(

See below...

[--SNIP--]
> > +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/"

So it means that headers from the internal libutp will always be used,
even if an external one is found. This is probably not very good...

Instead, I think the fix is probably something like:

    --- configure.ac(revision 14736)
    +++ configure.a c)(working copy)
    @@ -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

Can you test and respin if OK, please?  Thanks! :-)

Regards,
Yann E. MORIN.

> > + 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
> > 
> > _______________________________________________
> > buildroot mailing list
> > buildroot at busybox.net
> > http://lists.busybox.net/mailman/listinfo/buildroot
> 
> -- 
> .-----------------.--------------------.------------------.--------------------.
> |  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
> | +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
> | +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
> | http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
> '------------------------------^-------^------------------^--------------------'
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH 1/1] package/transmission: Fix compilation when using system libminiupnpc with libutp disabled
  2016-07-17 15:44   ` Yann E. MORIN
@ 2016-07-27 21:32     ` Thomas Petazzoni
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2016-07-27 21:32 UTC (permalink / raw)
  To: buildroot

Hello,

On Sun, 17 Jul 2016 17:44:36 +0200, Yann E. MORIN wrote:

> So it means that headers from the internal libutp will always be used,
> even if an external one is found. This is probably not very good...
> 
> Instead, I think the fix is probably something like:
> 
>     --- configure.ac(revision 14736)
>     +++ configure.a c)(working copy)
>     @@ -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
> 
> Can you test and respin if OK, please?  Thanks! :-)

Bernd, I'll mark your patch as Changes Requested in patchwork. Could
you respin a new version that takes into account Yann's comment?

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-07-27 21:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-07  5:13 [Buildroot] [PATCH 1/1] package/transmission: Fix compilation when using system libminiupnpc with libutp disabled Bernd Kuhls
2016-07-12 16:42 ` Yann E. MORIN
2016-07-17 15:44   ` Yann E. MORIN
2016-07-27 21:32     ` Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.