23.08.2010, 22:43
(23.08.2010, 12:49)hvdwolf Wrote: The only entry I get when trying to save a route and before it "hangs" is the following entry in the system log
Code:/usr/bin/java[352]: GetDYLDEntryPointWithImage(/System/Library/Frameworks/AppKit.framework/Versions/Current/AppKit,_NSCreateAppKitServicesMenu) failed.
This means that "something" was compiled against some "AppKit.framework" using the function "_NSCreateAppKitServicesMenu". My "AppKit.framework" doesn't contain that function.
I did a:
Code:
nm /System/Library/Frameworks/AppKit.framework/Versions/Current/AppKit | grep -i NSCreateAppKitServicesI finally did a:
Code:
nm /System/Library/Frameworks/AppKit.framework/Versions/Current/AppKit | grep -i NSCreate
000000000072010e T _NSCreateFileContentsPboardType
00000000000b9bc9 T _NSCreateFilenamePboardType
U _NSCreateHashTable
U _NSCreateMapTable
U _NSCreateMapTableWithZone
0000000000b94150 D _NSCreatesSortDescriptorBindingOption
00000000002b01ef T __NSCreateATSUStyleFromAttributes
0000000000428da2 T __NSCreateAttributesFromATSUStyle
00000000002b9f5f t __NSCreateEightBitMeshedBitmap
0000000000629c21 T __NSCreateIconFamilyFromNSImage
0000000000648452 T __NSCreateImageRef
0000000000193142 T __NSCreateImageRef2
000000000064839a t __NSCreateImageRefFromJPEGData
00000000001cce52 T __NSCreateKeyBindingState
00000000003e1d3b T __NSCreateKitImageNamed
00000000006427bd t __NSCreatePatternForGradient
000000000064291a T __NSCreatePatternForMetal
0000000000642a06 T __NSCreatePatternFromContext
0000000000642e16 T __NSCreatePatternFromPDF
0000000000086cef T __NSCreateShapeForRoundedWindow
0000000000b963f1 d __NSCreateWebArchiveOnAppKitThread
000000000001c55b T __NSCreateWindow
000000000064ad3c T __NSCreateWindowWithOpaqueShape
0000000000087161 t __NSCreateWindowWithOpaqueShape2
00000000003b3bb2 t ___NSCreateCollectionWithName
00000000003b3fd6 t ___NSCreateFontMenu
00000000000f1f12 t ___NSCreateRenderingContextForAttributedString
00000000000bf0b7 t ___NSCreateRenderingContextForString
00000000002684a2 t ___NSCreateStringDrawingTextStorageSettingsIt is "simply" a library or so compiled against another library/framework having that function, but my library doesn't contain that function.
In previous prereleases it functioned correctly. Do you now if something was upgraded/downgraded in the SWT libs (dylibs) or other dylibs necessary for the jar?
