From patchwork Mon Apr 10 20:41:21 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 749212 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3w22Ch0Bqqz9s8F for ; Tue, 11 Apr 2017 06:41:35 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id DE91D306E7; Mon, 10 Apr 2017 20:41:32 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id bBayQqH6a9g2; Mon, 10 Apr 2017 20:41:31 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 54CEF306C6; Mon, 10 Apr 2017 20:41:31 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 6B06B1C0021 for ; Mon, 10 Apr 2017 20:41:29 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 669F581FE4 for ; Mon, 10 Apr 2017 20:41:29 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7l6psP1kLRBy for ; Mon, 10 Apr 2017 20:41:27 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout10.t-online.de (mailout10.t-online.de [194.25.134.21]) by hemlock.osuosl.org (Postfix) with ESMTPS id 60EBA81F7C for ; Mon, 10 Apr 2017 20:41:27 +0000 (UTC) Received: from fwd25.aul.t-online.de (fwd25.aul.t-online.de [172.20.26.130]) by mailout10.t-online.de (Postfix) with SMTP id 1395D41F97CE for ; Mon, 10 Apr 2017 22:41:25 +0200 (CEST) Received: from fli4l.lan.fli4l (EYNuweZpohJ+8yP7KfRqtDYFHkGNVjHDHfp2gADc9UYX2sK7V8hKifihGE88JUAwjJ@[79.228.18.119]) by fwd25.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1cxg7o-1nHrBQ0; Mon, 10 Apr 2017 22:41:24 +0200 Received: from mahler.lan.fli4l ([192.168.1.1]:45380 helo=kuhls.lan.fli4l) by fli4l.lan.fli4l with esmtp (Exim 4.89) (envelope-from ) id 1cxg7n-00050u-Uc for buildroot@buildroot.org; Mon, 10 Apr 2017 22:41:24 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Mon, 10 Apr 2017 22:41:21 +0200 Message-Id: <20170410204122.13382-4-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170410204122.13382-1-bernd.kuhls@t-online.de> References: <20170410204122.13382-1-bernd.kuhls@t-online.de> X-ID: EYNuweZpohJ+8yP7KfRqtDYFHkGNVjHDHfp2gADc9UYX2sK7V8hKifihGE88JUAwjJ X-TOI-MSGID: eb030244-7cb3-4737-b47c-09d642511f2e Subject: [Buildroot] [PATCH 4/5] package/mplayer: disable inline mmx X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Fixes http://autobuild.buildroot.net/results/642/6422adeef19ec547c7bc3f8ad3b0d51702015240/ Signed-off-by: Bernd Kuhls --- package/mplayer/mplayer.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/mplayer/mplayer.mk b/package/mplayer/mplayer.mk index 21facccc4..166394cac 100644 --- a/package/mplayer/mplayer.mk +++ b/package/mplayer/mplayer.mk @@ -288,6 +288,8 @@ endif define MPLAYER_DISABLE_INLINE_ASM $(SED) 's,#define HAVE_INLINE_ASM 1,#define HAVE_INLINE_ASM 0,g' \ $(@D)/config.h + $(SED) 's,#define HAVE_MMX_INLINE 1,#define HAVE_MMX_INLINE 0,g' \ + $(@D)/config.h endef ifeq ($(BR2_i386),y)