diff options
author | Stefan Schweizer <genstef@gentoo.org> | 2006-07-28 22:36:26 +0000 |
---|---|---|
committer | Stefan Schweizer <genstef@gentoo.org> | 2006-07-28 22:36:26 +0000 |
commit | a7825b217a07dbcbcbe5e82be696b4301473defe (patch) | |
tree | 5929b84cb000dd2a39b313d3e60ac52ed829e583 /media-sound/lastfmplayer/files | |
parent | Make app-misc/banner block bsd-games. Bug #104086 (diff) | |
download | historical-a7825b217a07dbcbcbe5e82be696b4301473defe.tar.gz historical-a7825b217a07dbcbcbe5e82be696b4301473defe.tar.bz2 historical-a7825b217a07dbcbcbe5e82be696b4301473defe.zip |
Add patch to allow compiling on amd64 again thanks to Mehmet Kemal EROL <mehmetkemal@gmx.net> and David Li <matrixhax0r@gmail.com> in bug 141729
Package-Manager: portage-2.1.1_pre3-r5
Diffstat (limited to 'media-sound/lastfmplayer/files')
-rw-r--r-- | media-sound/lastfmplayer/files/lastfmplayer-amd64.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/media-sound/lastfmplayer/files/lastfmplayer-amd64.patch b/media-sound/lastfmplayer/files/lastfmplayer-amd64.patch new file mode 100644 index 000000000000..bff8283df96a --- /dev/null +++ b/media-sound/lastfmplayer/files/lastfmplayer-amd64.patch @@ -0,0 +1,31 @@ +--- src/Makefile 2006-07-28 00:46:38.325333128 -0400 ++++ src/Makefile 2006-07-28 00:46:45.732207112 -0400 +@@ -748,7 +748,7 @@ + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/main.o main.cpp + + build/Loqqer.o: Loqqer.cpp Loqqer.h +- $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/Loqqer.o Loqqer.cpp ++ $(CXX) -c $(CXXFLAGS) -fPIC $(INCPATH) -o build/Loqqer.o Loqqer.cpp + + build/container.o: container.cpp container.h \ + playerlistener.h \ +--- src/wizardselectupdatespage.cpp 2006-07-28 14:32:19.099658720 -0400 ++++ src/wizardselectupdatespage.cpp 2006-07-28 15:29:14.400454080 -0400 +@@ -86,7 +86,7 @@ + item->setCheckState(nCheck == 1 ? Qt::Checked : Qt::Unchecked); + + // Store its pointer along with string +- item->setData(1, reinterpret_cast<unsigned int>(¤t)); ++ item->setData(1, reinterpret_cast<unsigned long long>(¤t)); + } + } + +@@ -122,7 +122,7 @@ + { + CComponentInfo* pComp = + reinterpret_cast<CComponentInfo*>( +- ui.updatesList->item(i)->data(1).toUInt()); ++ ui.updatesList->item(i)->data(1).toULongLong()); + vecChecked.push_back(pComp); + } + } |