Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 4/4] transmission: Fix build error "conflicting types for 'UTP_Write'" after version bump
@ 2014-01-02 19:28 Bernd Kuhls
  2014-01-02 19:31 ` [Buildroot] [PATCH 1/1] " Bernd Kuhls
  2014-01-02 21:21 ` [Buildroot] [PATCH 4/4] " Thomas Petazzoni
  0 siblings, 2 replies; 3+ messages in thread
From: Bernd Kuhls @ 2014-01-02 19:28 UTC (permalink / raw)
  To: buildroot

fix taken from http://www.adminsehow.com/2012/10/how-to-install-transmission-2-71-on-debian-6-0-squeeze/

compile tested on arch sh4, fixes
http://autobuild.buildroot.org/results/638/63884de929fb7339ebf44b08cb5d1ab30010666a/

should also fix powerpc
http://autobuild.buildroot.org/results/eb4/eb486228a11a9602d4bf40e771744d2b2b40508f/

Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
---
 package/transmission/transmission-fix-utypes.patch |   22 ++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 package/transmission/transmission-fix-utypes.patch

diff --git a/package/transmission/transmission-fix-utypes.patch b/package/transmission/transmission-fix-utypes.patch
new file mode 100644
index 0000000..74f3d32
--- /dev/null
+++ b/package/transmission/transmission-fix-utypes.patch
@@ -0,0 +1,22 @@
+diff -uNr transmission-2.82.org/third-party/libutp/utypes.h transmission-2.82/third-party/libutp/utypes.h
+--- transmission-2.82.org/third-party/libutp/utypes.h	2013-08-09 04:47:43.000000000 +0200
++++ transmission-2.82/third-party/libutp/utypes.h	2014-01-02 20:17:18.000000000 +0100
+@@ -35,8 +35,15 @@
+ typedef const char * cstr;
+ typedef char * str;
+ 
+-#ifndef __cplusplus
+-typedef uint8 bool;
+-#endif
++//#ifndef __cplusplus
++//typedef uint8 bool;
++//#endif
++#ifndef __cplusplus
++#ifdef HAVE_STDBOOL_H
++#include <stdbool.h>
++#else
++typedef uint8 bool;
++#endif
++#endif
+ 
+ #endif //__UTYPES_H__
-- 
1.7.9.5

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

end of thread, other threads:[~2014-01-02 21:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-02 19:28 [Buildroot] [PATCH 4/4] transmission: Fix build error "conflicting types for 'UTP_Write'" after version bump Bernd Kuhls
2014-01-02 19:31 ` [Buildroot] [PATCH 1/1] " Bernd Kuhls
2014-01-02 21:21 ` [Buildroot] [PATCH 4/4] " Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox