openttd: bump version.

This commit is contained in:
Jerome Duval
2015-05-12 22:30:15 +00:00
parent 04d688e45a
commit f72909a89d
2 changed files with 5 additions and 27 deletions

View File

@@ -7,10 +7,10 @@ features.
"
HOMEPAGE="http://www.openttd.org"
SRC_URI="http://binaries.openttd.org/releases/$portVersion/openttd-$portVersion-source.tar.xz"
CHECKSUM_SHA256="11bcbbddb9864d69f1bca11966ece9abfc28973151e6dd73ceadff89ebdf63dd"
CHECKSUM_SHA256="cb2735c3c94709430c58eb4e8820cd5d26b1a17447c34ca8792bb3432a3f7c2d"
COPYRIGHT="2005-2013 OpenTTD Team"
LICENSE="GNU GPL v2"
REVISION="2"
REVISION="1"
ARCHITECTURES="x86"
if [ $effectiveTargetArchitecture != x86_gcc2 ]; then
# x86_gcc2 is fine as primary target architecture as long as we're building

View File

@@ -1,4 +1,4 @@
From 727ce994cb9751567f132ae8339f80ae9167ab1e Mon Sep 17 00:00:00 2001
From ff18e7c0f2f5bfe6528d8bc47db0479585f13889 Mon Sep 17 00:00:00 2001
From: Adrien Destugues <pulkomandy@pulkomandy.tk>
Date: Sun, 12 Jan 2014 18:36:42 +0100
Subject: Hack to avoid hardcoded library search path.
@@ -6,10 +6,10 @@ Subject: Hack to avoid hardcoded library search path.
Makes it possible to find zlib when building as an hybrid package.
diff --git a/config.lib b/config.lib
index a8c3699..4624349 100644
index 43430fc..a1df7ce 100644
--- a/config.lib
+++ b/config.lib
@@ -2637,10 +2637,10 @@ detect_library() {
@@ -2638,10 +2638,10 @@ detect_library() {
fi
fi
if [ -z "$res" ] && [ "$os" = "HAIKU" ]; then
@@ -25,25 +25,3 @@ index a8c3699..4624349 100644
--
1.8.3.4
From e40a47458e1fd8ad9d3c1c18f4ce1bd52c54633f Mon Sep 17 00:00:00 2001
From: Adrien Destugues <pulkomandy@gmail.com>
Date: Thu, 25 Sep 2014 22:15:20 +0200
Subject: strings.h fix.
diff --git a/src/stdafx.h b/src/stdafx.h
index 8c23b64..d431b8d 100644
--- a/src/stdafx.h
+++ b/src/stdafx.h
@@ -19,6 +19,7 @@
#if defined(__BEOS__) || defined(__HAIKU__)
#include <SupportDefs.h>
#include <unistd.h>
+ #include <strings.h> // strcasecmp and strncasecmp live here.
#define _GNU_SOURCE
#define TROUBLED_INTS
#elif defined(__NDS__)
--
1.8.3.4