summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openedhand.com>2007-08-01 20:40:19 +0000
committerMarcin Juszkiewicz <hrw@openedhand.com>2007-08-01 20:40:19 +0000
commit2256a51e772297546274aa964f630f30ddecd50e (patch)
treec378ca054705c9a272d6e7c0cc39eadc959b3747 /meta
parent236595c8512a3621fdcc7ae04fc7ea9eae75f171 (diff)
downloadpoky-2256a51e772297546274aa964f630f30ddecd50e.tar.gz
libmusicbrainz: fix type of len variable to get it built
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2303 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta')
-rw-r--r--meta/packages/musicbrainz/files/change-len-type.patch11
-rw-r--r--meta/packages/musicbrainz/libmusicbrainz_2.1.2.bb4
2 files changed, 14 insertions, 1 deletions
diff --git a/meta/packages/musicbrainz/files/change-len-type.patch b/meta/packages/musicbrainz/files/change-len-type.patch
new file mode 100644
index 0000000000..b2e6b083b8
--- /dev/null
+++ b/meta/packages/musicbrainz/files/change-len-type.patch
@@ -0,0 +1,11 @@
1--- libmusicbrainz-2.1.2.orig/lib/comsocket.cpp
2+++ libmusicbrainz-2.1.2/lib/comsocket.cpp
3@@ -356,7 +356,7 @@
4 &wset))
5 {
6 int error = 0;
7- mb_socklen_t len = sizeof(error);
8+ int len = sizeof(error);
9
10 if (getsockopt(m_nSocket, SOL_SOCKET, SO_ERROR, &error,
11 &len) < 0)
diff --git a/meta/packages/musicbrainz/libmusicbrainz_2.1.2.bb b/meta/packages/musicbrainz/libmusicbrainz_2.1.2.bb
index 43632d8670..f26cd34ade 100644
--- a/meta/packages/musicbrainz/libmusicbrainz_2.1.2.bb
+++ b/meta/packages/musicbrainz/libmusicbrainz_2.1.2.bb
@@ -2,8 +2,10 @@ DESCRIPTION = "The MusicBrainz client is a library which can be built into other
2HOMEPAGE = "http://musicbrainz.org" 2HOMEPAGE = "http://musicbrainz.org"
3LICENSE = "LGPL" 3LICENSE = "LGPL"
4DEPENDS = "expat" 4DEPENDS = "expat"
5PR = "r1"
5 6
6SRC_URI = "http://ftp.musicbrainz.org/pub/musicbrainz/libmusicbrainz-2.1.2.tar.gz" 7SRC_URI = "http://ftp.musicbrainz.org/pub/musicbrainz/libmusicbrainz-2.1.2.tar.gz \
8 file://change-len-type.patch;patch=1"
7 9
8inherit autotools pkgconfig 10inherit autotools pkgconfig
9 11