uhexen2: update to version 1.5.8

Fixes #34.
This commit is contained in:
Josef Söntgen
2016-08-26 14:43:02 +02:00
committed by Norman Feske
parent 1cb50bb41d
commit 701516110d
4 changed files with 5 additions and 4 deletions

View File

@@ -1 +1 @@
c1af3379613390c015ce0779c5a45e43d3f1f52d
2cb0450605df05518132378aea3e94302cbbf048

View File

@@ -1,8 +1,8 @@
LICENSE := GPLv2
VERSION := 1.5.6
VERSION := 1.5.8
DOWNLOADS := uhexen2.archive
BASE_URL := http://downloads.sourceforge.net/project/uhexen2/Hammer%20of%20Thyrion/$(VERSION)/Source
URL(uhexen2) := $(BASE_URL)/hexen2source-$(VERSION).tgz
SHA(uhexen2) := f3735a650468583eb433628b24bf9a15755d092a
SHA(uhexen2) := c6b90091f507f4d07c8354391df179f6aba49b8a
DIR(uhexen2) := src/app/uhexen2

View File

@@ -126,6 +126,7 @@ append config {
<start name="audio_drv">
<resource name="RAM" quantum="8M"/>
<provides><service name="Audio_out"/></provides>
<config/>
</start>
<start name="uhexen2">
<resource name="RAM" quantum="128M"/>

View File

@@ -741,7 +741,7 @@ extern "C" int sigprocmask(int, const sigset_t*, sigset_t*) { return -1; }
int main(int argc, char *argv[])
{
/* Hexen 2 needs lots of stack */
Genode::Thread_base::myself()->stack_size(256 * 1024);
Genode::Thread::myself()->stack_size(256 * 1024);
return ::hexen_main(argc, argv);
}