From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:43951) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gtApc-0006tB-51 for guix-patches@gnu.org; Mon, 11 Feb 2019 07:37:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gtApa-0004HF-BZ for guix-patches@gnu.org; Mon, 11 Feb 2019 07:37:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:43959) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gtApa-0004HB-8n for guix-patches@gnu.org; Mon, 11 Feb 2019 07:37:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gtApa-0000gQ-25 for guix-patches@gnu.org; Mon, 11 Feb 2019 07:37:02 -0500 Subject: [bug#34433] [PATCH 1/1] gnu: Fix aegisub. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:43874) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gtApR-0006sf-1p for guix-patches@gnu.org; Mon, 11 Feb 2019 07:36:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gtApO-0004BA-Hj for guix-patches@gnu.org; Mon, 11 Feb 2019 07:36:52 -0500 Received: from m4s11.vlinux.de ([83.151.27.109]:60328 helo=bjoernhoefling.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gtApL-00048T-IZ for guix-patches@gnu.org; Mon, 11 Feb 2019 07:36:48 -0500 Received: from alma-ubu (pD951F5A8.dip0.t-ipconnect.de [217.81.245.168]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by bjoernhoefling.de (Postfix) with ESMTPSA id EF0B03FE17 for ; Mon, 11 Feb 2019 13:36:41 +0100 (CET) Date: Mon, 11 Feb 2019 13:36:41 +0100 From: =?UTF-8?Q?Bj=C3=B6rn_?= =?UTF-8?Q?H=C3=B6fling?= Message-ID: <20190211133641.7e448f1d@alma-ubu> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; boundary="Sig_/D+I81S=ENDD+rrya5TAxVbH"; protocol="application/pgp-signature" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 34433@debbugs.gnu.org --Sig_/D+I81S=ENDD+rrya5TAxVbH Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable * gnu/packages/video.scm (aegisub)[arguments]: Add phase to fix boost headers. --- gnu/packages/video.scm | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index c0f439ea93..fb964f412f 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -2877,7 +2877,20 @@ programmers to access a standard API to open and dec= ompress media files.") (add-before 'configure 'fix-ldflags (lambda _ (setenv "LDFLAGS" "-pthread") - #t))))) + #t)) + (add-after 'unpack 'fix-boost-headers + (lambda _ + (for-each + (lambda (f) + (substitute* f + (("#include ") + "#include "))) + (list + "src/subtitles_provider_libass.cpp" + "src/colour_button.cpp" + "src/video_provider_dummy.cpp" + "./src/video_frame.cpp")) + #t))))) (inputs `(("boost" ,boost) ("desktop-file-utils" ,desktop-file-utils) --=20 2.20.1 --Sig_/D+I81S=ENDD+rrya5TAxVbH Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iF0EARECAB0WIQQiGUP0np8nb5SZM4K/KGy2WT5f/QUCXGFsWQAKCRC/KGy2WT5f /RmzAKCzLiqrH2Z7fH/Y9y3f0qvmJWy+XwCcDFizAQN5ZmuM3b/g5iWkMzEeeMI= =biH4 -----END PGP SIGNATURE----- --Sig_/D+I81S=ENDD+rrya5TAxVbH--