aboutsummaryrefslogtreecommitdiffstats
path: root/print/ghostscript9-base
diff options
context:
space:
mode:
authormarino <marino@FreeBSD.org>2015-11-11 19:42:27 +0800
committermarino <marino@FreeBSD.org>2015-11-11 19:42:27 +0800
commitb135bd55d1bd83631e097214986a49f64badf984 (patch)
tree0955554b936fd78896c660450930938683f4a736 /print/ghostscript9-base
parentf6531336366ea77cce796fb55ffcd97d39af1933 (diff)
downloadfreebsd-ports-gnome-b135bd55d1bd83631e097214986a49f64badf984.tar.gz
freebsd-ports-gnome-b135bd55d1bd83631e097214986a49f64badf984.tar.zst
freebsd-ports-gnome-b135bd55d1bd83631e097214986a49f64badf984.zip
print/ghostscript9-base: Modify patch to handle dragonfly as well
A port patch excludes <malloc.h> for FreeBSD, and DragonFly needs this treatment as well, so the existing patch was trivially modified. Approved by: DF blanket (non-invasive)
Diffstat (limited to 'print/ghostscript9-base')
-rw-r--r--print/ghostscript9-base/files/patch-base-gdevplib.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/print/ghostscript9-base/files/patch-base-gdevplib.c b/print/ghostscript9-base/files/patch-base-gdevplib.c
index 96a096337dd3..11fbdf23b262 100644
--- a/print/ghostscript9-base/files/patch-base-gdevplib.c
+++ b/print/ghostscript9-base/files/patch-base-gdevplib.c
@@ -1,10 +1,10 @@
---- base/gdevplib.c.orig 2012-02-08 17:48:47.000000000 +0900
-+++ base/gdevplib.c 2012-02-13 01:23:46.000000000 +0900
-@@ -151,7 +151,11 @@
+--- base/gdevplib.c.orig 2012-08-08 08:01:36 UTC
++++ base/gdevplib.c
+@@ -153,7 +153,11 @@ void __aebi_memmove(void *dest, const vo
#ifdef TESTING_WITH_NO_BAND_DONOR
-+#if !defined(__FreeBSD__)
++#if !defined(__FreeBSD__) && !defined(__DragonFly__)
#include <malloc.h>
+#else
+#include <stdlib.h>