After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 118066 - gimpttext.c using very recent freetype feature
gimpttext.c using very recent freetype feature
Status: RESOLVED FIXED
Product: GIMP
Classification: Other
Component: General
git master
Other Linux
: Normal normal
: ---
Assigned To: GIMP Bugs
GIMP Bugs
Depends on:
Blocks:
 
 
Reported: 2003-07-22 16:21 UTC by Malcolm Tredinnick
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Malcolm Tredinnick 2003-07-22 16:21:14 UTC
Not all versions of freetype contain FT_LOAD_TARGET_MONO (it was introduced
in freetype-2.1.3). As a result, app/text/gimptext.c fails to compile
sometimes. Would it be possible to wrap this usage in a conditional (as
things like vte do)? It feels a bit unreasonable to require a freetype upgrade.
Comment 1 Sven Neumann 2003-07-22 17:12:33 UTC
Thanks for pointing this out. I forgot to copy a compatibility typedef
from Pango. Fixed in CVS:

2003-07-22  Sven Neumann  <sven@gimp.org>

  * app/text/gimptext-bitmap.c
  * app/text/gimptextlayout-render.c: define FT_LOAD_TARGET_MONO to
  FT_LOAD_MONOCHROME if it is undefined. This avoids a dependency on
  recent versions of Freetype (bug #118066).