diff options
author | minskim <minskim@pkgsrc.org> | 2007-06-17 18:47:31 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2007-06-17 18:47:31 +0000 |
commit | 73845a9bdaeb14e621b3884d7f92036a9ae47880 (patch) | |
tree | 56e7326a4db0752751436ff3c7a6dfe28ee909e6 /emulators/dega | |
parent | b7d8f0b20cb0fbd2db1a144f54b802b856c78999 (diff) | |
download | pkgsrc-73845a9bdaeb14e621b3884d7f92036a9ae47880.tar.gz |
Use stdlib.h instead of non-standard malloc.h.
Diffstat (limited to 'emulators/dega')
-rw-r--r-- | emulators/dega/distinfo | 3 | ||||
-rw-r--r-- | emulators/dega/patches/patch-aa | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/emulators/dega/distinfo b/emulators/dega/distinfo index 17e4605aff0..4bd39683f17 100644 --- a/emulators/dega/distinfo +++ b/emulators/dega/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.2 2005/02/23 18:49:18 agc Exp $ +$NetBSD: distinfo,v 1.3 2007/06/17 18:47:31 minskim Exp $ SHA1 (dega-1.07.tar.gz) = 1401e5af566bc3e7658a4552940219688c082ce8 RMD160 (dega-1.07.tar.gz) = a20ad5d4ec47b3a8e65e64355557b6018a9dcfc4 Size (dega-1.07.tar.gz) = 85189 bytes +SHA1 (patch-aa) = 92f5e498320b751003f2efb79cafa5f7d96ab119 diff --git a/emulators/dega/patches/patch-aa b/emulators/dega/patches/patch-aa new file mode 100644 index 00000000000..0f528ec912f --- /dev/null +++ b/emulators/dega/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1 2007/06/17 18:47:31 minskim Exp $ + +--- sdl/main.c.orig 2001-12-19 15:42:38.000000000 -0800 ++++ sdl/main.c +@@ -6,7 +6,7 @@ + #include <unistd.h> + #include <mast.h> + #include <SDL.h> +-#include <malloc.h> ++#include <stdlib.h> + #include <getopt.h> + + SDL_Surface *thescreen; |