summaryrefslogtreecommitdiff
path: root/games
diff options
context:
space:
mode:
authorminskim <minskim>2006-06-19 17:07:45 +0000
committerminskim <minskim>2006-06-19 17:07:45 +0000
commit248b3a6706306400f8f91fa08914f346afdc127c (patch)
tree7a32de2d5aa1af0e354d2583096f4fd8b7553d2a /games
parentdea6294b0d57593754d9bcf1df8d9aa8c98c0925 (diff)
downloadpkgsrc-248b3a6706306400f8f91fa08914f346afdc127c.tar.gz
Do not declare conflicting srandom() on Darwin.
Diffstat (limited to 'games')
-rw-r--r--games/nethack-lib/distinfo4
-rw-r--r--games/nethack-lib/patches/patch-ac10
2 files changed, 7 insertions, 7 deletions
diff --git a/games/nethack-lib/distinfo b/games/nethack-lib/distinfo
index 17c11cdc8c0..b5140953d26 100644
--- a/games/nethack-lib/distinfo
+++ b/games/nethack-lib/distinfo
@@ -1,11 +1,11 @@
-$NetBSD: distinfo,v 1.11 2005/12/19 17:47:04 joerg Exp $
+$NetBSD: distinfo,v 1.12 2006/06/19 17:07:45 minskim Exp $
SHA1 (nethack-343-src.tgz) = c26537093c38152bc0fbcec20468d975b35f59fd
RMD160 (nethack-343-src.tgz) = 42f600d24715a0b7e631b357c135761410b3ca95
Size (nethack-343-src.tgz) = 3497458 bytes
SHA1 (patch-aa) = ed5c55651acf81c459867c99026e13a6c5ed34a0
SHA1 (patch-ab) = 73a1ac287ded70f371bb38c82cdbcd36182ce3a5
-SHA1 (patch-ac) = ad049f20424edff041ff2aa8a679a940c092cf06
+SHA1 (patch-ac) = e447b4c60ef7db7cfcd35a9be8b8d2f86fc0c27b
SHA1 (patch-ad) = 16ec579732beba4b2cb4ab3ea06d20d4f6b191a4
SHA1 (patch-ae) = a72da6e6bd1af3a8eaed97ecc1fdd1ed4198a5db
SHA1 (patch-af) = c7640150409d97a7930fef476191d34c08c6f741
diff --git a/games/nethack-lib/patches/patch-ac b/games/nethack-lib/patches/patch-ac
index f03456c62cd..2500ed72317 100644
--- a/games/nethack-lib/patches/patch-ac
+++ b/games/nethack-lib/patches/patch-ac
@@ -1,17 +1,17 @@
-$NetBSD: patch-ac,v 1.8 2005/12/19 17:47:04 joerg Exp $
+$NetBSD: patch-ac,v 1.9 2006/06/19 17:07:45 minskim Exp $
---- include/system.h.orig 2003-12-08 01:39:13.000000000 +0200
-+++ include/system.h 2004-03-05 15:44:53.000000000 +0200
+--- include/system.h.orig 2003-12-07 15:39:13.000000000 -0800
++++ include/system.h
@@ -79,10 +79,10 @@ typedef long off_t;
# if !defined(__SC__) && !defined(LINUX)
E long NDECL(random);
# endif
-# if (!defined(SUNOS4) && !defined(bsdi) && !defined(__FreeBSD__)) || defined(RANDOM)
-+# if (!defined(SUNOS4) && !defined(bsdi) && !defined(__NetBSD__) && !defined(__FreeBSD__) && !defined(__DragonFly__)) || defined(RANDOM)
++# if (!defined(SUNOS4) && !defined(bsdi) && !defined(__NetBSD__) && !defined(__FreeBSD__) && !defined(__DragonFly__) && !defined(__APPLE__)) || defined(RANDOM)
E void FDECL(srandom, (unsigned int));
# else
-# if !defined(bsdi) && !defined(__FreeBSD__)
-+# if !defined(bsdi) && !defined(__NetBSD__) && !defined(__FreeBSD__) && !defined(__DragonFly__)
++# if !defined(bsdi) && !defined(__NetBSD__) && !defined(__FreeBSD__) && !defined(__DragonFly__) && !defined(__APPLE__)
E int FDECL(srandom, (unsigned int));
# endif
# endif