Merged 1.32 into 1.4
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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
diff --git a/demo/README.txt b/demo/README.txt
index 69e26ce..ee2d495 100644
--- a/demo/README.txt
+++ b/demo/README.txt
@@ -1,10 +1,11 @@
-FTGL Version 1.3 Demo
+FTGL Version 1.4 Demo
This demo demonstrates the different rendering styles available with FTGL.
Press <spacebar> to change the font rendering style.
Press <enter> to enable edit mode.
-When compiling you will need to check the paths to the font files as they are hard coded. See #define FONT_FILE and #define FONT_INFO in FTGLDemo.c
+When compiling you will need to check the paths to the font files as they are
+hard coded. See #define FONT_FILE and #define FONT_INFO in FTGLDemo.c
Please contact me if you have any suggestions, feature requests, or problems.
diff --git a/mac/README.txt b/mac/README.txt
index f566c29..28e5eba 100644
--- a/mac/README.txt
+++ b/mac/README.txt
@@ -1,36 +1,20 @@
-FTGL Version 1.3
+FTGL Version 1.4
This project will build a static library (archive) in this directory.
-FTGL requires the Freetype2 library (version 2.0.3 or later) and OpenGL (glu version 1.2 or later). You may need to edit the paths to point to the correct place. It also uses STL containers.
+FTGL requires the Freetype2 library (version 2.0.9 or later) and OpenGL (glu
+version 1.2 or later). You may need to edit the paths to point to the correct
+place.
-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 will also need to point to Freetype and OpenGL.
+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 will also
+need to point to Freetype and OpenGL.
For instructions on using Freetype go to www.freetype.org
For instructions on using OpenGL go to www.opengl.org
Please contact me if you have any suggestions, feature requests, or problems.
-Note: Problems building freetype on MAC OSX
-
-When using make to build freetype you may come across the following error...
-
-ld: -undefined error must be used when -twolevel_namespace is in effect
-/usr/bin/libtool: internal link edit command failed
-make: *** [/freetype/objs/libfreetype.la] Error 1
-
-This is because of a change in the way 10.1 runtime enviroment handles shared libraries. See http://developer.apple.com/techpubs/macosx/ReleaseNotes/TwoLevelNamespaces.html for more details.
-
-This problem will go away when freetype is upgraded to use the latest version of libtool. In the meantime try this hack:)
-
-run make setup and make as per usual
-if/when it barfs with the above error message edit the file builds/unix/libtool
-search for the line ...
-
-allow_undefined_flag="-undefined suppress"
-
-and comment it out. Stick a # in front.
-type make again and bobs your aunty's live in lover. Then continue as per the instruction that came with freetype.
Henry Maddocks
henryj@paradise.net.nz