From owner-freebsd-multimedia@FreeBSD.ORG Sun Aug 31 18:54:04 2008 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B08C1106567C for ; Sun, 31 Aug 2008 18:54:04 +0000 (UTC) (envelope-from barbara.xxx1975@libero.it) Received: from cp-out1.libero.it (cp-out1.libero.it [212.52.84.101]) by mx1.freebsd.org (Postfix) with ESMTP id 2A4B38FC18 for ; Sun, 31 Aug 2008 18:54:04 +0000 (UTC) (envelope-from barbara.xxx1975@libero.it) Received: from libero.it (192.168.17.6) by cp-out1.libero.it (8.5.014) id 4835835706208BE3; Sun, 31 Aug 2008 20:54:03 +0200 Date: Sun, 31 Aug 2008 20:54:03 +0200 Message-Id: MIME-Version: 1.0 X-Sensitivity: 3 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable From: "barbara" X-XaM3-API-Version: 4.3 (R1) (B3pl25) X-SenderIP: 79.3.222.155 Cc: freebsd-multimedia , "lars.stokholm" Subject: Re: Re: Re: Unable to get OSD (and probably subtitles) in MPlayer X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Aug 2008 18:54:04 -0000 > On Sun 08/08/31 09:52 , "Lars Stokholm" lars.stokholm@gmail.com sent: > > On Sun, Aug 31, 2008 at 11:39 AM, Lars Stokholm lars. > > stokholm@gmail.com> wrote:> On un, Aug 31, 2008 at 2:14 AM, Fred > > Woods> fred@comment.icecreamhasnobones.org> wrote:>> Check to see if = you have libiconv in > > /usr/lib>> and in /usr/local/lib. > > > > > > It's in /usr/local/lib. > > > > > >> Also check to see if you have the > > includes>> in /usr/include and /usr/local/include. > > > > > > iconv.h is in /usr/local/include. > > > > > >> Assuming you built from ports, you can > > run>> make/gmake in the port's work/program > > dir>> and look at the config.log for more > > details.> > > > I'm sure you're getting closer, but I don't know > > what to conclude from> the log (I'm not a programmer). Here's the rel= evant > > part of> configure.log: http://pastebin.com/f2da9c467> > > > Obviously it can't find iconv.h. I don't know why, > > though. I'm> guessing that '-I...' is a reference to > > /usr/local/include, so> everything should be fine...? > > > > Since I haven't had this problem before, I had a look at recent > > changes to the port and I saw that some changes have been made to a > > patch on configure. I don't know if this is even relevant, but in cas= e > > it is: http://www.freebsd.org/cgi/cvsweb.cgi/ports/multimedia/mplayer= / > > files/patch-ad.diff?r1=3D1.32;r2=3D1.33;f=3Dh________________________= _______________________ > > Yes > - _inc_extra=3D"$_inc_extra -I/usr/local/include" > means the line is being replaced. > As an option to passing CFLAGS to make, you can > check the RTC option to add /usr/local/include > to the include path. > Hi pushed reply instead of replay to all, so I'm sending this again. In the meanwhile the PR has been published: http://www.freebsd.org/cgi/query-pr.cgi?pr=3D127010 -------------------------------------------------------------- Hi. I was facing the same problem since about a week and today I've found the= time to check the problem. Just before checking the mailing list a reading your discussion, I've sub= mitted a PR (I'm waiting for the mail to get the number) with a patch for= files/patch-ad. -------------------------- --- patch-ad.orig 2008-08-24 19:49:32.000000000 +0200 +++ files/patch-ad 2008-08-31 19:37:47.000000000 +0200 @@ -52,7 +52,7 @@ if freebsd ; then _ld_extra=3D"$_ld_extra -L/usr/local/lib" - _inc_extra=3D"$_inc_extra -I/usr/local/include" -+ _inc_extra=3D"$_inc_extra -I... -I.../libavutil" ++ _inc_extra=3D"$_inc_extra -I... -I.../libavutil -I/usr/local/include" fi if darwin; then -------------------------- I can confirm that this resolve the problem with freetype and I hope it d= oesn't break what the original patch was intended for. Cheers.