From owner-freebsd-gnome@FreeBSD.ORG Sat Dec 3 05:20:49 2005 Return-Path: X-Original-To: freebsd-gnome@freebsd.org Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7712616A41F; Sat, 3 Dec 2005 05:20:49 +0000 (GMT) (envelope-from mezz7@cox.net) Received: from centrmmtao01.cox.net (centrmmtao01.cox.net [70.168.83.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8294243D5C; Sat, 3 Dec 2005 05:20:48 +0000 (GMT) (envelope-from mezz7@cox.net) Received: from mezz.mezzweb.com ([68.103.32.140]) by centrmmtao01.cox.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with ESMTP id <20051203052005.DHBG22243.centrmmtao01.cox.net@mezz.mezzweb.com>; Sat, 3 Dec 2005 00:20:05 -0500 Date: Fri, 02 Dec 2005 23:21:44 -0600 To: "Bruce A. Mah" References: <4391265B.7080300@freebsd.org> From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: In-Reply-To: <4391265B.7080300@freebsd.org> User-Agent: Opera M2/8.51 (Linux, build 1462) Cc: freebsd-gnome@freebsd.org Subject: Re: Dumb firefox and SVG question X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Dec 2005 05:20:49 -0000 On Fri, 02 Dec 2005 23:00:11 -0600, Bruce A. Mah wrote: > I just recently updated www/firefox to 1.5_3,1 on my 6.0-STABLE/i386 > laptop. My understanding is that I should be able to view any of the > SVG examples on this page: Looks like it's disable again, so it's nothing your fault. Umm... Here's what caused this problem: ====================================== .include .include "${.CURDIR}/../mozilla/Makefile.common" .if ${OSVERSION} >= 504101 MOZ_OPTIONS+= --enable-svg --enable-svg-renderer=cairo .endif [...] .include ====================================== Looks like it should be before that Makefile.common to make it enable again like this. ====================================== .include .if ${OSVERSION} >= 504101 MOZ_OPTIONS+= --enable-svg --enable-svg-renderer=cairo .endif .include "${.CURDIR}/../mozilla/Makefile.common" [...] .include ====================================== I haven't test it yet, but that's my first guess. I might test it tomorrow, unless someone beat me. Cheers, Mezz > http://www.croczilla.com/svg/samples/ > > If I click on any of the "Open" links, firefox gives me the "What should > Firefox do with this file?" dialog, with the options of opening the SVG > file with a helper application or saving it to disk. I kind of expected > that it'd just open the SVG file inside the firefox window. My > interpretation of the following output is that I should have SVG support > in my browser... > > localhost:firefox% make -V OSVERSION > 600100 > localhost:firefox% make -V MOZ_OPTIONS > --enable-application=browser --enable-system-cairo > --enable-official-branding --enable-canvas --enable-crypto > --disable-tests --enable-default-toolkit=gtk2 --enable-xft > --with-pthreads --x-includes=/usr/X11R6/include > --x-libraries=/usr/X11R6/lib --enable-extensions=default > --enable-image-decoders=default --enable-necko-protocols=default > --with-system-jpeg=/usr/local --with-system-zlib=/usr > --with-system-png=/usr/local --with-gssapi=/usr > --with-system-nspr --disable-auto-deps > --enable-chrome-format=jar --disable-cpp-exceptions > --disable-cpp-rtti --disable-glibtest > --disable-gtktest --disable-freetypetest > --enable-double-buffer --enable-mathm --disable-installer > --disable-md --disable-pedantic > --disable-bidi --disable-xterm-updates > --enable-xinerama --disable-debug > --enable-optimize=-O --enable-strip --disable-logging --enable-svg > --enable-svg-renderer=cairo > > Is there something else I need to do to get this to work? Or do I have > the wrong concept of how SVG support works? Clues appreciated. > > Thanks! > > Bruce. > > PS. pkg_version -v output attached. -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org