From owner-cvs-ports@FreeBSD.ORG Sun Oct 8 22:53:19 2006 Return-Path: X-Original-To: cvs-ports@FreeBSD.org Delivered-To: cvs-ports@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 74FAD16A416; Sun, 8 Oct 2006 22:53:19 +0000 (UTC) (envelope-from vkushnir@i.kiev.ua) Received: from horse.iptelecom.net.ua (horse.iptelecom.net.ua [212.9.224.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6AF2843D46; Sun, 8 Oct 2006 22:53:18 +0000 (GMT) (envelope-from vkushnir@i.kiev.ua) Received: from h194.243.159.dialup.iptcom.net ([213.159.243.194]:62967 "EHLO kushnir1.kiev.ua" ident: "SOCKFAULT1" whoson: "vkushnir") by horse.iptelecom.net.ua with ESMTP id S1221148AbWJHWxR (ORCPT + 1 other); Mon, 9 Oct 2006 01:53:17 +0300 Received: from kushnir1.kiev.ua (kushnir1.kiev.ua [10.0.0.1]) by kushnir1.kiev.ua (8.13.8/8.13.8) with ESMTP id k98MrEk6007412; Mon, 9 Oct 2006 01:53:14 +0300 (EEST) (envelope-from vkushnir@i.kiev.ua) Date: Mon, 9 Oct 2006 01:53:14 +0300 (EEST) From: Vladimir Kushnir X-X-Sender: vkushnir@kushnir1.kiev.ua To: Kris Kennaway In-Reply-To: <20061008221425.GA9209@xor.obsecurity.org> Message-ID: <20061009014640.G1612@kushnir1.kiev.ua> References: <200610071922.k97JM2Ow047551@repoman.freebsd.org> <20061009005218.N1612@kushnir1.kiev.ua> <20061008221425.GA9209@xor.obsecurity.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-ports@FreeBSD.org, Kris Kennaway Subject: Re: cvs commit: ports/multimedia/ffmpeg-devel Makefile X-BeenThere: cvs-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Oct 2006 22:53:19 -0000 On Sun, 8 Oct 2006, Kris Kennaway wrote: > On Mon, Oct 09, 2006 at 01:04:44AM +0300, Vladimir Kushnir wrote: >> >> >> On Sat, 7 Oct 2006, Kris Kennaway wrote: >> >>> kris 2006-10-07 19:22:01 UTC >>> >>> FreeBSD ports repository >>> >>> Modified files: >>> multimedia/ffmpeg-devel Makefile >>> Log: >>> Disable bktr on !i386 >>> >>> Revision Changes Path >>> 1.99 +2 -2 ports/multimedia/ffmpeg-devel/Makefile >> >> But why?!!! It works perfectly all right here: amd64-CURRENT, >> nForce4-based MB, V-Stream XPERT TV-PVR 878 (BT878) TV-card. > > It doesn't compile; there are missing headers. > Sorry but I wonder if it compiles on i386 either: i) There's a leftover from multimedia/ffmpeg in ports Makefile - it tries to edit libavformat/grab_bsdbktr.c which does not exist in this port (there's libavformat/grab_bktr.c) ii) There's a typo in this libavformat/grab_bktr.c: there's a line # if __FreeBSD__ >= 502100 instead of # if __FreeBSD_version >= 502100 (that's why "missing headers" - it tries to #include ) With these changes everything compiles with no hitch. Regards, Vladimir