summaryrefslogtreecommitdiff
path: root/emulators
diff options
context:
space:
mode:
authortnn <tnn>2009-08-31 14:30:50 +0000
committertnn <tnn>2009-08-31 14:30:50 +0000
commitf07dde2af34a92098082e56e74ec8e874d8733b5 (patch)
tree1da77fd6035fcea715fcadb25aa77303e54faf56 /emulators
parentc1833e7fdc53770be4111a8b74ed1b68fc3800f7 (diff)
downloadpkgsrc-f07dde2af34a92098082e56e74ec8e874d8733b5.tar.gz
Use mmap to allocate executable memory on NetBSD as well.
Bump revision.
Diffstat (limited to 'emulators')
-rw-r--r--emulators/qemu/Makefile3
-rw-r--r--emulators/qemu/distinfo4
-rw-r--r--emulators/qemu/patches/patch-de8
3 files changed, 8 insertions, 7 deletions
diff --git a/emulators/qemu/Makefile b/emulators/qemu/Makefile
index 3c508285cbd..a28d1e57055 100644
--- a/emulators/qemu/Makefile
+++ b/emulators/qemu/Makefile
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.57 2009/08/31 10:18:49 hasso Exp $
+# $NetBSD: Makefile,v 1.58 2009/08/31 14:30:50 tnn Exp $
#
DISTNAME= qemu-0.10.6
+PKGREVISION= 1
CATEGORIES= emulators
MASTER_SITES= http://download.savannah.gnu.org/releases/qemu/
diff --git a/emulators/qemu/distinfo b/emulators/qemu/distinfo
index 37ad0e2a4cb..e9889918907 100644
--- a/emulators/qemu/distinfo
+++ b/emulators/qemu/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.44 2009/08/31 13:07:04 asau Exp $
+$NetBSD: distinfo,v 1.45 2009/08/31 14:30:50 tnn Exp $
SHA1 (qemu-0.10.6.tar.gz) = 9432738ba513e07c981097468945b2e3ad9cb81e
RMD160 (qemu-0.10.6.tar.gz) = 1321a10777d2e0c6b53887d0525a28cc1b36ec9b
@@ -11,7 +11,7 @@ SHA1 (patch-da) = 994eb51de1e7398acf95189da182f755f2ca65e1
SHA1 (patch-db) = 7e729851615598646aa3f2d7278147198d0a7a45
SHA1 (patch-dc) = 508d40a99242ba025ade0d067e6d44d3a8a4f0cc
SHA1 (patch-dd) = 98133e7526441ddea5647c006f146474fcd59826
-SHA1 (patch-de) = b06cb5d29069ebbbc7e78c35798332493c8c9143
+SHA1 (patch-de) = 14f6598f5467c4dfbea729ca2f4adcf6fe1144be
SHA1 (patch-df) = f21a7832e2cc94dbe76626b74455d33f5ca50ee5
SHA1 (patch-dg) = f315471d1353504e8bb0032cdf019634c3ce88a5
SHA1 (patch-dh) = c4c1882c81cdbe9d98fc50e8f60f8d233a7882c5
diff --git a/emulators/qemu/patches/patch-de b/emulators/qemu/patches/patch-de
index 4c7156193de..72766a6e605 100644
--- a/emulators/qemu/patches/patch-de
+++ b/emulators/qemu/patches/patch-de
@@ -1,13 +1,13 @@
-$NetBSD: patch-de,v 1.1 2009/08/31 10:18:49 hasso Exp $
+$NetBSD: patch-de,v 1.2 2009/08/31 14:30:50 tnn Exp $
---- exec.c.orig 2009-07-17 03:56:22 +0300
-+++ exec.c 2009-08-30 15:57:26 +0300
+--- exec.c.orig 2009-07-17 02:56:22.000000000 +0200
++++ exec.c
@@ -454,7 +454,7 @@ static void code_gen_alloc(unsigned long
exit(1);
}
}
-#elif defined(__FreeBSD__)
-+#elif defined(__FreeBSD__) || defined(__DragonFly__)
++#elif defined(__FreeBSD__) || defined(__DragonFly__) || defined(__NetBSD__)
{
int flags;
void *addr = NULL;