From owner-freebsd-gnome@freebsd.org Mon Feb 13 19:15:48 2017 Return-Path: Delivered-To: freebsd-gnome@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 66D71CDD23A for ; Mon, 13 Feb 2017 19:15:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 5062A1F8F for ; Mon, 13 Feb 2017 19:15:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 4CDFBCDD238; Mon, 13 Feb 2017 19:15:48 +0000 (UTC) Delivered-To: gnome@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4C84BCDD237 for ; Mon, 13 Feb 2017 19:15:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3BEBD1F8E for ; Mon, 13 Feb 2017 19:15:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v1DJFl9I007908 for ; Mon, 13 Feb 2017 19:15:48 GMT (envelope-from bugzilla-noreply@freebsd.org) Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="UTF-8" From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: maintainer-approval requested: [Bug 211201] print/freetype2: update to 2.7, add V40 code : [Attachment 179958] Proposed patch (since 412348 revision) Date: Mon, 13 Feb 2017 19:15:47 +0000 X-Bugzilla-Type: request X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: needs-qa, patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: kwm@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? exp-run? merge-quarterly? Message-ID: In-Reply-To: References: X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Feb 2017 19:15:48 -0000 lightside has asked gnome@FreeBSD.org for maintainer-approval: Bug 211201: print/freetype2: update to 2.7, add V40 code https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D211201 Attachment 179958: Proposed patch (since 412348 revision) https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D179958&action=3Dedit --- Comment #76 from lightside --- Created attachment 179958 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D179958&action= =3Dedit 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 p= ort. Other variants of patches was obsoleted (but may be used for reference, if needed).