861ac185a6
```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 ```
12 lines
319 B
Diff
12 lines
319 B
Diff
Need to explicitly include stdint.h for musl libc.
|
|
|
|
--- a/libffado/ffado.h.in 2016-10-03 18:42:35.335302853 +0200
|
|
+++ b/libffado/ffado.h.in 2016-10-03 18:43:56.999358778 +0200
|
|
@@ -31,6 +31,7 @@
|
|
#define FFADO_MAX_NAME_LEN 256
|
|
|
|
#include <stdlib.h>
|
|
+#include <stdint.h>
|
|
|
|
#define FFADO_STREAMING_MAX_URL_LENGTH 2048
|
|
|