diff options
author | joerg <joerg@pkgsrc.org> | 2007-08-08 20:53:47 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2007-08-08 20:53:47 +0000 |
commit | d7cae3e665ec15df69e0943397803def350834fa (patch) | |
tree | 4fc6f5afd954046bf50236b8d40765c297bb804e | |
parent | 77c305e77df4eb73943a549d752aaf06220c447e (diff) | |
download | pkgsrc-d7cae3e665ec15df69e0943397803def350834fa.tar.gz |
Don't use malloc.h.
-rw-r--r-- | games/openmortal/distinfo | 4 | ||||
-rw-r--r-- | games/openmortal/patches/patch-ad | 13 | ||||
-rw-r--r-- | games/openmortal/patches/patch-ae | 12 |
3 files changed, 28 insertions, 1 deletions
diff --git a/games/openmortal/distinfo b/games/openmortal/distinfo index ed89e8980d5..b4db1da4fab 100644 --- a/games/openmortal/distinfo +++ b/games/openmortal/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.9 2006/08/15 06:50:44 xtraeme Exp $ +$NetBSD: distinfo,v 1.10 2007/08/08 20:53:47 joerg Exp $ SHA1 (openmortal-0.7.tar.bz2) = a7177012e1c0eb04f357aa9ff013e53c8f7b835c RMD160 (openmortal-0.7.tar.bz2) = 6a0fdd46445ed243db261227a93526b97c6f9d79 @@ -6,3 +6,5 @@ Size (openmortal-0.7.tar.bz2) = 51197736 bytes SHA1 (patch-aa) = d18089a348fb7718bed0f47fbff7aaf772915340 SHA1 (patch-ab) = 1f7f9075975994e76262df4d3153f1162cb40dd3 SHA1 (patch-ac) = 807cfb849a4a3408c5877b61690bf0cf37da59b6 +SHA1 (patch-ad) = ad0fbd55c11a6076e9e5212b717a4b220820b206 +SHA1 (patch-ae) = d0434959250bad25932963efafe34bb7fe948cee diff --git a/games/openmortal/patches/patch-ad b/games/openmortal/patches/patch-ad new file mode 100644 index 00000000000..ee40a254559 --- /dev/null +++ b/games/openmortal/patches/patch-ad @@ -0,0 +1,13 @@ +$NetBSD: patch-ad,v 1.1 2007/08/08 20:53:47 joerg Exp $ + +--- src/gfx.cpp.orig 2007-08-08 20:28:38.000000000 +0000 ++++ src/gfx.cpp +@@ -7,7 +7,7 @@ + ***************************************************************************/
+
+ #include <string.h>
+-#include <malloc.h>
++#include <stdlib.h>
+
+
+ #include "SDL.h"
diff --git a/games/openmortal/patches/patch-ae b/games/openmortal/patches/patch-ae new file mode 100644 index 00000000000..d9cf42a4159 --- /dev/null +++ b/games/openmortal/patches/patch-ae @@ -0,0 +1,12 @@ +$NetBSD: patch-ae,v 1.1 2007/08/08 20:53:47 joerg Exp $ + +--- src/sge_tt_text.cpp.orig 2007-08-08 20:28:55.000000000 +0000 ++++ src/sge_tt_text.cpp +@@ -26,7 +26,6 @@ + + #include "SDL.h" + #include <stdlib.h> +-#include <malloc.h> + #include <memory.h> + #include <string.h> + #include <stdarg.h> |