libs needed on linux that should be shipped with the game for compatibility (maybe all of them?):

* libSDL2.so
	Built from SDL2 2.0.4
	Built without audio-support (./configure --disable-audio ; we use OpenAL for that)
	
	NOTE: Don't link SDL statically! A dynamic lib will allow users in 2/5/10/.. years
	to replace it with a more recent version that runs on their PCs. (Same for OpenAL)

* libsndfile.so
	Used by libalure for .wav files.
	Built from libsndfile 1.0.25, without Ogg/Vorbis and FLAC support to minimize
	external dependencies (./configure --disable-external-libs).
	Used by alure to parse/decode .wav files.
	For license reasons (LGPL 2.1), this may not be statically linked with Daikatana!

* libmpg123.so
	Used by libalure for .mp3 files.
	Copied from Squeeze's libmpg123-0 1.12.1-3
	For license reasons (LGPL 2.1), this may not be statically linked with Daikatana!

* libcurl.so
	Used for downloading multiplayer stuff (the MP server tells you to).
	From libcurl 7.40.0, configured to only supports http, nothing else, with:
	./configure --enable-http --disable-ftp --disable-ldap --disable-file \
	  --disable-ldaps --disable-telnet --disable-rtsp --disable-dict --disable-tftp \
	  --disable-pop3 --disable-imap  --disable-smb --disable-smtp --disable-gopher

* libXrandr.so.2
	Used to set gamma.
	From Squeeze's libxrandr2 2:1.3.0-3
	Linked dynamically so you can replace it with a newer version if needed.

### Statically Linked Libs ###

* zlib_and_minizip.a
	The minizip parts are from zlib-1.2.3.4.dfsg/contrib/minizip, built with
	$ gcc -c -ggdb ioapi.c zip.c unzip.c
	The zlib part is from Debian Squeeze's zlib1g-dev (version 1:1.2.3.4.dfsg-3)
	Unpacked with 
	$ ar x libz.a
	then repacked with ioapi.o, zip.o and unzip.o from above with
	$ ar rcs zlib_and_minizip.a *.o

* libalure-static.a
	From alure's git HEAD (74f041fd9839625a384269a8f3e34ee94aef289b)
	+ custom patch to get mp3 file length ("Implement GetLength() for codec_mpg123")
	(I sent that patch upstream)
	Built with as few dependencies as feasible for us:
	$ cd build && cmake -DVORBIS=OFF -DFLAC=OFF -DDUMB=OFF -DMODPLUG=OFF -DFLUIDSYNTH=OFF  ..
