void-packages/srcpkgs/posixovl/patches/musl.patch
Đoàn Trần Công Danh 49cb564d14 srcpkgs/p*: convert patches to -Np1
* par is kept at -Np0

```sh
git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" |
while read template; do
	for p in ${template%/template}/patches/*; do
		sed -i '
			\,^[+-][+-][+-] /dev/null,b
			/^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b
			s,^[*][*][*] ,&a/,
			/^--- /{
				s,\(^--- \)\(./\)*,\1a/,
				s,[.-][Oo][Rr][Ii][Gg]\([	/]\),\1,
				s/[.-][Oo][Rr][Ii][Gg]$//
				s/[.]patched[.]\([^.]\)/.\1/
				h
			}
			/^+++ -/{
				g
				s/^--- a/+++ b/
				b
			}
			s,\(^+++ \)\(./\)*,\1b/,
		' "$p"
	done
	sed -i '/^patch_args=/d' $template
done
```
2021-06-20 13:17:29 +07:00

17 lines
404 B
Diff

From: Nathan Owens <ndowens04@gmail.com>
On musl-based systems, <string.h> causes redefintions
---
diff --git posixovl.c posixovl.c
index ae64f21..04e41fb 100644
--- a/posixovl.c
+++ b/posixovl.c
@@ -30,7 +30,9 @@
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
+#if defined(__GLIBC__)
#include <string.h>
+#endif
#include <unistd.h>
#ifdef HAVE_XATTR_XATTR_H
# include <attr/xattr.h>