Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Version 16 (modified by patrick, 19 years ago) (diff)

Get it Running

TracNav(TracNav/TOC)?

Mac OS X

Installing the Utilities

Fink and Fink Commander
On the fink website you will find the fink program, which you will need to install the libraries. Go there to the download zone and get the binary (.dmg) version.
Now you will want to download the fink commander, its a gui for the fink program that makes it much easier to work with. you can get it from the sourceforge site
GCC, the GNU Compiler
Read about installation of the MacOSX coding env or just download the XCode Tools from the apple development center where you will have to create an account if you don't have one already. Wow, the xcode package is about 300MB big!
Install Autoconf
Download the newest

  • autoconf

you can find from fink commander.
Install Subversion
Install subversion via the fink commander: choose the

  • svn-client-ssl

package.

To download the latest openAL source, you will use the cvs client also, use also fink to download it:

  • cvs

To get OpenAL running under Panther, you will also want to install the QuickTime SDK. This will install some headers, that OpenAl needs for comilation.

Installing the Libraries

Use the fink commander to install

  • sdl
  • sdl-image
  • sdl-mixer

Unfortunately SDL_ttf is not installable via Fink Commander, so download the source directly from http://www.libsdl.org/projects/SDL_ttf and compile it yourself. Before installing the SDL_ttf library make sure you have freetype2.0 or later installed on your Mac. You can get it also with finkcommander:

  • freetype2.0

To install SDL_ttf to the fink directory use the following configure command:

wraith user # ./configure --prefix=/sw/

Then compile and install by revoking. You will have to be superuser to install the libraries (admin is not enough). To enable superuser login:

wraith user # sudo passwd root

this will set the password for the root account if you havnt done this before.

wraith user # ./configure
.
wraith user # make
.
wraith user # su
.
wraith user # make install

The OpenAL library is also not available in the fink commander. You will have to download it via cvs:

cvs -d:pserver:guest@opensource.creative.com:/usr/local/cvs-repository login
(use password "guest")
cvs -d:pserver:guest@opensource.creative.com:/usr/local/cvs-repository co openal

To build it, just open the openal/macosx/al_osx.pbproj xcode project and click on the build button.

Compiling

Now switch to the linux guides and continue there with the compiling sections.