mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-09 05:10:05 +02:00
seeker: patch is upstreamed.
This commit is contained in:
@@ -1,40 +0,0 @@
|
||||
From 864bcb5638b2f0f499b61909b07eef8b3edc1811 Mon Sep 17 00:00:00 2001
|
||||
From: Jerome Duval <jerome.duval@gmail.com>
|
||||
Date: Mon, 30 Jan 2017 20:47:17 +0100
|
||||
Subject: x86_64 build fix.
|
||||
|
||||
|
||||
diff --git a/src/Makefile b/src/Makefile
|
||||
index 431cd11..65c565c 100644
|
||||
--- a/src/Makefile
|
||||
+++ b/src/Makefile
|
||||
@@ -58,7 +58,7 @@ RSRCS =
|
||||
# - if your library does not follow the standard library naming scheme,
|
||||
# you need to specify the path to the library and it's name.
|
||||
# (e.g. for mylib.a, specify "mylib.a" or "path/mylib.a")
|
||||
-LIBS = be santa
|
||||
+LIBS = be santa $(STDCPPLIBS)
|
||||
|
||||
# Specify additional paths to directories following the standard libXXX.so
|
||||
# or libXXX.a naming scheme. You can specify full paths or paths relative
|
||||
diff --git a/src/SeekerWindow.cpp b/src/SeekerWindow.cpp
|
||||
index 36f6b29..63f1944 100644
|
||||
--- a/src/SeekerWindow.cpp
|
||||
+++ b/src/SeekerWindow.cpp
|
||||
@@ -1211,11 +1211,11 @@ void SeekerWindow::MessageReceived(BMessage* message)
|
||||
void SeekerWindow::RefreshTrackerAddons(void)
|
||||
{
|
||||
// empty tracker addon menu
|
||||
- BMenuItem *mitem=iTrackerAddonMenu->RemoveItem(0L);
|
||||
+ BMenuItem *mitem=iTrackerAddonMenu->RemoveItem((int32)0);
|
||||
while(mitem)
|
||||
{
|
||||
delete mitem;
|
||||
- mitem=iTrackerAddonMenu->RemoveItem(0L);
|
||||
+ mitem=iTrackerAddonMenu->RemoveItem((int32)0);
|
||||
}
|
||||
|
||||
// iterate through /boot/beos/system/addons/Tracker
|
||||
--
|
||||
2.10.2
|
||||
|
||||
@@ -5,12 +5,11 @@ currently quite useful as it is, and more features are planned for the future."
|
||||
HOMEPAGE="https://github.com/HaikuArchives/Seeker"
|
||||
COPYRIGHT="DarkWyrm"
|
||||
LICENSE="MIT"
|
||||
REVISION="5"
|
||||
gitCommit="7d56a5a9e4c4aac6b8117489b21ba59ca1fe9fbc"
|
||||
REVISION="6"
|
||||
gitCommit="d88e5821185eab416590374f2de290a3c6fdc09f"
|
||||
SOURCE_URI="https://github.com/HaikuArchives/Seeker/archive/$gitCommit.tar.gz"
|
||||
CHECKSUM_SHA256="bf6df2aba21186df751d4ef60a49623ea9400e9a7b8ca2adebb3926f8fdb2fac"
|
||||
CHECKSUM_SHA256="9d200cf9e48eecdd838ec6a2c83fc4d45ef362b73cbddfcb6afcac1ae42c27e1"
|
||||
SOURCE_DIR="Seeker-$gitCommit"
|
||||
PATCHES="seeker-$portVersion.patchset"
|
||||
|
||||
ARCHITECTURES="x86_gcc2 ?x86 x86_64"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user