From owner-freebsd-questions@FreeBSD.ORG Mon Oct 3 09:24:56 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2441E16A41F for ; Mon, 3 Oct 2005 09:24:56 +0000 (GMT) (envelope-from npacemo@gmail.com) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id B03F543D45 for ; Mon, 3 Oct 2005 09:24:55 +0000 (GMT) (envelope-from npacemo@gmail.com) Received: by zproxy.gmail.com with SMTP id z31so230300nzd for ; Mon, 03 Oct 2005 02:24:55 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=VZrSPh+QD6svF/Sv9+Galmk0BKHCF59z6dT6iPry1tvFNuQ1+mHI4OqP2ocggeo6GdILg5fi1kN8jCkdD9aFxNrCcER92CCDaPO9L1kRcEWWyzD3+bf6y3k17i5Ok3lHZdeS7i5TYvFrxX+EpjnNc0x39+bgDpxiH0c0XjTJTQ0= Received: by 10.36.222.3 with SMTP id u3mr25392nzg; Mon, 03 Oct 2005 02:24:55 -0700 (PDT) Received: by 10.36.250.66 with HTTP; Mon, 3 Oct 2005 02:24:55 -0700 (PDT) Message-ID: <666bdb140510030224k783ded29t@mail.gmail.com> Date: Mon, 3 Oct 2005 12:24:55 +0300 From: Vladimir Tsvetkov To: freebsd-questions@freebsd.org In-Reply-To: <666bdb140510030102l185e05b1j@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <666bdb140510020731n99525cx@mail.gmail.com> <200510022218.23902.list-freebsd-2004@morbius.sent.com> <666bdb140510030025va01714cp@mail.gmail.com> <666bdb140510030102l185e05b1j@mail.gmail.com> Subject: Fwd: FreeBSD + Firefox + Flash Problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Vladimir Tsvetkov List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Oct 2005 09:24:56 -0000 ---------- Forwarded message ---------- From: Vladimir Tsvetkov Date: 2005-10-3 11:02 Subject: Re: FreeBSD + Firefox + Flash Problems To: RW The Flash problem is solved!!! The problem was in step 2: > 2. Install linuxpluginwrapper: > # cd /usr/ports/www/linuxpluginwrapper > # make WITHOUT_PLUGINS=3Dyes install clean I just explored the /usr/ports/www/linuxpluginwrapper/Makefile and I saw th= is: .if !defined(WITHOUT_PLUGINS) RUN_DEPENDS=3D ${X11BASE}/lib/linux-flashplugin6/libflashplayer.so:${POR= TSDIR}/ www/linux-flashplugin6 RUN_DEPENDS+=3D ${X11BASE}/lib/linux-mozilla/plugins/nphelix.so:${PORTSDI= R}/mult imedia/linux-realplayer #RUN_DEPENDS+=3D ${LINUXBASE}/usr/local/Adobe/Acrobat7.0/Browser/intellinu= x/nppdf .so:${PORTSDIR}/print/acroread7 .if ${OSVERSION} < 500000 USE_MOTIF=3D yes .endif .endif I had defined WITHOUT_PLUGINS=3Dyes, which meant that the nested .if expession about using Motif on my system was not executed. My system needs Motif to get the Flash plugin running. So I deinstalled it, and installed it without defining this configuration variable: # cd /usr/ports/www/linuxpluginwrapper # make install clean Now, Flash works!!! You can see also that I've commented out the line that will install Acroread7 as a dependency, because I thought that Acroread5 will work just fine for me. Obviously I am mistaken, because I still can't open *.PDF in an embeded browser. And now, I'm just going to try another install and maybe will use Acroread7. Best Regards, Vladimir