At the time of this writing, DAPHNE will compile fully under these unix'ish
platforms:
- i386 GNU/Linux (primary platform)
- i386 FreeBSD
- Mac OSX
- Sparc Solaris (untested)

--------------------------
STEP BY STEP INSTRUCTIONS:
--------------------------

- Make sure you have g++, make, and sed installed.

- If you are a Mac OSX user, you will need to install the 'dlcompat' library,
found at http://www.opendarwin.org/projects/dlcompat/ .

- Install these libraries (with headers) if you don't already have them:
	SDL 1.2 (tested with 1.2.5, older versions may work fine)
	SDL_Mixer
	Ogg Vorbis (libogg, libvorbis, libvorbisfile)
	Zlib

- Now you are ready to compile. Daphne doesn't use the traditional
autoconf/automake nonsense.  Instead, it uses a separate Makefile for
each platform.  To compile under GNU/Linux, you
would type this (from the src directory):

	cp Makefile.vars.linux_x86 Makefile.vars
	make

(You'd do something similar if you were compiling under the other platforms.)

- You also need to compile libvldp2.so which comes with DAPHNE and has its
own set of instructions inside the vldp2 directory.  Go read those after
you're done here. :)

-----------------------------------------------------------------------------
