summaryrefslogtreecommitdiff
path: root/graphics/libkdcraw-kde3/patches/patch-libkdcraw_libraw_libraw_libraw__alloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/libkdcraw-kde3/patches/patch-libkdcraw_libraw_libraw_libraw__alloc.h')
-rw-r--r--graphics/libkdcraw-kde3/patches/patch-libkdcraw_libraw_libraw_libraw__alloc.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/graphics/libkdcraw-kde3/patches/patch-libkdcraw_libraw_libraw_libraw__alloc.h b/graphics/libkdcraw-kde3/patches/patch-libkdcraw_libraw_libraw_libraw__alloc.h
new file mode 100644
index 00000000000..2ded10198bf
--- /dev/null
+++ b/graphics/libkdcraw-kde3/patches/patch-libkdcraw_libraw_libraw_libraw__alloc.h
@@ -0,0 +1,16 @@
+$NetBSD: patch-libkdcraw_libraw_libraw_libraw__alloc.h,v 1.1 2014/01/09 21:56:53 jperkin Exp $
+
+SunOS bzero() needs strings.h
+
+--- libkdcraw/libraw/libraw/libraw_alloc.h.orig 2009-05-10 11:25:49.000000000 +0000
++++ libkdcraw/libraw/libraw/libraw_alloc.h
+@@ -26,6 +26,9 @@
+
+ #include <stdlib.h>
+ #include <string.h>
++#ifdef __sun
++#include <strings.h>
++#endif
+ #ifdef WIN32
+ #define bzero(p,sz) memset(p,0,sz)
+ #endif