transmission: update to transmission-2.42

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2011-11-09 02:22:30 +01:00
parent c8a1163009
commit a9c7f69d99
4 changed files with 21 additions and 8 deletions

View File

@ -25,7 +25,7 @@
# transmission (svn 11666) fails to build with LTO support # transmission (svn 11666) fails to build with LTO support
strip_lto strip_lto
export LDFLAGS="$LDFLAGS -liconv" export LIBS="-liconv"
cd $PKG_BUILD cd $PKG_BUILD
./configure --host=$TARGET_NAME \ ./configure --host=$TARGET_NAME \
@ -35,12 +35,8 @@ cd $PKG_BUILD
--localstatedir=/var \ --localstatedir=/var \
--disable-static \ --disable-static \
--enable-shared \ --enable-shared \
--disable-utp \
--enable-largefile \ --enable-largefile \
--disable-gtk \
--disable-libnotify \
--disable-libappindicator \
--disable-libcanberra \
--disable-gconf2 \
--disable-nls \ --disable-nls \
--disable-cli \ --disable-cli \
--disable-mac \ --disable-mac \

View File

@ -1,3 +1,6 @@
1.90.1
- update to transmission-2.42
1.90.0 1.90.0
- prepare for OpenELEC-1.90 release - prepare for OpenELEC-1.90 release

View File

@ -19,8 +19,8 @@
################################################################################ ################################################################################
PKG_NAME="transmission" PKG_NAME="transmission"
PKG_VERSION="2.41" PKG_VERSION="2.42"
PKG_REV="0" PKG_REV="1"
PKG_ARCH="any" PKG_ARCH="any"
PKG_LICENSE="OSS" PKG_LICENSE="OSS"
PKG_SITE="http://www.transmissionbt.com/" PKG_SITE="http://www.transmissionbt.com/"

View File

@ -0,0 +1,14 @@
--- a/third-party/libutp/utypes.h.orig Wed Sep 28 19:46:15 2011
+++ b/third-party/libutp/utypes.h Wed Sep 28 19:47:06 2011
@@ -36,7 +36,11 @@ typedef const char * cstr;
typedef char * str;
#ifndef __cplusplus
+#ifdef HAVE_STDBOOL_H
+#include <stdbool.h>
+#else
typedef uint8 bool;
+#endif
#endif
#endif //__UTYPES_H__