From owner-freebsd-multimedia@FreeBSD.ORG Tue Feb 4 10:36:26 2014 Return-Path: Delivered-To: multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9BAA699E; Tue, 4 Feb 2014 10:36:26 +0000 (UTC) Received: from ns.ael.RU (ns.ael.ru [62.76.207.226]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DB6AB1BEC; Tue, 4 Feb 2014 10:36:25 +0000 (UTC) Received: from vm.Fluffy.Khv.RU (host.198.ipoe3.subnets.khb.ttkdv.ru [5.8.203.198] (may be forged)) by ns.ael.RU (8.14.4/8.14.4/Fluffy/5.3) with ESMTP id s14AaDLj097115; Tue, 4 Feb 2014 21:36:15 +1100 (VLAT) (envelope-from fluffy@Fluffy.Khv.RU) Received: from vm.Fluffy.Khv.RU (localhost [127.0.0.1]) by vm.Fluffy.Khv.RU (8.14.8/8.14.8/Fluffy/5.4.1) with ESMTP id s14AaCIH046057 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Tue, 4 Feb 2014 21:36:13 +1100 (VLAT) (envelope-from fluffy@Fluffy.Khv.RU) Received: (from root@localhost) by vm.Fluffy.Khv.RU (8.14.8/8.14.8/Submit) id s14AaC3u045988; Tue, 4 Feb 2014 21:36:12 +1100 (VLAT) (envelope-from fluffy) Date: Tue, 4 Feb 2014 21:36:12 +1100 (VLAT) Message-Id: <201402041036.s14AaC3u045988@vm.Fluffy.Khv.RU> To: FreeBSD-gnats-submit@freebsd.org Subject: [PATCH] multimedia/vlc: disable libfreerdp detection when it is isntalled From: Dima Panov X-send-pr-version: 3.113 X-GNATS-Notify: X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.5 (ns.ael.RU [62.76.207.226]); Tue, 04 Feb 2014 21:36:15 +1100 (VLAT) Cc: multimedia@freebsd.org X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Feb 2014 10:36:26 -0000 >Submitter-Id: current-users >Originator: Dima Panov >Organization: >Confidential: no >Synopsis: [PATCH] multimedia/vlc: disable libfreerdp detection when it is isntalled >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 11.0-1100007-CURRENT amd64 >Environment: System: FreeBSD vm.Fluffy.Khv.RU 11.0-1100007-CURRENT FreeBSD 11.0-1100007-CURRENT #0 r261402M: Mon Feb 3 12:06:52 >Description: [DESCRIBE CHANGES] Currently vlc's configure script hook up freerdp includes if detect it, but vlc-2.1 isn't compatible with fresh freerdp and build fails. Port maintainer (multimedia@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: suffix) >How-To-Repeat: >Fix: --- vlc-2.1.2_1,4.patch begins here --- diff -ruN ../vlc.orig/Makefile ./Makefile --- ../vlc.orig/Makefile 2014-02-04 21:30:57.844878370 +1100 +++ ./Makefile 2014-02-04 20:53:37.647645372 +1100 @@ -263,6 +263,7 @@ --disable-alsa \ --disable-dc1394 \ --disable-directfb \ + --disable-libfreerdp \ --disable-projectm \ --disable-telx \ --disable-tremor \ --- vlc-2.1.2_1,4.patch ends here ---