summaryrefslogtreecommitdiff
path: root/src/os
diff options
context:
space:
mode:
authormichi_cc <michi_cc@openttd.org>2009-10-12 00:19:07 +0000
committermichi_cc <michi_cc@openttd.org>2009-10-12 00:19:07 +0000
commit53ce152c7edfee100a798bdd8c27f28935f2bef9 (patch)
treeb052d7124f3112f50a157e76ab75da688cf5e2c4 /src/os
parentd74397577483297b47c777e6e6c3c6bf6e7f6951 (diff)
downloadopenttd-53ce152c7edfee100a798bdd8c27f28935f2bef9.tar.xz
(svn r17767) -Fix [FS#3190]: [OSX] Don't check 64bit-ness when compiling strgen.
Diffstat (limited to 'src/os')
-rw-r--r--src/os/macosx/osx_stdafx.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/macosx/osx_stdafx.h b/src/os/macosx/osx_stdafx.h
index 254bf3851..403269dbd 100644
--- a/src/os/macosx/osx_stdafx.h
+++ b/src/os/macosx/osx_stdafx.h
@@ -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