libfilezilla: bump version (#1231)

This commit is contained in:
miqlas
2017-03-22 15:36:26 +01:00
committed by Jérôme Duval
parent f019743418
commit e07b5812df
2 changed files with 6 additions and 32 deletions

View File

@@ -7,13 +7,12 @@ extremely efficient
- A datetime class that not only tracks timestamp but also their accuracy, \
which simplifies dealing with timestamps originating from different sources
- Simple process handling for spawning child processes with redirected I/O"
HOMEPAGE="https://lib.filezilla-project.org"
COPYRIGHT="2015-2016 Tim Kosse"
HOMEPAGE="https://lib.filezilla-project.org/"
COPYRIGHT="2015-2017 Tim Kosse"
LICENSE="GNU GPL v2"
REVISION="1"
SOURCE_URI="http://download.filezilla-project.org/libfilezilla/libfilezilla-$portVersion.tar.bz2"
CHECKSUM_SHA256="41d02b3eb54be1b1fdab89104a28a47fb654465a8d9ad00446c221a27bd9800c"
PATCHES="libfilezilla-$portVersion.patchset"
CHECKSUM_SHA256="18b2391771f330cccab2c55a66197b9098f236e616f26f86326795b900913b1a"
ARCHITECTURES="?x86_gcc2 x86 x86_64"
SECONDARY_ARCHITECTURES="x86"
@@ -54,6 +53,9 @@ BUILD_PREREQUIRES="
BUILD()
{
export CPPFLAGS="-D_BSD_SOURCE"
export LDFLAGS="-lbsd"
autoreconf -vfi
runConfigure ./configure
make $jobArgs

View File

@@ -1,28 +0,0 @@
From 9303bdc9ed9ff4099946102eca8bbf10a22dea04 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Zolt=C3=A1n=20Mizsei?= <zmizsei@extrowerk.com>
Date: Wed, 24 Aug 2016 20:59:54 +0200
Subject: [PATCH] Haiku patch
---
lib/time.cpp | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/lib/time.cpp b/lib/time.cpp
index b434303..7400405 100644
--- a/lib/time.cpp
+++ b/lib/time.cpp
@@ -5,6 +5,11 @@
#include <sys/time.h>
#endif
+#ifdef __HAIKU__
+# define timegm rpl_timegm
+time_t timegm (struct tm *__tm);
+# endif
+
#include <wchar.h>
//#include <cassert>
--
2.7.0