Changeset 3349

Show
Ignore:
Timestamp:
08/28/06 00:59:07 (2 years ago)
Author:
rinoa
Message:

Build fix for Tiger.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Basic.pch

    r3344 r3349  
     1#ifndef MAC_OS_X_VERSION_10_5 
     2#define MAC_OS_X_VERSION_10_5 1050 
     3#endif 
     4 
     5#import <AvailabilityMacros.h> 
     6 
    17#ifdef __OBJC__ 
    28#import <Cocoa/Cocoa.h> 
    39#endif 
    4  
    5 #ifndef MAC_OS_X_VERSION_10_4 
    6 #define MAC_OS_X_VERSION_10_5 1050 
    7 #endif 
  • trunk/Chat Core/MVChatConnectionPrivate.h

    r3192 r3349  
    11#import "MVChatConnection.h" 
     2 
     3@interface NSThread (NSThreadLeopard) 
     4- (void) cancel; 
     5- (void) setName:(NSString *) name; 
     6@end 
     7 
     8#pragma mark - 
    29 
    310@interface MVChatConnection (MVChatConnectionPrivate) 
  • trunk/Colloquy.pch

    r3346 r3349  
     1#ifndef MAC_OS_X_VERSION_10_5 
     2#define MAC_OS_X_VERSION_10_5 1050 
     3#endif 
     4 
     5#import <AvailabilityMacros.h> 
     6 
    17#ifdef __OBJC__ 
    28 
     
    1521extern int fsetxattr(int fd, const char *name, const void *value, size_t size, u_int32_t position, int options) WEAK_IMPORT_ATTRIBUTE; 
    1622extern ssize_t fgetxattr(int fd, const char *name, void *value, size_t size, u_int32_t position, int options) WEAK_IMPORT_ATTRIBUTE; 
    17  
    18 #ifndef MAC_OS_X_VERSION_10_4 
    19 #define MAC_OS_X_VERSION_10_5 1050 
    20 #endif