From owner-freebsd-questions@FreeBSD.ORG Tue Jan 19 03:15:26 2010 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 653681065672 for ; Tue, 19 Jan 2010 03:15:26 +0000 (UTC) (envelope-from yuri.pankov@gmail.com) Received: from mail-fx0-f227.google.com (mail-fx0-f227.google.com [209.85.220.227]) by mx1.freebsd.org (Postfix) with ESMTP id E2D6B8FC33 for ; Tue, 19 Jan 2010 03:15:25 +0000 (UTC) Received: by fxm27 with SMTP id 27so2962357fxm.3 for ; Mon, 18 Jan 2010 19:15:24 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:received:received :x-authentication-warning:date:from:to:cc:subject:message-id :references:mime-version:content-type:content-disposition :in-reply-to:user-agent; bh=lGOSyjKv1Ls7LGiePD7BpVLT/Ym3P9ehfY+ZGazkU5A=; b=AHLclpi1c/ntOLBv7dGfnkoCP3fZm0pqjaIppghEQIXAPl4eb7ArrLgupQKTFbebJC cRwWltvmw2gyhvdgsrqY7QmkJBQ6DxSwiR+Yd0eb8sl2ClZQzobua+n5D3M2G7CLLtRC fOexUdTlNrS/RvVw3ldmb0DNdG5/MMOdq+QSk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=x-authentication-warning:date:from:to:cc:subject:message-id :references:mime-version:content-type:content-disposition :in-reply-to:user-agent; b=E/6D/Al0gmpcl0ehhv3t0GF9TM3wx8swUZOTcDRfGpKOu0wd1xaGjEq9X+KMD7L5zC eklITMTcWtFM14iS0soYtFxxP6cCEeXYuXGNsXfvrJvLRBiUO2mkHo/+asA/H9IOaQqP WiFIBxRjqtFW5KK0tGftk4zp3GwV5XwL5UKIc= Received: by 10.87.69.33 with SMTP id w33mr7488191fgk.29.1263870924862; Mon, 18 Jan 2010 19:15:24 -0800 (PST) Received: from darklight.org.ru ([213.132.76.16]) by mx.google.com with ESMTPS id l19sm11994001fgb.23.2010.01.18.19.15.23 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 18 Jan 2010 19:15:24 -0800 (PST) Received: from darklight.org.ru (yuri@darklight.org.ru [127.0.0.1]) by darklight.org.ru (8.14.3/8.14.3) with ESMTP id o0J3FLw4077021; Tue, 19 Jan 2010 06:15:22 +0300 (MSK) (envelope-from yuri.pankov@gmail.com) Received: (from yuri@localhost) by darklight.org.ru (8.14.3/8.14.3/Submit) id o0J3FLGb077020; Tue, 19 Jan 2010 06:15:21 +0300 (MSK) (envelope-from yuri.pankov@gmail.com) X-Authentication-Warning: darklight.org.ru: yuri set sender to yuri.pankov@gmail.com using -f Date: Tue, 19 Jan 2010 06:15:21 +0300 From: Yuri Pankov To: Jamie Griffin Message-ID: <20100119031521.GA2070@darklight.org.ru> References: <20100119025114.GB38099@freebsd.home.network> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20100119025114.GB38099@freebsd.home.network> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: freebsd-questions@freebsd.org Subject: Re: ffmpeg port build failing X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jan 2010 03:15:26 -0000 On Tue, Jan 19, 2010 at 02:51:15AM +0000, Jamie Griffin wrote: > Hello > > I'm trying to install gimp from ports but one of its dependencies is > failing, ffmpeg. This is the error its failing on: > > libavdevice/v412.c:41:23: erro: asm/types.h: No such file or directory > In file included from libavdevice/v412.c:42: > /usr/local/include/linux/videodev2.h:430: warning: declararion does not > declare anything > /usr/local/include/linux/videodev2.h:837: warning: declararion does not > declare anything > /usr/local/include/linux/videodev2.h:930: warning: declararion does not > declare anything > /usr/local/include/linux/videodev2.h:1478: warning: declararion does not > declare anything > /usr/local/include/linux/videodev2.h:1600: warning: declararion does not > declare anything > /usr/local/include/linux/videodev2.h:1651: warning: declararion does not > declare anything > gmake: ***[libavdevice/v412.o] Error 1 > > -------------------------------- > (I think that's all of the relevant part of the output.) > > I wondered if anyone knows what could be wrong here, and how I can get > it to build? > > Jamie Problem here is in multimedia/v4l_compat port, which was recently updated to install include/linux/videodev2.h. You could try uninstalling it or moving include/linux/videodev2.h away when you are building ffmpeg. HTH, Yuri