Changeset 2790
- Timestamp:
- 06/24/05 10:11:50 (3 years ago)
- Files:
-
- trunk/Colloquy.xcodeproj/project.pbxproj (modified) (4 diffs)
- trunk/JVNotificationController.m (modified) (3 diffs)
- trunk/Plug-Ins/F-Script Support/F-Script Support.xcodeproj/project.pbxproj (modified) (3 diffs)
- trunk/Settings/Common Settings.xcconfig (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Colloquy.xcodeproj/project.pbxproj
r2787 r2790 1985 1985 runOnlyForDeploymentPostprocessing = 0; 1986 1986 shellPath = /bin/sh; 1987 shellScript = "find $TARGET_BUILD_DIR/$WRAPPER_NAME-name 'Headers' -print0 | xargs -0 rm -rf\n";1987 shellScript = "find \"$TARGET_BUILD_DIR/$WRAPPER_NAME\" -name 'Headers' -print0 | xargs -0 rm -rf\n"; 1988 1988 }; 1989 1989 1CF038FF062F8DBB009774D8 /* ShellScript */ = { … … 2446 2446 "-lxml2", 2447 2447 "-lxslt", 2448 "-weak_framework", 2449 Growl, 2448 2450 ); 2449 2451 PRODUCT_NAME = Colloquy; … … 2462 2464 "-lxml2", 2463 2465 "-lxslt", 2466 "-weak_framework", 2467 Growl, 2464 2468 ); 2465 2469 PRODUCT_NAME = Colloquy; … … 2538 2542 "-lxml2", 2539 2543 "-lxslt", 2544 "-weak_framework", 2545 Growl, 2540 2546 ); 2541 2547 PRODUCT_NAME = Colloquy; trunk/JVNotificationController.m
r2605 r2790 5 5 #import "KABubbleWindowController.h" 6 6 #import "KABubbleWindowView.h" 7 8 #define GrowlApplicationBridge NSClassFromString( @"GrowlApplicationBridge" ) 7 9 8 10 static JVNotificationController *sharedInstance = nil; … … 28 30 if( ( self = [super init] ) ) { 29 31 _bubbles = [[NSMutableDictionary dictionary] retain]; 30 if( [GrowlApplicationBridge isGrowlInstalled] && ! [[[NSUserDefaults standardUserDefaults] objectForKey:@"DisableGrowl"] boolValue] ) {32 if( GrowlApplicationBridge && [GrowlApplicationBridge isGrowlInstalled] && ! [[[NSUserDefaults standardUserDefaults] objectForKey:@"DisableGrowl"] boolValue] ) { 31 33 [GrowlApplicationBridge setGrowlDelegate:self]; 32 34 } … … 103 105 if( ! icon ) icon = [[NSApplication sharedApplication] applicationIconImage]; 104 106 105 if( [GrowlApplicationBridge isGrowlInstalled] && ! [[[NSUserDefaults standardUserDefaults] objectForKey:@"DisableGrowl"] boolValue] ) {107 if( GrowlApplicationBridge && [GrowlApplicationBridge isGrowlInstalled] && ! [[[NSUserDefaults standardUserDefaults] objectForKey:@"DisableGrowl"] boolValue] ) { 106 108 NSString *desc = description; 107 109 if( [desc isKindOfClass:[NSAttributedString class]] ) desc = [description string]; trunk/Plug-Ins/F-Script Support/F-Script Support.xcodeproj/project.pbxproj
r2789 r2790 276 276 buildSettings = { 277 277 FRAMEWORK_SEARCH_PATHS = ( 278 /Library/Frameworks, 278 279 "$(HOME)/Library/Frameworks", 279 "$(SYSTEM_LIBRARY_DIR)/PrivateFrameworks",280 "$(TARGET_BUILD_DIR)",281 280 ); 282 281 GCC_PREFIX_HEADER = "F-Script Support.pch"; … … 300 299 buildSettings = { 301 300 FRAMEWORK_SEARCH_PATHS = ( 301 /Library/Frameworks, 302 302 "$(HOME)/Library/Frameworks", 303 "$(SYSTEM_LIBRARY_DIR)/PrivateFrameworks",304 "$(TARGET_BUILD_DIR)",305 303 ); 306 304 GCC_PREFIX_HEADER = "F-Script Support.pch"; … … 324 322 buildSettings = { 325 323 FRAMEWORK_SEARCH_PATHS = ( 324 /Library/Frameworks, 326 325 "$(HOME)/Library/Frameworks", 327 "$(SYSTEM_LIBRARY_DIR)/PrivateFrameworks",328 "$(TARGET_BUILD_DIR)",329 326 ); 330 327 GCC_PREFIX_HEADER = "F-Script Support.pch"; trunk/Settings/Common Settings.xcconfig
r2778 r2790 1 FRAMEWORK_SEARCH_PATHS = "$(HOME)/Library/Frameworks" $(SYSTEM_LIBRARY_DIR)/PrivateFrameworks "$(SRCROOT)/Frameworks" "$(TARGET_BUILD_DIR)"1 FRAMEWORK_SEARCH_PATHS = $(SYSTEM_LIBRARY_DIR)/Frameworks $(SYSTEM_LIBRARY_DIR)/PrivateFrameworks "$(HOME)/Library/Frameworks" /Library/Frameworks "$(SRCROOT)/Frameworks" "$(TARGET_BUILD_DIR)" 2 2 LIBRARY_STYLE = DYNAMIC 3 3 MACOSX_DEPLOYMENT_TARGET = 10.3
