+ terminatorX will be started with root privileges even when an
+ "unprivileged" user runs the binary. terminatorX will then
+ create the engine thread with realtime priority before any files
+ are written, any parameters are evaluated or connections to the
+ X11 display are established. Right after that terminatorX will
+ drop root privileges, so the actual terminatorX code runs
+ unprivileged.
+
+ The problem is, with Linux' pthreads implementation the pthread
+ manager thread (that can not be influenced by terminatorX) will
+ still run with root privileges.
+
+ So there is a small chance that a malicious attacker could
+ utilize terminatorX to acquire root privileges if installed suid
+ root, although it should require quite some effort to create an
+ exploit for that. On the other hand realtime scheduling
+ massively improves the playback performance. So depending on who
+ can access your computer you will have to decide for yourself on
+ performance vs security. Alternatively you can of course run
+ terminatorX as root to achieve realtime scheduling.
+
+ File support options:
+ ---------------------
+
+ All of these are enabled by default. Nevertheless the configure
+ script checks for the availability of the helper application
+ and if it's not found disables support for it. Check the
+ terminatorX homepage for links to those apps if you don't have
+ them - or check your distribution first, AFAIK all bring these
+ tools nowaday.
+
+ --enable-mad
+
+ This will make terminatorX use the MPEG Audio Decoder library if
+ it's detected. This allows terminatorX to load mp3 files
+ significantly faster than with the mpg123 method. Additionally
+ terminatorX will find out about the sampling rate of an mp3 file
+ and adjust the playback speed accordingly.
+
+ --enable-vorbis
+
+ This will make terminatorX use the OGG Vobris libraries to load
+ OGG files directly. This method has the same advantages over
+ loading through ogg123 as the "mad" method has over loading
+ through mpg123.
+
+ --enable-audiofile
+
+ This enables the use of libaudiofile on loading audio files.
+ The library supports a wide range of common audio file formats
+ (eg WAV/AIFF/AU etc) therefor its use highly recommended.