mirror of
https://github.com/void-linux/void-packages.git
synced 2025-07-29 00:42:58 +02:00
xfsprogs: Patch to fix compilation issue on MIPS.
This commit is contained in:
parent
d0153b62cb
commit
32a4b57770
1 changed files with 26 additions and 0 deletions
26
srcpkgs/xfsprogs/patches/00-patch-for-mips.diff
Normal file
26
srcpkgs/xfsprogs/patches/00-patch-for-mips.diff
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
--- io/mmap.c
|
||||||
|
+++ io/mmap.c
|
||||||
|
@@ -189,7 +189,11 @@
|
||||||
|
prot |= PROT_EXEC;
|
||||||
|
break;
|
||||||
|
case 'S':
|
||||||
|
+ #ifdef MAP_SYNC
|
||||||
|
flags = MAP_SYNC | MAP_SHARED_VALIDATE;
|
||||||
|
+ #else
|
||||||
|
+ flags = MAP_SHARED_VALIDATE;
|
||||||
|
+ #endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
* If MAP_SYNC and MAP_SHARED_VALIDATE aren't defined
|
||||||
|
@@ -269,7 +273,11 @@
|
||||||
|
mapping->offset = offset;
|
||||||
|
mapping->name = filename;
|
||||||
|
mapping->prot = prot;
|
||||||
|
+ #ifdef MAP_SYNC
|
||||||
|
mapping->map_sync = (flags == (MAP_SYNC | MAP_SHARED_VALIDATE));
|
||||||
|
+ #else
|
||||||
|
+ mapping->map_sync = (flags == (MAP_SHARED_VALIDATE));
|
||||||
|
+ #endif
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue