diff options
author | minskim <minskim@pkgsrc.org> | 2007-06-17 19:19:12 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2007-06-17 19:19:12 +0000 |
commit | 8d8783c5a6203b8824c3415230a12923c0e1d613 (patch) | |
tree | fb32a3ddf5c3529835784f3a5c44458bb536ce01 /games | |
parent | 05c2464f6b13b0028103ae0fa5aee77e66d54f30 (diff) | |
download | pkgsrc-8d8783c5a6203b8824c3415230a12923c0e1d613.tar.gz |
Use stdlib.h instead of non-standard malloc.h
Diffstat (limited to 'games')
-rw-r--r-- | games/falcons-eye/distinfo | 6 | ||||
-rw-r--r-- | games/falcons-eye/patches/patch-ai | 13 | ||||
-rw-r--r-- | games/falcons-eye/patches/patch-aj | 13 | ||||
-rw-r--r-- | games/falcons-eye/patches/patch-bd | 12 |
4 files changed, 40 insertions, 4 deletions
diff --git a/games/falcons-eye/distinfo b/games/falcons-eye/distinfo index 21966624809..71c5798136a 100644 --- a/games/falcons-eye/distinfo +++ b/games/falcons-eye/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.13 2006/06/17 19:00:08 rillig Exp $ +$NetBSD: distinfo,v 1.14 2007/06/17 19:19:12 minskim Exp $ SHA1 (falcons-eye-1.9.3-20050216-2/nethack_source_331_jtp_193.zip) = f25a3b77925d247762d18b6f022500aac7c42b29 RMD160 (falcons-eye-1.9.3-20050216-2/nethack_source_331_jtp_193.zip) = a94c3bbdec7a0c034acbe431071342b872c7acc5 @@ -11,10 +11,12 @@ SHA1 (patch-ae) = b6d0cca1e3d781a2a1f1d4b244e944eaedfec716 SHA1 (patch-af) = f7ad4c58a5b37346f86976473ec9136188a4e628 SHA1 (patch-ag) = 6aeae6bde079b9c9081f6e32523687010c9bc674 SHA1 (patch-ah) = f7cd2d43bfa991e1b1d759db519bdaf1a48357bf +SHA1 (patch-ai) = cff6d959169b71a0be6b17c685c15d07ea99310d +SHA1 (patch-aj) = 6da139181fb328e8feeeb93db8f07f6259fddaf5 SHA1 (patch-ba) = 8fb7c3ad5fdc5f35e34b1ac87bc60e1a22a91c03 SHA1 (patch-bb) = 899a966ec39b749618cad9c6e420cfd865eb7d5e SHA1 (patch-bc) = ef228db9215e8c4d0e03a079ede1a7a195ecde58 -SHA1 (patch-bd) = 8294b1e7a16edbd8b05c453984b22f1fbda3d7f1 +SHA1 (patch-bd) = 0a62f2805efb78cd071dc95a4c52e5fa167765cc SHA1 (patch-be) = 0a1dfb5fea7ae7e92701dcd2065e35a98dabe924 SHA1 (patch-bf) = b58009fe635389483c34b50afca6aba9cb75fc72 SHA1 (patch-bh) = 65bf424d1e60b0ee9b9acc8b04359f2f4621e605 diff --git a/games/falcons-eye/patches/patch-ai b/games/falcons-eye/patches/patch-ai new file mode 100644 index 00000000000..abdd5124566 --- /dev/null +++ b/games/falcons-eye/patches/patch-ai @@ -0,0 +1,13 @@ +$NetBSD: patch-ai,v 1.1 2007/06/17 19:19:15 minskim Exp $ + +--- include/jtp_gen.h.orig 2001-06-24 18:57:16.000000000 -0700 ++++ include/jtp_gen.h +@@ -11,7 +11,7 @@ + + #include "jtp_def.h" + #include <stdio.h> +-#include <malloc.h> ++#include <stdlib.h> + #include <string.h> + + void jtp_write_log_message(char * logmessage); diff --git a/games/falcons-eye/patches/patch-aj b/games/falcons-eye/patches/patch-aj new file mode 100644 index 00000000000..6dceb698673 --- /dev/null +++ b/games/falcons-eye/patches/patch-aj @@ -0,0 +1,13 @@ +$NetBSD: patch-aj,v 1.1 2007/06/17 19:19:16 minskim Exp $ + +--- win/jtp/jtp_keys.c.orig 2001-07-01 21:25:24.000000000 -0700 ++++ win/jtp/jtp_keys.c +@@ -2,7 +2,7 @@ + /* Copyright (c) Jaakko Peltonen, 2001 */ + /* NetHack may be freely redistributed. See license for details. */ + +-#include <malloc.h> ++#include <stdlib.h> + #include "hack.h" + #include "jtp_keys.h" + diff --git a/games/falcons-eye/patches/patch-bd b/games/falcons-eye/patches/patch-bd index 5746a518832..90a4f55309e 100644 --- a/games/falcons-eye/patches/patch-bd +++ b/games/falcons-eye/patches/patch-bd @@ -1,8 +1,16 @@ -$NetBSD: patch-bd,v 1.2 2003/12/20 16:51:38 ben Exp $ +$NetBSD: patch-bd,v 1.3 2007/06/17 19:19:18 minskim Exp $ --- win/jtp/jtp_sdl.c.orig 2001-07-02 07:05:50.000000000 -0700 +++ win/jtp/jtp_sdl.c -@@ -405,6 +405,11 @@ void jtp_SDLPollForMessage(char waitform +@@ -11,7 +11,6 @@ + -------------------------------------------------------------------*/ + + #include <stdlib.h> +-#include <malloc.h> + #include <unistd.h> + #include <signal.h> + #include <errno.h> +@@ -405,6 +404,11 @@ void jtp_SDLPollForMessage(char waitform { SDL_Event cur_event; |