diff options
author | joerg <joerg@pkgsrc.org> | 2007-08-08 17:39:09 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2007-08-08 17:39:09 +0000 |
commit | 333226b69b447b0e8c14e58e94692d102b10ef72 (patch) | |
tree | c64910896ba4264f36f048841a452a6def2b67d7 /graphics | |
parent | 043da629a60a9b3e48284f9263275eeff553e3dc (diff) | |
download | pkgsrc-333226b69b447b0e8c14e58e94692d102b10ef72.tar.gz |
Don't use malloc.h, always use stdlib.h.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/blender/distinfo | 3 | ||||
-rw-r--r-- | graphics/blender/patches/patch-ah | 22 |
2 files changed, 24 insertions, 1 deletions
diff --git a/graphics/blender/distinfo b/graphics/blender/distinfo index 5cd24064a94..7c5c237cfb7 100644 --- a/graphics/blender/distinfo +++ b/graphics/blender/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.21 2006/02/23 20:15:21 joerg Exp $ +$NetBSD: distinfo,v 1.22 2007/08/08 17:39:09 joerg Exp $ SHA1 (blender-2.41.tar.gz) = 839dfece3b6efbf10694ac535d88e3745c3253ec RMD160 (blender-2.41.tar.gz) = 7857eac2acda18ee24db4bb147bcf780025e2c12 @@ -9,3 +9,4 @@ SHA1 (patch-ac) = dcfa14519404915a69bd626c8a5a6029d2535ca2 SHA1 (patch-ae) = 9f8c84495eaa793dd04182f1ad871975083d1bb2 SHA1 (patch-af) = d8fad42c6b304651d36ac20e69f3cbe66f018a86 SHA1 (patch-ag) = cfbd34b0f9c01c044808e3fb6c07de76abbefccb +SHA1 (patch-ah) = b45f534b4c5850da13e9b421f73e33c8d079696f diff --git a/graphics/blender/patches/patch-ah b/graphics/blender/patches/patch-ah new file mode 100644 index 00000000000..615bb2b5542 --- /dev/null +++ b/graphics/blender/patches/patch-ah @@ -0,0 +1,22 @@ +$NetBSD: patch-ah,v 1.1 2007/08/08 17:39:09 joerg Exp $ + +--- intern/SoundSystem/intern/SND_WaveCache.cpp.orig 2007-08-08 17:01:35.000000000 +0000 ++++ intern/SoundSystem/intern/SND_WaveCache.cpp +@@ -44,16 +44,7 @@ + + #include "SND_WaveCache.h" + #include <stdio.h> +- +-#ifdef __APPLE__ +-# include <sys/malloc.h> +-#else +-# ifdef __FreeBSD__ +-# include <stdlib.h> +-# else +-# include <malloc.h> +-# endif +-#endif ++#include <stdlib.h> + + SND_WaveCache::SND_WaveCache() + { |