Browse Source

* don't link CoreImage by default for compatibility with older (Mac) OS X versions
(mantis #37040)

git-svn-id: trunk@45767 -

Jonas Maebe 5 years ago
parent
commit
f58112947b
1 changed files with 3 additions and 1 deletions
  1. 3 1
      packages/cocoaint/src/CocoaAll.pas

+ 3 - 1
packages/cocoaint/src/CocoaAll.pas

@@ -202,7 +202,9 @@ interface
 
 
 {$linkframework Cocoa}
 {$linkframework Cocoa}
 {$linkframework Foundation}
 {$linkframework Foundation}
-{$linkframework CoreImage}
+// The functionality of CoreImage is in the QuartzCore framework on older (Mac) OS X versions,
+// and it doesn't exist there, so don't link by default.
+{linkframework CoreImage}
 {$linkframework QuartzCore}
 {$linkframework QuartzCore}
 {$linkframework CoreData}
 {$linkframework CoreData}
 {$linkframework AppKit}
 {$linkframework AppKit}