This is the second posting of the Unicode patch for POV-Ray 3.1
Author: Jon A. Cruz <joncruz@geocities.com>


Directions for applying.

This has been built with the POV-Ray 3.1a sources.
Here is how to apply these changes:


1.Patch optout.h with the optout.h.patch file.
2.Patch parse.c with the parse.c.patch file.
3.Patch parse.h with the parse.h.patch file.
4.Patch tokenize.c with the tokenize.c.patch file.
5.Patch truetype.c with the truetype.c.patch file.
6.Patch truetype.h with the truetype.h.patch file.
7.Add uniutils.c 
8.Add uniutils.h 

Then build away!!!

Use:

Very simple: Just run it on existing files, and all strings will be treated
as UTF-8. If you need some different behavior, a new globale setting has
been added to control how strings are intpreted. Simply set string_encoding
to one of the following values: UTF8, ISO8859_1, Cp1252 or MacRoman.


global_settings {
  string_encoding "UTF8" // default
//  string_encoding "ISO8859_1"
//  string_encoding "Cp1252"
//  string_encoding "MacRoman"
}

