redox/recipes/openttd/01_redox.patch

107 lines
3.7 KiB
Diff

diff -rupNw source/config.lib source-new/config.lib
--- source/config.lib 2019-03-04 21:01:49.523053923 +0100
+++ source-new/config.lib 2019-03-04 21:00:15.870317336 +0100
@@ -1486,7 +1486,7 @@ make_cflags_and_ldflags() {
# Special CXXFlags for HOST
CXXFLAGS="$CXXFLAGS"
# Libs to compile. In fact this is just LDFLAGS
- LIBS="-lstdc++"
+ LIBS="-lstdc++ -lSDL -lorbital"
# LDFLAGS used for HOST
LDFLAGS="$LDFLAGS"
# FEATURES for HOST (lto)
diff -rupNw source/src/music/extmidi.cpp source-new/src/music/extmidi.cpp
--- source/src/music/extmidi.cpp 2019-03-04 21:01:49.899056924 +0100
+++ source-new/src/music/extmidi.cpp 2019-03-04 21:00:15.886317459 +0100
@@ -115,7 +115,11 @@ void MusicDriver_ExtMidi::DoPlay()
switch (this->pid) {
case 0: {
close(0);
+#if defined(__redox__)
+ int d = open("null:", O_RDONLY);
+#else
int d = open("/dev/null", O_RDONLY);
+#endif
if (d != -1 && dup2(d, 1) != -1 && dup2(d, 2) != -1) {
execvp(this->params[0], this->params);
}
diff -rupNw source/src/os/unix/unix.cpp source-new/src/os/unix/unix.cpp
--- source/src/os/unix/unix.cpp 2019-03-04 21:01:49.915057051 +0100
+++ source-new/src/os/unix/unix.cpp 2019-03-04 20:20:35.800062835 +0100
@@ -69,12 +69,12 @@ ULONG __stack = (1024*1024)*2; // maybe
bool FiosIsRoot(const char *path)
{
-#if !defined(__MORPHOS__) && !defined(__AMIGAOS__)
+#if !defined(__redox__)
return path[1] == '\0';
#else
- /* On MorphOS or AmigaOS paths look like: "Volume:directory/subdirectory" */
+ /* On Redox paths look like: "scheme:/directory/subdirectory" */
const char *s = strchr(path, ':');
- return s != NULL && s[1] == '\0';
+ return (s != NULL) && (strlen(s) == 2) && (s[1] == '/') && (s[2] == '\0');
#endif
}
@@ -106,10 +106,10 @@ bool FiosIsValidFile(const char *path, c
{
char filename[MAX_PATH];
int res;
-#if defined(__MORPHOS__) || defined(__AMIGAOS__)
- /* On MorphOS or AmigaOS paths look like: "Volume:directory/subdirectory" */
+#if defined(__redox__)
+ /* On Redox paths look like: "scheme:/directory/subdirectory" */
if (FiosIsRoot(path)) {
- res = seprintf(filename, lastof(filename), "%s:%s", path, ent->d_name);
+ res = seprintf(filename, lastof(filename), "%s%s", path, ent->d_name);
} else // XXX - only next line!
#else
assert(path[strlen(path) - 1] == PATHSEPCHAR);
@@ -370,7 +370,7 @@ void OSOpenBrowser(const char *url)
if (child_pid != 0) return;
const char *args[3];
- args[0] = "xdg-open";
+ args[0] = "netsurf-fb";
args[1] = url;
args[2] = NULL;
execvp(args[0], const_cast<char * const *>(args));
diff -rupNw source/src/rev.cpp.in source-new/src/rev.cpp.in
--- source/src/rev.cpp.in 2019-03-04 21:01:49.923057115 +0100
+++ source-new/src/rev.cpp.in 2019-03-04 21:00:15.922317739 +0100
@@ -57,7 +57,7 @@ const char _openttd_build_date[] = __DAT
* (compiling from sources without any version control software)
* and 2 is for modified revision.
*/
-const byte _openttd_revision_modified = !!MODIFIED!!;
+const byte _openttd_revision_modified = 2;
/**
* The NewGRF revision of OTTD:
diff -rupNw source/src/stdafx.h source-new/src/stdafx.h
--- source/src/stdafx.h 2019-03-04 21:01:49.955057370 +0100
+++ source-new/src/stdafx.h 2019-03-04 21:00:15.930317800 +0100
@@ -12,6 +12,9 @@
#ifndef STDAFX_H
#define STDAFX_H
+#include <strings.h>
+#include <alloca.h>
+
#if defined(__APPLE__)
#include "os/macosx/osx_stdafx.h"
#endif /* __APPLE__ */
diff -rupNw source/src/string.cpp source-new/src/string.cpp
--- source/src/string.cpp 2019-03-04 21:01:49.955057370 +0100
+++ source-new/src/string.cpp 2019-03-04 21:00:15.938317862 +0100
@@ -528,7 +528,7 @@ size_t Utf8TrimString(char *s, size_t ma
return length;
}
-#ifdef DEFINE_STRCASESTR
+#if 0
char *strcasestr(const char *haystack, const char *needle)
{
size_t hay_len = strlen(haystack);