mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-22 19:50:05 +02:00
bepodder: patch is upstreamed.
This commit is contained in:
@@ -22,13 +22,12 @@ Unzip / etc.
|
||||
HOMEPAGE="https://github.com/HaikuArchives/BePodder"
|
||||
COPYRIGHT="2006-2007 Funky Idea Software"
|
||||
LICENSE="MIT"
|
||||
REVISION="4"
|
||||
commit="fc14420f5c83cc94c43fc36237e42b1c9c67828f"
|
||||
REVISION="5"
|
||||
commit="aaa17f01214cb36a6356c830b1a49f2cbf343551"
|
||||
SOURCE_URI="$HOMEPAGE/archive/$commit.tar.gz"
|
||||
SOURCE_FILENAME="$portName-$commit.tar.gz"
|
||||
SOURCE_DIR="BePodder-$commit"
|
||||
CHECKSUM_SHA256="52a91df86f56e30e99e5b1f6398ed59a759e1651bc0abc4bcb17549647291e2d"
|
||||
PATCHES="bepodder-$portVersion.patchset"
|
||||
CHECKSUM_SHA256="f5d4c3905ecca19dd4ec87370c7d5e7e9b4931c2e6faf4dfb126e6194c77178b"
|
||||
|
||||
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
||||
|
||||
|
||||
@@ -1,57 +0,0 @@
|
||||
From 485765db31790d9a446ee325d376982ae8376163 Mon Sep 17 00:00:00 2001
|
||||
From: Jerome Duval <jerome.duval@gmail.com>
|
||||
Date: Thu, 26 Jan 2017 22:03:57 +0100
|
||||
Subject: x86_64 build fix.
|
||||
|
||||
|
||||
diff --git a/library/libclv/ColumnListView.cpp b/library/libclv/ColumnListView.cpp
|
||||
index 05bc07b..13f766a 100644
|
||||
--- a/library/libclv/ColumnListView.cpp
|
||||
+++ b/library/libclv/ColumnListView.cpp
|
||||
@@ -425,7 +425,7 @@ BRow::BRow(float height)
|
||||
BRow::~BRow()
|
||||
{
|
||||
while (true) {
|
||||
- BField *field = (BField*) fFields.RemoveItem(0L);
|
||||
+ BField *field = (BField*) fFields.RemoveItem((int32)0);
|
||||
if (field == 0)
|
||||
break;
|
||||
|
||||
@@ -717,7 +717,7 @@ BColumnListView::BColumnListView(BRect rect, const char *name, uint32 resizingMo
|
||||
BColumnListView::~BColumnListView()
|
||||
{
|
||||
while (true) {
|
||||
- BColumn *column = (BColumn*) fColumns.RemoveItem(0L);
|
||||
+ BColumn *column = (BColumn*) fColumns.RemoveItem((int32)0);
|
||||
if (column == 0)
|
||||
break;
|
||||
|
||||
diff --git a/sources-experimental/AddWindow.cpp b/sources-experimental/AddWindow.cpp
|
||||
index c1c28bb..0ac34bf 100644
|
||||
--- a/sources-experimental/AddWindow.cpp
|
||||
+++ b/sources-experimental/AddWindow.cpp
|
||||
@@ -68,7 +68,7 @@ AddWindow::AddWindow() :
|
||||
//controlliamo se c'e' qualcosa nella clipboard?
|
||||
const char *clip_text = NULL;
|
||||
bool addButton = false;
|
||||
- int32 textLen;
|
||||
+ ssize_t textLen;
|
||||
BString url;
|
||||
BMessage *clip = (BMessage *)NULL;
|
||||
if (be_clipboard->Lock() ){
|
||||
diff --git a/sources-experimental/MainWindow.cpp b/sources-experimental/MainWindow.cpp
|
||||
index a573337..5383a97 100644
|
||||
--- a/sources-experimental/MainWindow.cpp
|
||||
+++ b/sources-experimental/MainWindow.cpp
|
||||
@@ -1192,7 +1192,7 @@ MainWindow::SetSortingSubscriptions(bool value){
|
||||
|
||||
void
|
||||
MainWindow::AddDownload(DownloadListItem* down){
|
||||
- down_list->AddRow(down,(long int)0);
|
||||
+ down_list->AddRow(down,(int32)0);
|
||||
}
|
||||
|
||||
void
|
||||
--
|
||||
2.10.2
|
||||
|
||||
Reference in New Issue
Block a user