diff options
author | truelight <truelight@openttd.org> | 2007-04-21 13:20:20 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2007-04-21 13:20:20 +0000 |
commit | b12b03dcda1b99a065e319e3bb519d65970422ba (patch) | |
tree | 8bcaac697c69ed9bd7c737c36ada6cf5a689e31c | |
parent | a1ebdb47681cc42548730157bee6da1aef78d84a (diff) | |
download | openttd-b12b03dcda1b99a065e319e3bb519d65970422ba.tar.xz |
(svn r9711) -Fix: don't include one system-header-file on MorphOS as it gives silly warnings and is unneeded for OpenTTD
-rw-r--r-- | src/stdafx.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/stdafx.h b/src/stdafx.h index ba473d4c3..507c961b7 100644 --- a/src/stdafx.h +++ b/src/stdafx.h @@ -78,6 +78,9 @@ # ifdef amiga # undef amiga # endif +/* Act like we already included this file, as it somehow gives linkage problems + * (mismatch linkage of C++ and C between this include and unistd.h). */ +#define CLIB_USERGROUP_PROTOS_H #endif /* __MORPHOS__ */ #ifdef __APPLE__ |