Revision: 52b5b6aa73e6
Author:   nogu.dev <[email protected]>
Date:     Tue Mar 13 07:25:09 2012
Log:      * Apply patch by JR to replace rsvg with rsvg-convert (#47204).
  Recent versions of librsvg no longer have rsvg command.
  We don't have to worry about developers not having rsvg-convert
  because rsvg-convert was introduced in librsvg-2.13.4,
  released more than 6 years ago.
  http://ftp.gnome.org/pub/GNOME/sources/librsvg/2.13/librsvg-2.13.4.changes
* configure.ac
  - Replace rsvg with rsvg-convert.
* pixmaps/Makefile.am
  - Follow change of configure.ac.

http://code.google.com/p/uim/source/detail?r=52b5b6aa73e6

Modified:
 /configure.ac
 /pixmaps/Makefile.am

=======================================
--- /configure.ac       Fri Mar  2 22:59:27 2012
+++ /configure.ac       Tue Mar 13 07:25:09 2012
@@ -20,7 +20,7 @@
 AC_DISABLE_STATIC
 AC_PROG_LIBTOOL
 AC_PATH_PROG(SH, sh)
-AC_PATH_PROG(RSVG, rsvg)
+AC_PATH_PROG(RSVG, rsvg-convert)
 AC_PATH_PROG(CSI, csi)
 AC_PATH_PROGS(MD5, md5 md5sum)
 AC_PATH_PROGS(SHA1, sha1 sha1sum)
=======================================
--- /pixmaps/Makefile.am        Sun Mar 11 00:36:19 2012
+++ /pixmaps/Makefile.am        Tue Mar 13 07:25:09 2012
@@ -153,8 +153,8 @@
        cp $< $@

 .svg.png:
-       if test -n "$(RSVG)"; then            \
-           $(RSVG) -w48 -h48 -fpng $< $@;   \
+       if test -n "$(RSVG)"; then             \
+           $(RSVG) -w 48 -h 48 -f png $< -o $@; \
        fi
 endif

Reply via email to