1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-16 19:19:09 +00:00

(svn r2882) Some fixes for MorphOS (by tokai)

- Don't track dependencies on system headers
- Add an include path
- Silence a warning regarding a bad signal prototype
- Remove executable flag from pictures
- Add proper OTTD icon
This commit is contained in:
tron
2005-08-21 10:44:57 +00:00
parent 1c686229af
commit 4a1f46a99a
5 changed files with 8 additions and 4 deletions

4
unix.c
View File

@@ -31,6 +31,10 @@
#ifdef __MORPHOS__
#include <exec/types.h>
ULONG __stack = (1024*1024)*2; // maybe not that much is needed actually ;)
// The system supplied definition of SIG_IGN does not match
#undef SIG_IGN
#define SIG_IGN (void (*)(int))1
#endif /* __MORPHOS__ */
#ifdef __AMIGA__