forked from mirror/OpenTTD
(svn r2225) -Fix: split the endian-detection to target/host. Now cross-compiling
on i386-linux for MacOSX should also work for the language-files (strgen issues)
This commit is contained in:
8
stdafx.h
8
stdafx.h
@@ -116,8 +116,12 @@ int CDECL vsnprintf(char *str, size_t size, const char *format, va_list ap);
|
||||
#if defined(WIN32) || defined(__OS2__)
|
||||
#define TTD_LITTLE_ENDIAN
|
||||
#else
|
||||
// Else include endian.h, which has the endian-type, autodetected by the Makefile
|
||||
#include "endian.h"
|
||||
// Else include endian[target/host].h, which has the endian-type, autodetected by the Makefile
|
||||
#if defined(STRGEN)
|
||||
#include "endian_host.h"
|
||||
#else
|
||||
#include "endian_target.h"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(UNIX)
|
||||
|
Reference in New Issue
Block a user