SDL_ttf2

Hi!

I found something in freetype2 changelog:

- The library header files inclusion scheme has been changed.  The
  old scheme looked like:

    #include <freetype/freetype.h>
    #include <freetype/ftglyph.h>
    #include <freetype/ftcache.h>
    #include <freetype/cache/ftimage.h>

  Now you should use:

    #include <ft2build.h>
    #include FT_FREETYPE_H
    #include FT_GLYPH_H
    #include FT_CACHE_H
    #include FT_CACHE_IMAGE_H


  NOTE THAT  THE OLD  INCLUSION SCHEME WILL  STILL WORK  WITH THIS
  RELEASE.  HOWEVER, WE  DO NOT GUARANTEE THAT THIS  WILL STILL BE
  TRUE IN THE NEXT ONE (A.K.A. FREETYPE 2.1).

  The  file <ft2build.h>  is used  to define  the  header filename
  macros.  The complete and  commented list of macros is available
  in the API reference under the section name "Header File Macros"
  in Chapter I.

so long
Thomas–


/\ Thomas Krennwallner
( ^ > Fingerprint: 7B58 6ED2 676F 75D8 4DD1 5A83 DC68 E62F 85F3 D58F
/ \ Phone: +43 2252 810810 18
(
/)

E. Moritz GmbH
office at e-moritz.at
http://www.e-moritz.at/

I found something in freetype2 changelog:

  Now you should use:
    #include <ft2build.h>

Yeah, I saw that too, except that the RPM archives I could find
didn’t have ft2build.h available. Rather than have the SDL_ttf
code be unable to compile, I just stuck to the old format.

Thanks!
-Sam Lantinga, Lead Programmer, Loki Software, Inc.