librsvg-2.12.4 has been released



librsvg-2.12.4 has been released.  This release includes, among other
things, a fix for bug #314593 

        http://bugzilla.gnome.org/show_bug.cgi?id=314593

discussed in a previous post.

There is a caveat: 

        configure will first search for mozilla-config and then for
        firefox-config.
        
If you have mozilla-config in $PATH and want to use firefox to build the
SVG mozilla-plugin you have choices:

(0) "Hide" mozilla-config

(1) set an environment variable

	MOZILLA_CONFIG=firefox-config

See the attached GARNOME makefile

(2) Reverse the search order in the configuration files
See the attached gar-fixes.patch

-Joseph




-Joseph

-- 
joseph_sacco [at] comcast [dot] net
--- librsvg-2.12.4/configure-	2005-10-02 11:09:15.000000000 -0400
+++ librsvg-2.12.4/configure	2005-10-02 11:09:57.000000000 -0400
@@ -23679,7 +23679,7 @@
 
 if test "x$test_mozilla_plugin" != "xno"; then
    if test -z "$MOZILLA_CONFIG"; then
-      for ac_prog in mozilla-config firefox-config
+      for ac_prog in firefox-config mozilla-config
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
--- librsvg-2.12.4/configure.in-	2005-10-02 11:10:05.000000000 -0400
+++ librsvg-2.12.4/configure.in	2005-10-02 11:10:27.000000000 -0400
@@ -322,7 +322,7 @@
 
 if test "x$test_mozilla_plugin" != "xno"; then
    if test -z "$MOZILLA_CONFIG"; then
-      AC_PATH_PROGS(MOZILLA_CONFIG, mozilla-config firefox-config, no)
+      AC_PATH_PROGS(MOZILLA_CONFIG, firefox-config mozilla-config, no)
    fi
 
    if test "x$MOZILLA_CONFIG" != "xno"; then
GARNAME = librsvg
GARVERSION = 2.12.4
CATEGORIES = desktop
DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2

LIBDEPS = platform/libxml2 platform/gtk+ platform/libart_lgpl platform/libgnomeprintui desktop/libcroco office/libgsf freedesktop/cairo
LIBDEPS += $(shell if test ! "`ls $(shell echo $(PKG_CONFIG_PATH) | sed -e "s/:/ /g") 2>&1 /dev/null | grep mozilla-gtkmozembed.pc || ls $(shell echo $(PKG_CONFIG_PATH) | sed -e "s/:/ /g") 2>&1 /dev/null | grep firefox-gtkmozembed.pc`" ; then echo bootstrap/firefox ; fi )

DESCRIPTION = librsvg
define BLURB
 #FIXME: blurb goes here
endef

# Set MOZILLA_CONFIG to either firefox-config or mozilla-config
# to select the gecko engine to use to build the SVG mozilla-plugin
CONFIGURE_ENV = MOZILLA_CONFIG="firefox-config"

CONFIGURE_SCRIPTS = $(WORKSRC)/configure
BUILD_SCRIPTS = $(WORKSRC)/Makefile
INSTALL_SCRIPTS = $(WORKSRC)/Makefile

CONFIGURE_ARGS = $(DIRPATHS) --with-svgz --with-croco --with-cairo

include ../category.mk


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]