mirror of https://github.com/OpenTTD/OpenTTD
(svn r17767) -Fix [FS#3190]: [OSX] Don't check 64bit-ness when compiling strgen.
parent
d743975774
commit
53ce152c7e
|
@ -32,7 +32,7 @@
|
|||
#endif
|
||||
|
||||
/* Check for mismatching 'architectures' */
|
||||
#if (__LP64__ && !defined(_SQ64)) || (!__LP64__ && defined(_SQ64))
|
||||
#if !defined(STRGEN) && ((__LP64__ && !defined(_SQ64)) || (!__LP64__ && defined(_SQ64)))
|
||||
# error "Compiling 64 bits without _SQ64 set! (or vice versa)"
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue