mirror of
https://github.com/gnustep/libs-back.git
synced 2025-05-30 08:51:03 +00:00
Handle freetype v2.0.* correctly in the freetype version check.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@16909 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
2ebeb2d8b0
commit
1a6c3e6734
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2003-06-12 21:44 Alexander Malmberg <alexander@malmberg.org>
|
||||
|
||||
* Source/art/ftfont.m: Handle 2.0.* correctly in the freetype
|
||||
version check.
|
||||
|
||||
2003-06-12 19:22 Alexander Malmberg <alexander@malmberg.org>
|
||||
|
||||
* Source/x11/XWindowBuffer.m: Add XWindowBufferUseXShm defaults
|
||||
|
|
|
@ -59,7 +59,7 @@
|
|||
|
||||
#include FT_OUTLINE_H
|
||||
|
||||
#if (FREETYPE_MAJOR<=2) && (FREETYPE_MINOR<=1) && (FREETYPE_PATCH<=2)
|
||||
#if (FREETYPE_MAJOR==2) && ((FREETYPE_MINOR<1) || ((FREETYPE_MINOR==1) && (FREETYPE_PATCH<=2)))
|
||||
#define FT212_STUFF
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue