[Bug 211201] print/freetype2: update to 2.7, add V40 code

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Mon Feb 13 19:15:49 UTC 2017


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211201

lightside <lightside at gmx.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
 Attachment #178524|0                           |1
        is obsolete|                            |
 Attachment #178524|maintainer-approval?(gnome@ |
              Flags|FreeBSD.org)                |
 Attachment #178525|maintainer-approval?(gnome@ |
              Flags|FreeBSD.org)                |
 Attachment #178525|0                           |1
        is obsolete|                            |
 Attachment #178526|maintainer-approval?(gnome@ |
              Flags|FreeBSD.org)                |
 Attachment #178526|0                           |1
        is obsolete|                            |
 Attachment #179958|                            |maintainer-approval?(gnome@
              Flags|                            |FreeBSD.org)

--- Comment #76 from lightside <lightside at gmx.com> ---
Created attachment 179958
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=179958&action=edit
Proposed patch (since 412348 revision)

Added sed patch to check defined TT_CONFIG_OPTION_SUBPIXEL_HINTING, e.g.:
-8<--
#if defined(TT_CONFIG_OPTION_SUBPIXEL_HINTING) &&
(TT_CONFIG_OPTION_SUBPIXEL_HINTING & 1)
#define  TT_SUPPORT_SUBPIXEL_HINTING_INFINALITY
#endif

#if defined(TT_CONFIG_OPTION_SUBPIXEL_HINTING) &&
(TT_CONFIG_OPTION_SUBPIXEL_HINTING & 2)
#define  TT_SUPPORT_SUBPIXEL_HINTING_MINIMAL
#endif
#endif
-->8-
instead of:
-8<--
#if TT_CONFIG_OPTION_SUBPIXEL_HINTING & 1
#define  TT_SUPPORT_SUBPIXEL_HINTING_INFINALITY
#endif

#if TT_CONFIG_OPTION_SUBPIXEL_HINTING & 2
#define  TT_SUPPORT_SUBPIXEL_HINTING_MINIMAL
#endif
-->8-
in include/freetype/config/ftoption.h file.

Compiler's warning about which was found, when building multimedia/ffmpeg port.

Other variants of patches was obsoleted (but may be used for reference, if
needed).

-- 
You are receiving this mail because:
You are on the CC list for the bug.


More information about the freebsd-gnome mailing list