From patchwork Fri Sep 28 19:19:48 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Valentine Barshak X-Patchwork-Id: 187890 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id EE2F32C00C0 for ; Sat, 29 Sep 2012 05:19:15 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 9756F858A5; Fri, 28 Sep 2012 19:19:13 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8Xzy4fwLdlqL; Fri, 28 Sep 2012 19:19:12 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 4CDE786733; Fri, 28 Sep 2012 19:19:11 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 647ED8F74B for ; Fri, 28 Sep 2012 19:19:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 4C1B680557 for ; Fri, 28 Sep 2012 19:19:09 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id D99V6rF3jsbs for ; Fri, 28 Sep 2012 19:19:05 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-lb0-f171.google.com (mail-lb0-f171.google.com [209.85.217.171]) by whitealder.osuosl.org (Postfix) with ESMTPS id D91898064C for ; Fri, 28 Sep 2012 19:19:04 +0000 (UTC) Received: by mail-lb0-f171.google.com with SMTP id m4so5373461lbo.16 for ; Fri, 28 Sep 2012 12:19:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:subject:message-id:reply-to:mime-version:content-type :content-disposition:in-reply-to:user-agent; bh=cFmoJOkP9upfJSc31mBGIz3pYofz4VCaeBm5udTkWis=; b=bTXqbF01D1mPCXMMlgrPi0j42Wt+ihmkLO8XdRCGSZuJE90IFPGk21Pp24sSGZoWCR wCNhhiiYz3k1+HlSW4L1JY2jWDUBCMBhCK9y13YPOg6pLGajfqAtSDutRwTTE3LHjdnP m+Z1ybeoZs34SGzKdJfaLa0AJU6lI8MUGj9XlVkoIDTlvnM6UASZWqq+WVQn/Rk11SEy nZyfiQj8LFemk6CfpuF84jxmKvs0/4AzAlduxL9VBAebsuEemrBNb/JNEG76/JytgHoU 8A5uRaDFk9WPgslLvdQ3Pz4R3pBobaNSj9F3iPpJ+tX15anJKK/lK0iIuS+1TiNmszAn ALZg== Received: by 10.112.39.170 with SMTP id q10mr2867846lbk.120.1348859944418; Fri, 28 Sep 2012 12:19:04 -0700 (PDT) Received: from gmail.com ([93.100.122.208]) by mx.google.com with ESMTPS id ts2sm1642631lab.10.2012.09.28.12.19.03 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 28 Sep 2012 12:19:04 -0700 (PDT) Date: Fri, 28 Sep 2012 23:19:48 +0400 From: Valentine Barshak To: buildroot@busybox.net Message-ID: <20120928191948.GA9864@gmail.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20120928191730.GA9550@gmail.com> User-Agent: Mutt/1.5.21 (2010-09-15) Subject: [Buildroot] [PATCH 2/2] mplayer: Only enable IPv6 if BR2_INET_IPV6 is set X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Valentine Barshak List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net This fixes false positive IPv6 detection. Signed-off-by: Valentine Barshak --- package/multimedia/mplayer/mplayer.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package/multimedia/mplayer/mplayer.mk b/package/multimedia/mplayer/mplayer.mk index 788beeb..1a6b14f 100644 --- a/package/multimedia/mplayer/mplayer.mk +++ b/package/multimedia/mplayer/mplayer.mk @@ -138,6 +138,9 @@ define MPLAYER_FIXUP_IPV6_MREQ_DETECTION endef MPLAYER_POST_CONFIGURE_HOOKS += MPLAYER_FIXUP_IPV6_MREQ_DETECTION +MPLAYER_CONF_OPTS += --disable-inet6 +else +MPLAYER_CONF_OPTS += --enable-inet6 endif define MPLAYER_BUILD_CMDS