1
Mac / Re: Game does not start at all
« on: February 19, 2012, 04:02:26 pm »
In MacOS 10.7.2 I was able to get 2.3.1 to work following the instructions in this thread but slightly differently.
I did download macports and use it's update to SDL as described. I then downloaded and manually installed SDL 1.2.15
I had to install xcode from the apple applications store. Then I used locations different from those given on the first page of this thread in the terminal to make it work:
install_name_tool -change /opt/local/Library/Frameworks/SDL_mixer.framework/Versions/A/SDL_mixer @executable_path/../Frameworks/SDL_mixer /Applications/UFOAI.app/Contents/MacOS/ufo
install_name_tool -change /opt/local/Library/Frameworks/SDL_image.framework/Versions/A/SDL_image @executable_path/../Frameworks/SDL_image /Applications/UFOAI.app/Contents/MacOS/ufo
cp -r /Library/Frameworks/SDL.framework /Applications/UFOAI.app/Contents/Frameworks/
hope this helps.
PS it's worth mentioning that if you are on 10.7.2 and your install locations are the same as mine and you followed the instructions of this thread literally before getting to my alternate location terminal commands, you will have to change the string for the SDL_image line to replace the previous change. looks like so:
install_name_tool -change @executable_path/../Frameworks/SDL_image.framework/Versions/A/SDL_image @executable_path/../Frameworks/SDL_image /Applications/UFOAI.app/Contents/MacOS/ufo
I did download macports and use it's update to SDL as described. I then downloaded and manually installed SDL 1.2.15
I had to install xcode from the apple applications store. Then I used locations different from those given on the first page of this thread in the terminal to make it work:
install_name_tool -change /opt/local/Library/Frameworks/SDL_mixer.framework/Versions/A/SDL_mixer @executable_path/../Frameworks/SDL_mixer /Applications/UFOAI.app/Contents/MacOS/ufo
install_name_tool -change /opt/local/Library/Frameworks/SDL_image.framework/Versions/A/SDL_image @executable_path/../Frameworks/SDL_image /Applications/UFOAI.app/Contents/MacOS/ufo
cp -r /Library/Frameworks/SDL.framework /Applications/UFOAI.app/Contents/Frameworks/
hope this helps.
PS it's worth mentioning that if you are on 10.7.2 and your install locations are the same as mine and you followed the instructions of this thread literally before getting to my alternate location terminal commands, you will have to change the string for the SDL_image line to replace the previous change. looks like so:
install_name_tool -change @executable_path/../Frameworks/SDL_image.framework/Versions/A/SDL_image @executable_path/../Frameworks/SDL_image /Applications/UFOAI.app/Contents/MacOS/ufo