mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-04 06:00:15 +00:00
(svn r3275) -Fix: [OSX] removed libpng support and error dialogs from jaguar crosscompiles to fix crash
This commit is contained in:
parent
98ef748715
commit
073aae307e
3
Makefile
3
Makefile
@ -518,6 +518,7 @@ ifdef OSX
|
|||||||
ifdef JAGUAR
|
ifdef JAGUAR
|
||||||
# ensure that changing libpathnames will not overwrite anything in the binary
|
# ensure that changing libpathnames will not overwrite anything in the binary
|
||||||
LDFLAGS += -headerpad_max_install_names
|
LDFLAGS += -headerpad_max_install_names
|
||||||
|
CFLAGS += -DJAGUAR_CROSSCOMPILE
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifndef DEDICATED
|
ifndef DEDICATED
|
||||||
@ -753,7 +754,9 @@ C_SOURCES += music/extmidi.c
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifdef OSX
|
ifdef OSX
|
||||||
|
ifndef JAGUAR
|
||||||
OBJC_SOURCES += os/macosx/macos.m
|
OBJC_SOURCES += os/macosx/macos.m
|
||||||
|
endif
|
||||||
ifndef DEDICATED
|
ifndef DEDICATED
|
||||||
C_SOURCES += music/qtmidi.c
|
C_SOURCES += music/qtmidi.c
|
||||||
endif
|
endif
|
||||||
|
@ -136,4 +136,6 @@ ifdef JAGUAR
|
|||||||
WITH_NETWORK:=
|
WITH_NETWORK:=
|
||||||
# crosscompiling for jaguar should always be static
|
# crosscompiling for jaguar should always be static
|
||||||
STATIC:=1
|
STATIC:=1
|
||||||
|
# libpng appears to break it too
|
||||||
|
WITH_PNG:=
|
||||||
endif
|
endif
|
2
stdafx.h
2
stdafx.h
@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
// MacOS X will use an NSAlert to display failed assertaions since they're lost unless running from a terminal
|
// MacOS X will use an NSAlert to display failed assertaions since they're lost unless running from a terminal
|
||||||
// strgen always runs from terminal and don't need a window for asserts
|
// strgen always runs from terminal and don't need a window for asserts
|
||||||
#if !defined(__APPLE__) || defined(STRGEN)
|
#if !defined(__APPLE__) || defined(STRGEN) || defined(JAGUAR_CROSSCOMPILE)
|
||||||
# include <assert.h>
|
# include <assert.h>
|
||||||
#else
|
#else
|
||||||
# include "os/macosx/macos.h"
|
# include "os/macosx/macos.h"
|
||||||
|
2
unix.c
2
unix.c
@ -434,7 +434,7 @@ void ShowInfo(const char *str)
|
|||||||
|
|
||||||
void ShowOSErrorBox(const char *buf)
|
void ShowOSErrorBox(const char *buf)
|
||||||
{
|
{
|
||||||
#if defined(__APPLE__)
|
#if defined(__APPLE__) && !defined(JAGUAR_CROSSCOMPILE)
|
||||||
// this creates an NSAlertPanel with the contents of 'buf'
|
// this creates an NSAlertPanel with the contents of 'buf'
|
||||||
// this is the native and nicest way to do this on OSX
|
// this is the native and nicest way to do this on OSX
|
||||||
ShowMacDialog( buf, "See readme for more info\nMost likely you are missing files from the original TTD", "Quit" );
|
ShowMacDialog( buf, "See readme for more info\nMost likely you are missing files from the original TTD", "Quit" );
|
||||||
|
Loading…
Reference in New Issue
Block a user