Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/polyml/files/
Date: Mon, 10 Oct 2016 12:08:14
Message-Id: 1476101262.4a25398a4b6d2199fc84a5ec726d4f45c5a8850e.monsieurp@gentoo
1 commit: 4a25398a4b6d2199fc84a5ec726d4f45c5a8850e
2 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sat Aug 6 15:06:34 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 10 12:07:42 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a25398a
7
8 dev-lang/polyml: remove unused patch.
9
10 Closes: https://github.com/gentoo/gentoo/pull/2164
11
12 Acked-By: Alexis Baller <aballier <AT> gentoo.org>
13 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
14
15 .../polyml/files/polyml-5.5.1-mprotect-exec.patch | 29 ----------------------
16 1 file changed, 29 deletions(-)
17
18 diff --git a/dev-lang/polyml/files/polyml-5.5.1-mprotect-exec.patch b/dev-lang/polyml/files/polyml-5.5.1-mprotect-exec.patch
19 deleted file mode 100644
20 index 3ead487..00000000
21 --- a/dev-lang/polyml/files/polyml-5.5.1-mprotect-exec.patch
22 +++ /dev/null
23 @@ -1,29 +0,0 @@
24 ---- polyml.5.5.1-orig/libpolyml/memmgr.cpp 2013-07-10 22:56:07.000000000 +1000
25 -+++ polyml.5.5.1/libpolyml/memmgr.cpp 2014-02-10 14:08:51.866219101 +1100
26 -@@ -80,7 +80,7 @@
27 - // Allocate the heap itself.
28 - size_t iSpace = size*sizeof(PolyWord);
29 - bottom =
30 -- (PolyWord*)osMemoryManager->Allocate(iSpace, PERMISSION_READ|PERMISSION_WRITE|PERMISSION_EXEC);
31 -+ (PolyWord*)osMemoryManager->Allocate(iSpace, PERMISSION_READ|PERMISSION_EXEC);
32 -
33 - if (bottom == 0)
34 - return false;
35 -@@ -359,7 +359,7 @@
36 - // Allocate the memory itself.
37 - size_t iSpace = size*sizeof(PolyWord);
38 - space->bottom =
39 -- (PolyWord*)osMemoryManager->Allocate(iSpace, PERMISSION_READ|PERMISSION_WRITE|PERMISSION_EXEC);
40 -+ (PolyWord*)osMemoryManager->Allocate(iSpace, PERMISSION_READ|PERMISSION_EXEC);
41 -
42 - if (space->bottom == 0)
43 - {
44 -@@ -728,7 +728,7 @@
45 - LocalMemSpace *space = lSpaces[i];
46 - if (! space->isMutable)
47 - osMemoryManager->SetPermissions(space->bottom, (char*)space->top - (char*)space->bottom,
48 -- on ? PERMISSION_READ|PERMISSION_EXEC : PERMISSION_READ|PERMISSION_EXEC|PERMISSION_WRITE);
49 -+ on ? PERMISSION_READ|PERMISSION_EXEC : PERMISSION_READ|PERMISSION_WRITE);
50 - }
51 - }
52 - }