summaryrefslogtreecommitdiff
path: root/graphics/librsvg/patches
diff options
context:
space:
mode:
authorwiz <wiz>2015-01-16 09:39:12 +0000
committerwiz <wiz>2015-01-16 09:39:12 +0000
commitc6493e43920164f465c46701e126f3281c9ea4f7 (patch)
treec44e69173142ca79470139a9af3a75653989d340 /graphics/librsvg/patches
parentb7363a5bc4c1b58af581905adfbe35d4c688b195 (diff)
downloadpkgsrc-c6493e43920164f465c46701e126f3281c9ea4f7.tar.gz
Update to 2.40.6:
Version 2.40.6 - MinGW build fixes - Fix path data number parsing - Fix build with newer libtool
Diffstat (limited to 'graphics/librsvg/patches')
-rw-r--r--graphics/librsvg/patches/patch-rsvg-base.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/graphics/librsvg/patches/patch-rsvg-base.c b/graphics/librsvg/patches/patch-rsvg-base.c
deleted file mode 100644
index 85baae02928..00000000000
--- a/graphics/librsvg/patches/patch-rsvg-base.c
+++ /dev/null
@@ -1,28 +0,0 @@
-$NetBSD: patch-rsvg-base.c,v 1.1 2013/12/10 00:25:18 prlw1 Exp $
-
-Allow rsvg to built on other systems than just Linux.
-
-https://bugzilla.gnome.org/show_bug.cgi?id=710163
-Finally committed as 02cb1983
---- rsvg-base.c.orig 2013-05-11 09:19:07.000000000 +0000
-+++ rsvg-base.c
-@@ -2190,8 +2190,7 @@ _rsvg_handle_allow_load (RsvgHandle *han
- dir = g_file_get_path (base);
- g_object_unref (base);
-
-- /* FIXME portability */
-- cdir = canonicalize_file_name (dir);
-+ cdir = realpath (dir, NULL);
- g_free (dir);
- if (cdir == NULL)
- goto deny;
-@@ -2200,8 +2199,7 @@ _rsvg_handle_allow_load (RsvgHandle *han
- if (path == NULL)
- goto deny;
-
-- /* FIXME portability */
-- cpath = canonicalize_file_name (path);
-+ cpath = realpath (path, NULL);
- g_free (path);
-
- if (cpath == NULL)