From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37583) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eoCwU-0000s1-A5 for guix-patches@gnu.org; Tue, 20 Feb 2018 13:47:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eoCwQ-0003li-7g for guix-patches@gnu.org; Tue, 20 Feb 2018 13:47:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:45291) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eoCwQ-0003lS-3x for guix-patches@gnu.org; Tue, 20 Feb 2018 13:47:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eoCwP-0001YK-Q5 for guix-patches@gnu.org; Tue, 20 Feb 2018 13:47:01 -0500 Subject: [bug#30554] [PATCH] gnu: mlt: Fix compilation against glibc 2.26. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37433) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eoCvc-0000Aa-LN for guix-patches@gnu.org; Tue, 20 Feb 2018 13:46:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eoCva-0003BJ-3f for guix-patches@gnu.org; Tue, 20 Feb 2018 13:46:12 -0500 Received: from mail-lf0-x22b.google.com ([2a00:1450:4010:c07::22b]:43897) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eoCvZ-00039r-Sb for guix-patches@gnu.org; Tue, 20 Feb 2018 13:46:10 -0500 Received: by mail-lf0-x22b.google.com with SMTP id q69so5618906lfi.10 for ; Tue, 20 Feb 2018 10:46:08 -0800 (PST) From: Oleg Pykhalov Date: Tue, 20 Feb 2018 21:45:41 +0300 Message-Id: <20180220184541.5492-1-go.wigust@gmail.com> 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: 30554@debbugs.gnu.org * gnu/packages/video.scm (mlt)[source](snippet, modules): New fields. --- gnu/packages/video.scm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 1f6a5ea33..38b762469 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -1737,7 +1737,12 @@ from sites like Twitch.tv and pipes them into a video player of choice.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "10m3ry0b2pvqx3bk34qh5dq337nn8pkc2gzfyhsj4nv9abskln47")))) + "10m3ry0b2pvqx3bk34qh5dq337nn8pkc2gzfyhsj4nv9abskln47")) + (modules '((guix build utils))) + (snippet + ;; As of glibc 2.26, no longer is. + '(substitute* "src/framework/mlt_property.h" + (("xlocale\\.h") "locale.h"))))) (build-system gnu-build-system) (arguments `(#:tests? #f ; no tests -- 2.16.1