From 53ce152c7edfee100a798bdd8c27f28935f2bef9 Mon Sep 17 00:00:00 2001 From: michi_cc Date: Mon, 12 Oct 2009 00:19:07 +0000 Subject: (svn r17767) -Fix [FS#3190]: [OSX] Don't check 64bit-ness when compiling strgen. --- src/os/macosx/osx_stdafx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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 -- cgit v1.2.3-54-g00ecf