mirror of
https://git.freebsd.org/ports.git
synced 2025-05-19 18:43:13 -04:00
is being removed. No portrev bump needed since the kernel will continue to accept this flag for old binaries even after support for it in new binaries is removed. PR: 193961 Approved by: portmgr (antoine)
11 lines
438 B
C++
11 lines
438 B
C++
--- galerautils/src/gu_mmap.cpp.orig 2014-10-15 11:08:26.000000000 -0400
|
|
+++ galerautils/src/gu_mmap.cpp 2014-10-15 11:09:06.000000000 -0400
|
|
@@ -21,7 +21,7 @@
|
|
:
|
|
size (fd.size()),
|
|
ptr (mmap (NULL, size, PROT_READ|PROT_WRITE,
|
|
- MAP_SHARED|MAP_NORESERVE, fd.get(), 0)),
|
|
+ MAP_SHARED, fd.get(), 0)),
|
|
mapped (ptr != GU_MAP_FAILED)
|
|
{
|
|
if (!mapped)
|