- Provide upstream urls for the i18n work (gettext, freetyp2 and FTGL)
- Explain not all translations are done yet in the release - List the needed patch for FTGL to get uniformly coloured glyphs
This commit is contained in:
22
README
22
README
@@ -9,7 +9,7 @@ Here are some links to external packages you may or may not need:
|
||||
|
||||
openssl: http://www.openssl.org
|
||||
python: http://www.python.org
|
||||
mxtexttools:http://www.egenix.com/files/python/mxTextTools.html (python lib)
|
||||
mxtexttools: http://www.egenix.com/files/python/mxTextTools.html (python lib)
|
||||
libjpeg: http://www.ijg.org/
|
||||
libpng: http://www.libpng.org/pub/png/
|
||||
zlib: http://www.gzip.org/zlib/
|
||||
@@ -28,6 +28,26 @@ glut: http://www.opengl.org/developers/documentation/glut.html
|
||||
If you do not have GL you will also need mesa:
|
||||
mesa: http://www.mesa3d.org
|
||||
|
||||
For the translations to other languages than English you will need gettext,
|
||||
freetype2 and FTGL. Note that these translations are not complete yet, some
|
||||
time after the release of 2.27 they will be made available for download also.
|
||||
We welcome feedback about the translated user interface, and even contributions
|
||||
to the translation effort :)
|
||||
|
||||
gettext: http://www.gnu.org/software/gettext/
|
||||
freetype2: http://www.freetype.org/
|
||||
FTGL: http://homepages.paradise.net.nz/henryj/code/#FTGL
|
||||
|
||||
FTGL needs a small patch to get glyphs with the right colour in the cache
|
||||
--- FTGL/src/FTPixmapGlyph.cpp.orig 2003-05-10 16:07:45.000000000 +0200
|
||||
+++ FTGL/src/FTPixmapGlyph.cpp 2003-05-10 16:09:19.000000000 +0200
|
||||
@@ -33,3 +33,3 @@
|
||||
// Get the current glColor.
|
||||
float ftglColour[4];
|
||||
- glGetFloatv( GL_CURRENT_COLOR, ftglColour);
|
||||
+ ftglColour[0] = ftglColour[1] = ftglColour[2] = ftglColour[3] = 1.0;
|
||||
|
||||
|
||||
*********************************************************************
|
||||
*********************************************************************
|
||||
We are in the process of moving things over to automake/autoconf
|
||||
|
Reference in New Issue
Block a user