You are not logged in.
Pages: 1
...please?
I want to play!
Offline
Hello and welcome to the forums ![]()
I don't have a Mac, so I can't build/test a Mac version. This game is open source and uses cross-platforms libraries, so it shouldn't be very hard to port it to Mac. Can you do it?
Offline
Hmm, would it be hard to do? I mucked around with C programming a loooong time ago on PC, but don't really know anything about compiling on mac. In fact I don't know if compiling is the word I should use or if I've just embarrassed myself...
Offline
hmm, I see. So you should wait for a Mac release. It's not just compiling, because one must write a few simple pieces of code as well. Since this game is open source, we hope that a Mac release comes shortly. ![]()
Offline
Hi there
Just finished to compile OpenSonic on my Intel iMac running Leopard. A few things needed to be twisted before compiling could be done.
If some people could check, I've uploaded into http://metalseb.free.fr/files/opensonic.zip the 2 executables needed by Opensonic to run. This is Intel only. Download the original opensonic archive, decompress it and put these two files into the newly created directory. Run opensonic_launcher.
Remember that you must have the Allegro dynamic libraries installed.
To Alex : The Dumb and AllegPNG libs are used only in static at compile time and don't need to be installed for runtime ?
Offline
Hello shampoo and welcome to our community! ![]()
Can you provide the source code of your changes? Open Sonic has very little platform-specific code (mostly in the launcher, where there is one procedure that runs the opensonic executable). If your changes are okay, we can merge them in the SVN repository.
On both Linux and Windows, DUMB and alpng are statically linked. As of Open Sonic 0.1.1, the only thing that is dynamically linked is the Allegro library itself.
Offline
Hi Alexandre,
I've posted the same message on French Mac boards to have some beta testers feedback and all is running fine ![]()
The only thing I had to change in the sourcecode was to comment the 'include math.h' in player.h, line 23. Mac GCC goes nuts with a rather cryptic syntax error found inside kernel's math.h and I really don't know why
I also had to follow this tutorial : http://ragulan.co.uk/articles/view/25 to build Allegro from source since I want to use XCode (The Apple IDE for whoever wants to develop on MacOS) for further personal Allegro projects. I could install the runtime through MacPort (Unix-like packages installator) but using XCode this way would be a bit tedious.
If anybody interested you can download and install http://metalseb.free.fr/files/liballeg-4.2.2.dylib on /usr/local/lib (Intel only Allegro dynamic lib)
Building static binaries for Dumb and libPng libraries just went smooth.
That's all ! Again, many thanxx for this marvellous work !
Offline
Nice! ![]()
Did the opensonic_launcher program work correctly on Mac? Was it capable of launching the opensonic executable? Is it possible to install custom levels in the main game? How about CMake? Have you modified anything in CMakeLists.txt? What command did you use to create the make files ("$ cmake .") ?
I really would like to insert (in the readme.html file) detailed instructions that help people to compile Open Sonic on Mac. Ideally, no hacks would be needed*. Since I'm not a Mac user, I need help to write these instructions. Can you help us?
Thanks! ![]()
* maybe some #ifndef __MAC__ ; #include <math.h> ; #endif would solve the math.h problem?
Offline
Hi Alexandre,
Sorry for the late answer. I was not at home for the previous days ![]()
Did the opensonic_launcher program work correctly on Mac? Was it capable of launching the opensonic executable?
Yes, no problem occurs with my build.
Is it possible to install custom levels in the main game?
Yes. Tested with the 'example level' found in level editor tutorial part 1. Worked like a charm.
How about CMake? Have you modified anything in CMakeLists.txt? What command did you use to create the make files ("$ cmake .") ?
I had to install cmake thru macport. It is not part of the gcc distribution installed by Xcode. the makefiles has been created with 'cmake .', nothing else.
In opensonic_dir and opensonic_launcher_dir, I had to modify the link.txt files just a bit. Apple's gcc doesnt seem to accept to execute binaries inside a gcc command like you do with -fPIC 'allegro-config --libs'. I tried a $('allegro-config --libs') without any success. There might be a -exec option or something like this in gcc but i didn't found out. So I had to cut & paste the result of a allegro-config --libs done in another term instance to complete the -fPIC option in the link.txt files.
For example, the link.txt in opensonic_dir just look like this :
/usr/bin/gcc -O3 -DNDEBUG -Wl,-search_paths_first -headerpad_max_install_names -fPIC -L/usr/local/lib -lalleg-4.2.2 -lalleg-main -framework Cocoa CMakeFiles/opensonic.dir/src/2xsai.o CMakeFiles/opensonic.dir/src/actor.o CMakeFiles/opensonic.dir/src/audio.o CMakeFiles/opensonic.dir/src/boss.o CMakeFiles/opensonic.dir/src/brick.o CMakeFiles/opensonic.dir/src/endofdemo.o CMakeFiles/opensonic.dir/src/enemy.o CMakeFiles/opensonic.dir/src/font.o CMakeFiles/opensonic.dir/src/input.o CMakeFiles/opensonic.dir/src/intro.o CMakeFiles/opensonic.dir/src/item.o CMakeFiles/opensonic.dir/src/level.o CMakeFiles/opensonic.dir/src/main.o CMakeFiles/opensonic.dir/src/menu.o CMakeFiles/opensonic.dir/src/osspec.o CMakeFiles/opensonic.dir/src/player.o CMakeFiles/opensonic.dir/src/quest.o CMakeFiles/opensonic.dir/src/questover.o CMakeFiles/opensonic.dir/src/scene.o CMakeFiles/opensonic.dir/src/screenshot.o CMakeFiles/opensonic.dir/src/sprite.o CMakeFiles/opensonic.dir/src/util.o CMakeFiles/opensonic.dir/src/video.o CMakeFiles/opensonic.dir/src/iconlin.o -o opensonic -lm -laldmb -ldumb -lalpng
Nearly forgot the math.h issue we were discussing about before ![]()
maybe some #ifndef __MAC__ ; #include <math.h> ; #endif would solve the math.h problem?
Yes, indeed ![]()
The C_FLAGS, in flags.make, located in opensonic_dir, should look like this :
# compile C with /usr/bin/gcc
C_FLAGS = -O3 -DNDEBUG -DMACOSX
And the player.h, line 23 should be completed with :
#ifndef MACOSX
#include <math.h>
#endif
Well, that's all, as far as I can remember. I re-made all the process starting from a freshly opensonic archive to check and the build just went fine. The nicest thing to do right now would be making a dmg (self installing MacOsX archive) of opensonic binaries. Don't know right at the moment how to do this but Apple doc is quite friendly. Stay tuned ! ![]()
Again, nice work Alexandre !
Offline
What does allegro-config --libs return in your system? If you can grab the latest version from the SVN repository, I'd like to know if there are any problems with math.h. I took off the #include <math.h> from player.h (which was a header file) and placed it in some other .c files. Can you check if it's got worse or better? I want to use the #ifndef MACOSX hack only as a last resort. I want to understand why math.h did not (or does not) work.
Offline
Hey there. I found opensonic through a Mac port!!! It was made by xeno in the Games4Mac forum.
Link to the thread(in german)
http://community.games4mac.de/index.php?showtopic=20064
or download the DMG(just click on opensonic)
Offline
As of SVN revision 20, MacOS support is experimental. See here: http://opensnc.sourceforge.net/forum/vi … .php?id=53
Offline
Hey there,
Sorry for the late answer, but OpenSonic was not in my to-do list lately.
Anyway, let's start again.
What does allegro-config --libs return in your system?
-L/usr/local/lib -lalleg-4.2.2 -lalleg-main -framework Cocoa
Allegro lib is self-built from source code tarball.
If you can grab the latest version from the SVN repository, I'd like to know if there are any problems with math.h. I took off the #include <math.h> from player.h (which was a header file) and placed it in some other .c files. Can you check if it's got worse or better? I want to use the #ifndef MACOSX hack only as a last resort. I want to understand why math.h did not (or does not) work.
Well, compilation has been done like a charm this time !
So, I think the MacOs support is now on the rails !
edit : I've built up a DMG achive to test. Download it from http://metalseb.free.fr/files/opensonic.dmg.zip
Mac users, let me know if everything is okay ![]()
Last edited by shampoo (2009-04-20 11:44:25)
Offline
Great! Good to know. ![]()
Offline
Your binaries are crashing at launch.
Here is the crash report :
Process: opensonic [78769]
Path: /Volumes/opensonic/opensonic
Identifier: opensonic
Version: ??? (???)
Code Type: X86 (Native)
Parent Process: launchd [1]
Interval Since Last Report: 67422 sec
Crashes Since Last Report: 5
Per-App Interval Since Last Report: 0 sec
Per-App Crashes Since Last Report: 2
Date/Time: 2009-06-07 11:14:11.227 +0200
OS Version: Mac OS X 10.5.7 (9J61)
Report Version: 6
Anonymous UUID: A5D695A8-CF00-4F84-9844-B59E59C5A01E
Exception Type: EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000070
Crashed Thread: 1
Thread 0:
0 libSystem.B.dylib 0x93e3d46e __semwait_signal + 10
1 libSystem.B.dylib 0x93e3d236 usleep$UNIX2003 + 61
2 opensonic 0x000051b4 -[AllegroAppDelegate applicationDidFinishLaunching:] + 292
Thread 1 Crashed:
0 opensonic 0x000343a2 sprite_get_animation + 34
1 opensonic 0x00012e26 font_init + 1446
2 opensonic 0x000362e9 video_init + 121
3 opensonic 0x00025932 _mangled_main + 610
4 opensonic 0x000054c9 call_user_main + 41
5 com.apple.Foundation 0x90c219b4 __NSThread__main__ + 308
6 libSystem.B.dylib 0x93e67155 _pthread_start + 321
7 libSystem.B.dylib 0x93e67012 thread_start + 34
Thread 2:
0 libSystem.B.dylib 0x93e856fa select$DARWIN_EXTSN + 10
1 libSystem.B.dylib 0x93e67012 thread_start + 34
Thread 3:
0 libSystem.B.dylib 0x93e36286 mach_msg_trap + 10
1 libSystem.B.dylib 0x93e3da7c mach_msg + 72
2 com.apple.CoreFoundation 0x962b804e CFRunLoopRunSpecific + 1790
3 com.apple.CoreFoundation 0x962b8c78 CFRunLoopRunInMode + 88
4 com.apple.audio.CoreAudio 0x90bb65f8 HALRunLoop::OwnThread(void*) + 160
5 com.apple.audio.CoreAudio 0x90bb6480 CAPThread::Entry(CAPThread*) + 96
6 libSystem.B.dylib 0x93e67155 _pthread_start + 321
7 libSystem.B.dylib 0x93e67012 thread_start + 34
Thread 4:
0 libSystem.B.dylib 0x93e362e6 semaphore_timedwait_signal_trap + 10
1 libSystem.B.dylib 0x93e682af _pthread_cond_wait + 1244
2 libSystem.B.dylib 0x93e69b33 pthread_cond_timedwait_relative_np + 47
3 com.apple.audio.CoreAudio 0x90bc5bdf CAGuard::WaitFor(unsigned long long) + 213
4 com.apple.audio.CoreAudio 0x90bc779a CAGuard::WaitUntil(unsigned long long) + 70
5 com.apple.audio.CoreAudio 0x90bc5f3f HP_IOThread::WorkLoop() + 759
6 com.apple.audio.CoreAudio 0x90bc5c43 HP_IOThread::ThreadEntry(HP_IOThread*) + 17
7 com.apple.audio.CoreAudio 0x90bb6480 CAPThread::Entry(CAPThread*) + 96
8 libSystem.B.dylib 0x93e67155 _pthread_start + 321
9 libSystem.B.dylib 0x93e67012 thread_start + 34
Thread 1 crashed with X86 Thread State (32-bit):
eax: 0x00000000 ebx: 0x0001288b ecx: 0x00000000 edx: 0x00000000
edi: 0x00000000 esi: 0x00000000 ebp: 0xb009cb58 esp: 0xb009cb40
ss: 0x0000001f efl: 0x00010246 eip: 0x000343a2 cs: 0x00000017
ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
cr2: 0x00000070
Binary Images:
0x1000 - 0x83ff7 +opensonic ??? (???) <eea942eb23478944de49bcce7e709175> /Volumes/opensonic/opensonic
0xc7000 - 0xc9fff +net.culater.SIMBL 0.8.2 (8) /Library/InputManagers/SIMBL/SIMBL.bundle/Contents/MacOS/SIMBL
0x12c000 - 0x213fe3 +liballeg-4.2.dylib ??? (???) <6a5b1c2001fbe1127ba1b10ee6828dc8> /usr/local/lib/liballeg-4.2.dylib
0x7e0000 - 0x7e3fff com.apple.audio.AudioIPCPlugIn 1.0.6 (1.0.6) <63c9ef8da77eb8768e03991ec0e413fd> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/Contents/MacOS/AudioIPCPlugIn
0x141b8000 - 0x143bffef com.apple.RawCamera.bundle 2.0.15 (471) <557c94fbd7c15219746393464a79cf87> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x14d18000 - 0x14d1dfff com.apple.audio.AppleHDAHALPlugIn 1.6.8 (1.6.8a3) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
0x70000000 - 0x700e6ff2 com.apple.audio.units.Components 1.5.2 (1.5.2) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <100d362e03410f181a34e04e94189ae5> /usr/lib/dyld
0x90003000 - 0x90003ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x90004000 - 0x90046fef com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
0x9004c000 - 0x9006afff libresolv.9.dylib ??? (???) <a8018c42930596593ddf27f7c20fe7af> /usr/lib/libresolv.9.dylib
0x9009e000 - 0x9043bfef com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x9043c000 - 0x907fafea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x90a99000 - 0x90b23fe3 com.apple.DesktopServices 1.4.8 (1.4.8) <3065de6531ce839c7cb5b6dd70e03f4f> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x90b6f000 - 0x90b78fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x90b80000 - 0x90b98fff com.apple.openscripting 1.2.8 (???) <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x90b99000 - 0x90c16feb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <5a4e6329f8dbca5dcd70924525afd24a> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x90c17000 - 0x90e93fe7 com.apple.Foundation 6.5.8 (677.24) <aa84b0383891378c348ffa4a94853082> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x90ecb000 - 0x90ecefff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x916d4000 - 0x917b5ff7 libxml2.2.dylib ??? (???) <068cab13eb4608a7c6a5fad807ee0e33> /usr/lib/libxml2.2.dylib
0x917b6000 - 0x91807ff7 com.apple.HIServices 1.7.0 (???) <01b690d1f376e400ac873105533e39eb> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x918d2000 - 0x91f72fe3 com.apple.CoreGraphics 1.409.3 (???) <25dceb14af3455b768f56e8765ecf3ca> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x91f73000 - 0x9205bff3 com.apple.CoreData 100.2 (186.1) <8fb61e1714a4b8d587ce97605ad32547> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x9205c000 - 0x92085fff libcups.2.dylib ??? (???) <1b0435164b9dc6c773d0b1f24701e554> /usr/lib/libcups.2.dylib
0x9307a000 - 0x930a2ff7 com.apple.shortcut 1.0.1 (1.0) <131202e7766e327d02d55c0f5fc44ad7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
0x930e5000 - 0x930ebfff com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x93220000 - 0x932a7ff7 libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
0x932a8000 - 0x932a8ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x932ae000 - 0x93400ff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x93401000 - 0x93419ff7 com.apple.CoreVideo 1.6.0 (20.0) <dd60118bac9aefaf88d9ab44558f05c4> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x93437000 - 0x9343ffff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x93440000 - 0x934ccff7 com.apple.LaunchServices 290.3 (290.6) <bdba267184df88bd5b8e2116ea903872> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x9353b000 - 0x9353bffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x9353c000 - 0x93541fff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x93594000 - 0x93627ff3 com.apple.ApplicationServices.ATS 3.7 (???) <a535fc4982d3acff6530ec25c402e679> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x936cc000 - 0x936d8ff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
0x936ea000 - 0x936f1ffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
0x936f2000 - 0x937a2fff edu.mit.Kerberos 6.0.13 (6.0.13) <804bd1b3f08fb57396781f012006367c> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x939a4000 - 0x93addff7 libicucore.A.dylib ??? (???) <cac059ebdac7d9a63ee0f7a648c9f6cf> /usr/lib/libicucore.A.dylib
0x93ade000 - 0x93b1ffe7 libRIP.A.dylib ??? (???) <69bd09fcd8d8b235cee7a405290d6818> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x93b20000 - 0x93dfaff3 com.apple.CoreServices.CarbonCore 786.11 (786.13) <9e2d85d52e5e2951aa4dd53c48ccc52f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x93dfb000 - 0x93e08fe7 com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x93e09000 - 0x93e34fe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
0x93e35000 - 0x93f9cff3 libSystem.B.dylib ??? (???) <b47c8e6e45aef620730710a732bf1930> /usr/lib/libSystem.B.dylib
0x93fa0000 - 0x94052ffb libcrypto.0.9.7.dylib ??? (???) <9d714c92872a93dd127ea8556b2c8945> /usr/lib/libcrypto.0.9.7.dylib
0x94094000 - 0x94120ff7 com.apple.framework.IOKit 1.5.2 (???) <97b9f9d584f48891377f0481b9104434> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x94121000 - 0x9419bff8 com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x9419c000 - 0x941f5ff7 libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x941f6000 - 0x94200feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
0x942ad000 - 0x94307ff7 com.apple.CoreText 2.0.4 (???) <f0b6c1d4f40bd21505097f0255abfead> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
0x94308000 - 0x94313fe7 libCSync.A.dylib ??? (???) <9e3544fe087bb4dc760b7afe0850dd6c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
0x94314000 - 0x94314ff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x94315000 - 0x9432affb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x94368000 - 0x943e5fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x943e6000 - 0x9448dfeb com.apple.QD 3.11.56 (???) <a94d0f5438b730e88e5efdb233295c52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x9448e000 - 0x944bdfe3 com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x944be000 - 0x9451aff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
0x9451b000 - 0x94529ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
0x9452a000 - 0x9452efff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
0x9452f000 - 0x94837fff com.apple.HIToolbox 1.5.5 (???) <b17766e3d8800a73f534c41f624f5ac4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x94838000 - 0x9486ffff com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x94870000 - 0x9487cffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x9487d000 - 0x9487ffff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x94880000 - 0x94913fff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x94ad9000 - 0x94b13fe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x94c4a000 - 0x94c4affa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x94c4b000 - 0x95449fef com.apple.AppKit 6.5.7 (949.46) <a80f8cb62f6bdcb3bed3c8675d55881d> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x9544a000 - 0x95511ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x95512000 - 0x95513ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
0x95528000 - 0x95528fff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x9552f000 - 0x955aeff5 com.apple.SearchKit 1.2.1 (1.2.1) <3140a605db2abf56b237fa156a08b28b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x955af000 - 0x955dcfeb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x955dd000 - 0x955f3fff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x956d6000 - 0x956dafff libGIF.dylib ??? (???) <572a32e46e33be1ec041c5ef5b0341ae> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x956e5000 - 0x957b0fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x957b1000 - 0x957fafef com.apple.Metadata 10.5.2 (398.25) <e0572f20350523116f23000676122a8d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x957fb000 - 0x958dbfff libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
0x958fb000 - 0x9591affa libJPEG.dylib ??? (???) <e7eb56555109e23144924cd64aa8daec> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x9591b000 - 0x95c41fe2 com.apple.QuickTime 7.6.2 (1327) <3754e41d846b7948f96c9ec4c690b520> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
0x95da1000 - 0x95dfeffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
0x96202000 - 0x96241fef libTIFF.dylib ??? (???) <3589442575ac77746ae99ecf724f5f87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x96242000 - 0x96244ff5 libRadiance.dylib ??? (???) <8a844202fcd65662bb9ab25f08c45a62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x96245000 - 0x96378fef com.apple.CoreFoundation 6.5.6 (476.18) <2d52bab73660117571bd6486dc318f8e> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x96379000 - 0x96789fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x9678a000 - 0x9695bffb com.apple.security 5.0.5 (36371) <c13e0bb1acfdcf94be4d3ee118ef190e> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x9695c000 - 0x96977ffb libPng.dylib ??? (???) <4780e979d35aa5ec2cea22678836cea5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x96978000 - 0x969b6fff libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x96a76000 - 0x96a7dff7 libCGATS.A.dylib ??? (???) <211348279493364e9920adc86484cedd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
0x96a7e000 - 0x96a85fe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
0x96a86000 - 0x96a86ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x96a87000 - 0x96b2bfec com.apple.CFNetwork 438.10 (438.12) <fde64bbb20532794396fb21911ccaa98> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x96b2c000 - 0x96b3cffc com.apple.LangAnalysis 1.6.4 (1.6.4) <8b7831b5f74a950a56cf2d22a2d436f6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x96b3d000 - 0x96c83ff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <6a6623d3d1a7292b5c3763dcd108b55f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x96c84000 - 0x96c84ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallServer
0x96c85000 - 0x96ca9fff libxslt.1.dylib ??? (???) <0a9778d6368ae668826f446878deb99b> /usr/lib/libxslt.1.dylib
0x96cf9000 - 0x96cf9ff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x96cfa000 - 0x96d0afff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x96d30000 - 0x96deafe3 com.apple.CoreServices.OSServices 227 (227) <30cebcb68b1b571df7d77474e0c31556> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x96deb000 - 0x972bcfbe libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylibI also have this in the terminal :
2009-06-07 11:16:52.074 opensonic_launcher[78915:381b] Warning once: This application, or a library it uses, is using NSQuickDrawView, which has been deprecated. Apps should cease use of QuickDraw and move to Quartz.
Edit : this version works but with weird colors.
Last edited by Tael_ (2009-06-07 09:50:41)
Offline
Hi Tael,
Well, I did not pretend my version was an 'official' MAC release. I've tested again by downloading the DMG I made on my up-to-date 10.5.7 and it still runs okay. Several people reported the same. My version is not universal-binary. Aren't you trying to launch this X86-only version on a PPC based Mac ? I'm not very familiar with this crash report but I might guess that this is Allegro who is crashing. Which version did you install and from where ? Self-built binary ? By macport ?
Offline
Pages: 1