From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 12 12:44:08 2009 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C31D3106566C for ; Wed, 12 Aug 2009 12:44:08 +0000 (UTC) (envelope-from villa.alberto@gmail.com) Received: from mail-bw0-f206.google.com (mail-bw0-f206.google.com [209.85.218.206]) by mx1.freebsd.org (Postfix) with ESMTP id 440918FC4A for ; Wed, 12 Aug 2009 12:44:07 +0000 (UTC) Received: by bwz2 with SMTP id 2so3008408bwz.43 for ; Wed, 12 Aug 2009 05:44:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:subject:date :user-agent:cc:references:in-reply-to:mime-version:content-type :message-id; bh=6mpjYQr/yIJy9r0TdIn+ARuQ7WW4zjWdNW+HDKSXcsY=; b=pb7F+3eTq+m1HlkyI1vpSsJnYQmR9JoKOAQk6k/DUeNGIXMGthr4I6e97dgm289Sd4 Y3FZNPrcx4VKr53KeGOH8la1IF0yPue8Bz7DTJdSwRuJcZvExnhEj3o2AH3F3rD2bzan YsAGHXEEfqz9+MTtdUMp41OlnykV7Gyf1qYCQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:subject:date:user-agent:cc:references:in-reply-to :mime-version:content-type:message-id; b=UZw8+dw/qGyGn6xr24Hmvm6YHGQ5yrdE3IhKREzwtRt6rWvFkad3WVY+RRkersr1iy JJEkWZvEyXg97w34KeXLBmhstzvrtQX0wl9CoP9gIPXYMPpdvL+CNlmdeLN+ZScscYaI xxc0tzDtY+CR+SpZ5clzvd/ZkiZz3Wx9yIMsY= Received: by 10.103.189.8 with SMTP id r8mr32357mup.11.1250081047061; Wed, 12 Aug 2009 05:44:07 -0700 (PDT) Received: from echo.hoth (host231-202-dynamic.8-87-r.retail.telecomitalia.it [87.8.202.231]) by mx.google.com with ESMTPS id 23sm30033198mum.35.2009.08.12.05.44.05 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 12 Aug 2009 05:44:05 -0700 (PDT) From: Alberto Villa To: "Dima Panov" Date: Wed, 12 Aug 2009 14:43:58 +0200 User-Agent: KMail/1.12.0 (FreeBSD/8.0-BETA2; KDE/4.3.0; i386; ; ) References: <200905172250.n4HMoXM1040813@www.freebsd.org> <200908021507.55790.villa.alberto@gmail.com> <20090803130409.M33405@Fluffy.Khv.RU> In-Reply-To: <20090803130409.M33405@Fluffy.Khv.RU> MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_PkrgKLqIjil1724" Message-Id: <200908121443.59076.villa.alberto@gmail.com> Cc: freebsd-ports-bugs@freebsd.org Subject: Re: ports/134632: [patch] Update port: multimedia/ffmpeg 2009-05-15 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2009 12:44:09 -0000 --Boundary-00=_PkrgKLqIjil1724 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit On Monday 03 August 2009 15:06:24 Dima Panov wrote: > libxine and k3b errors. > k3b build fine with current port, libxine also fails with old and new > ffmpeg again, sorry for taking so long, these are busy days libxine error is due to ffmpeg port installing headers in both old and new locations to provide compatibility with old programs. the attached patch removes the (useless) error, but i can't know if it's going to fail somewhere else (maybe when choosing what headers to include). i don't think so, but you have to test it, because i still can't make it build against ffmpeg... do you use custom CONFIGURE options? probably one should be added, because: "xine-lib is configured to use internal ffmpeg. This copy of ffmpeg is old. You are strongly advised to install a newer version (including development files) and to reconfigure xine-lib to use it." i'll try k3b (never built that), now that the ffmpeg port has been committed... -- Alberto Villa All my life I wanted to be someone; I guess I should have been more specific. -- Jane Wagner --Boundary-00=_PkrgKLqIjil1724 Content-Type: text/x-patch; charset="UTF-8"; name="patch-configure" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch-configure" --- configure.orig 2009-08-12 14:33:50.046739739 +0200 +++ configure 2009-08-12 14:35:46.363182933 +0200 @@ -19693,12 +19693,6 @@ done - if test "$ac_cv_header_ffmpeg_avutil_h" = "yes" && test "$ac_cv_header_libavutil_avutil_h" = "yes"; then - { { $as_echo "$as_me:$LINENO: error: old & new ffmpeg headers found - you need to clean up!" >&5 -$as_echo "$as_me: error: old & new ffmpeg headers found - you need to clean up!" >&2;} - { (exit 1); exit 1; }; } - fi - { $as_echo "$as_me:$LINENO: result: using external ffmpeg" >&5 $as_echo "using external ffmpeg" >&6; } else --Boundary-00=_PkrgKLqIjil1724--