Requirements for building the sources:
SDL >= 1.2.0
SDL_ttf >= 1.2.2 / freetype >= 1.3.1
SDL_ttf >= 2.0.2 / freetype >= 2.0
SDL_Image >= 1.2.0 (if enabled)
OpenGL (if enabled)

You will also need the correponding development packages.


Installation for distributions:

./configure [options]
make
make install (as root)

Installation for CVS:

sh autogen.sh
./configure [options]
make
make install (as root)


Available configure options:

--disable-sdlimage :
Compile the sources without SDL_image support.
Will produce smaller code but only bmp's can be loaded.

--disable-opengl :
Disable the OpenGL support.

--enable-debug :
Will produce debug messages during execution (slow).

--with-themedir=DIR :
ParaGUI themefiles will be placed in DIR.
Default location is PREFIX/share/paragui


Hint:
Several people had troubles compiling CVS snapshots on
SuSE and Slackware.
If you get error messages running the autogen.sh script
please try the following:

Change this line in autogen.sh
aclocal
to:
aclocal -I/usr/local/share/aclocal
