(svn r26709) -Fix (r15892 and others) [FS#6069]: [OSX] Compilation fails with some lzo2 versions if we define __LP64__ as 0 instead of checking whether it is defined (kernigh2)

This commit is contained in:
planetmaker
2014-07-30 20:19:29 +00:00
parent 8fa42362e9
commit bcb9c64ac8
6 changed files with 68 additions and 76 deletions

View File

@@ -70,7 +70,7 @@ struct OTTD_QuartzGammaTable {
- (void) setFrame:(NSRect)frame
{
/* The 64 bits libraries don't seem to know about _frame, so this hack won't work. */
#if !__LP64__
#ifndef __LP64__
_frame = frame;
#endif
}