04b9978a29
* wine 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 ```
23 lines
497 B
Diff
23 lines
497 B
Diff
http://bugs.gentoo.org/333301
|
|
|
|
--- a/ipstreams/wvunixdgsocket.cc
|
|
+++ b/ipstreams/wvunixdgsocket.cc
|
|
@@ -1,5 +1,5 @@
|
|
#include "wvunixdgsocket.h"
|
|
-#ifdef MACOS
|
|
+#if defined(MACOS) || defined(__GNUC__)
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#endif
|
|
--- a/streams/wvatomicfile.cc
|
|
+++ b/streams/wvatomicfile.cc
|
|
@@ -11,7 +11,8 @@
|
|
#include "wvfileutils.h"
|
|
#include "wvstrutils.h"
|
|
|
|
-#ifdef MACOS
|
|
+#if defined(MACOS) || defined(__GNUC__)
|
|
+#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#endif
|
|
|