pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

0ad: remove os_unix_uvm.cpp patch, doesn't fix build.



Module Name:	pkgsrc-wip
Committed By:	nikita <nikita%NetBSD.org@localhost>
Pushed By:	nikita
Date:		Wed May 3 22:14:56 2023 +0200
Changeset:	55e4a586aabdb38bbcafc1ab255c6086c8b9c4fb

Modified Files:
	0ad/distinfo
Removed Files:
	0ad/patches/patch-source_lib_sysdep_os_unix_uvm.cpp

Log Message:
0ad: remove os_unix_uvm.cpp patch, doesn't fix build.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=55e4a586aabdb38bbcafc1ab255c6086c8b9c4fb

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 0ad/distinfo                                       |  1 -
 .../patch-source_lib_sysdep_os_unix_uvm.cpp        | 23 ----------------------
 2 files changed, 24 deletions(-)

diffs:
diff --git a/0ad/distinfo b/0ad/distinfo
index 2c1cc4ac7f..8a5435ac1e 100644
--- a/0ad/distinfo
+++ b/0ad/distinfo
@@ -18,7 +18,6 @@ SHA1 (patch-libraries_source_spidermonkey_build.sh) = 34225c82659cc236bff076301d
 SHA1 (patch-source_graphics_TextureConverter.cpp) = d4e3920cd507468adc37dc92e27e6cbb50b5c5e2
 SHA1 (patch-source_lib_allocators_page__aligned.cpp) = c25054afd543a1a90530964a63b2b692b1687765
 SHA1 (patch-source_lib_secure__crt.cpp) = 1e56aa627c8f2343884968ab4ebd4b4eec73b777
-SHA1 (patch-source_lib_sysdep_os_unix_uvm.cpp) = 8c460a6ff1049dcf4f6709a1e25f0f3debc10ee8
 SHA1 (patch-source_network_StunClient.cpp) = 6267d44c3d0345d3e47c19746f105657ba984876
 SHA1 (patch-source_scriptinterface_ScriptTypes.h) = f2351c637ba7ed7a36b4399b6e89a0d8281c9ad4
 SHA1 (patch-source_third__party_mikktspace_weldmesh.cpp) = 35df7dd5d5d2aa784ef03599a47cc69982ebe332
diff --git a/0ad/patches/patch-source_lib_sysdep_os_unix_uvm.cpp b/0ad/patches/patch-source_lib_sysdep_os_unix_uvm.cpp
deleted file mode 100644
index a3a6dc8f17..0000000000
--- a/0ad/patches/patch-source_lib_sysdep_os_unix_uvm.cpp
+++ /dev/null
@@ -1,23 +0,0 @@
-$NetBSD$
-
-
---- source/lib/sysdep/os/unix/uvm.cpp.orig	2017-07-28 19:57:26 UTC
-+++ source/lib/sysdep/os/unix/uvm.cpp
-@@ -40,7 +40,7 @@ namespace vm {
- void* ReserveAddressSpace(size_t size, size_t UNUSED(commitSize), PageType UNUSED(pageType), int UNUSED(prot))
- {
- 	errno = 0;
--	void* p = mmap(0, size, PROT_NONE, mmap_flags|MAP_NORESERVE, -1, 0);
-+	void* p = mmap(0, size, PROT_NONE, mmap_flags, -1, 0);
- 	if(p == MAP_FAILED)
- 		return 0;
- 	return p;
-@@ -77,7 +77,7 @@ bool Commit(uintptr_t address, size_t size, PageType U
- bool Decommit(uintptr_t address, size_t size)
- {
- 	errno = 0;
--	if(mmap((void*)address, size, PROT_NONE, mmap_flags|MAP_NORESERVE|MAP_FIXED, -1, 0) == MAP_FAILED)
-+	if(mmap((void*)address, size, PROT_NONE, mmap_flags|MAP_FIXED, -1, 0) == MAP_FAILED)
- 		return false;
- 	return true;
- }


Home | Main Index | Thread Index | Old Index