e2a21ccfd6
```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 ```
14 lines
352 B
Diff
14 lines
352 B
Diff
$NetBSD: patch-tools_strutil.h,v 1.1 2012/12/17 03:37:20 dholland Exp $
|
|
|
|
add <cstring> for strcasecmp.
|
|
|
|
--- a/src/tools/strutil.h~ 2006-12-27 11:04:05.000000000 +0000
|
|
+++ b/src/tools/strutil.h
|
|
@@ -23,6 +23,7 @@ This is part of a toolkit used to assist
|
|
#define STRUTIL_H
|
|
|
|
#include <string>
|
|
+#include <cstring>
|
|
#include <vector>
|
|
#include <cctype>
|
|
|