Ticket #1225: python_plugin.patch
| File python_plugin.patch, 3.5 kB (added by yqiang, 3 months ago) |
|---|
-
Plug-Ins/Python
old new 8 8 9 9 /* Begin PBXBuildFile section */ 10 10 0A61C80407E05F7200C326B4 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 0A61C80307E05F7200C326B4 /* Localizable.strings */; }; 11 1C0A13E708B036DA00324E25 /* Python.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C0A139C08B036DA00324E25 /* Python.framework */; };12 11 1C0A13F508B0374800324E25 /* JVPythonChatPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C0A13F408B0374800324E25 /* JVPythonChatPlugin.m */; }; 13 12 1C4FD36807C6BC25000EA451 /* JVPythonPluginLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C4FD36607C6BC25000EA451 /* JVPythonPluginLoader.m */; }; 14 13 8D5B49B4048680CD000E48DA /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7ADFEA557BF11CA2CBB /* Cocoa.framework */; }; … … 19 18 089C167FFE841241C02AAC07 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; }; 20 19 0A61C7FF07E05F6000C326B4 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; }; 21 20 1058C7ADFEA557BF11CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; }; 22 1C0A139C08B036DA00324E25 /* Python.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Python.framework; path = /System/Library/Frameworks/Python.framework; sourceTree = "<absolute>"; };21 1C0A139C08B036DA00324E25 /* Python.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; name = Python.framework; path = /System/Library/Frameworks/Python.framework; sourceTree = "<absolute>"; }; 23 22 1C0A13F308B0374800324E25 /* JVPythonChatPlugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JVPythonChatPlugin.h; sourceTree = "<group>"; }; 24 23 1C0A13F408B0374800324E25 /* JVPythonChatPlugin.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JVPythonChatPlugin.m; sourceTree = "<group>"; }; 25 24 1C0A141508B0380800324E25 /* pyobjc-api.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "pyobjc-api.h"; sourceTree = "<group>"; }; … … 38 37 buildActionMask = 2147483647; 39 38 files = ( 40 39 8D5B49B4048680CD000E48DA /* Cocoa.framework in Frameworks */, 41 1C0A13E708B036DA00324E25 /* Python.framework in Frameworks */,42 40 ); 43 41 runOnlyForDeploymentPostprocessing = 0; 44 42 }; … … 246 244 OTHER_LDFLAGS = ( 247 245 "-undefined", 248 246 dynamic_lookup, 247 "-weak_framework", 248 Python.framework, 249 249 ); 250 250 PRODUCT_NAME = "Python Support"; 251 251 WRAPPER_EXTENSION = plugin; … … 273 273 INFOPLIST_FILE = Info.plist; 274 274 LIBRARY_SEARCH_PATHS = ""; 275 275 OTHER_LDFLAGS = ( 276 "-weak_library", 277 /System/Library/Frameworks/Python.framework/Versions/2.5/Python, 278 "-weak_library", 279 /System/Library/Frameworks/Python.framework/Versions/2.3/Python, 276 280 "-undefined", 277 281 dynamic_lookup, 278 282 );
