Update configuring documentation
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
diff --git a/unix/README.txt b/unix/README.txt
index 71874e0..686b03d 100644
--- a/unix/README.txt
+++ b/unix/README.txt
@@ -1,4 +1,4 @@
-FTGL Version 1.4
+FTGL Version 2.0.5
This project will build a static library (archive) in the src directory.
@@ -6,9 +6,24 @@ The Makefiles need GNU Make in order to work properly.
FTGL requires the Freetype2 library (version 2.0.9 or later) and OpenGL
(glu version 1.2 or later). You can pass flags to the configure script
-to point it to the place where these libraries are installed.
-Optionally, if doxygen is installed, documentation in HTML format will
-be generated in the docs subdirectory.
+to point it to the place where these libraries are installed, like this:
+
+ $ ./configure --with-gl-inc=/usr/local/include \
+ --with-gl-lib=/usr/local/lib
+
+Should you need anything more complicated that that, try with:
+
+ $ ./configure --with-gl-inc=/usr/local/include \
+ --with-gl-lib="-L/weird/location -lGL -lX11 -lXi -lXm"
+
+The same thing goes for the GLUT library. This is optional and is only
+needed to build the demo program. Should any of this fail, please send
+an email to mmagallo@debian.org (please include FTGL somewhere in the
+subject line) and include a copy of the config.log file that was left
+behind.
+
+If doxygen is installed, documentation in HTML format will be generated
+in the docs subdirectory.
To use FTGL in your own projects you will need to link against this lib
and include the FTGL headers located in the src directory. Your project