7fc9190f0e
* gcc is kept at -Np0, because of void-cross ```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 ```
11 lines
476 B
Diff
11 lines
476 B
Diff
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -102,7 +102,7 @@ dnl We need libncurses
|
|
dnl
|
|
AC_DEFUN([AC_NCURSES_REQUIREMENTS],
|
|
[
|
|
- PKG_CHECK_MODULES(NCURSES, [ncurses >= 5], ncurses_has_pkgconfig=1, ncurses_has_pkgconfig=0)
|
|
+ PKG_CHECK_MODULES(NCURSES, [ncursesw >= 5], ncurses_has_pkgconfig=1, ncurses_has_pkgconfig=0)
|
|
if test x$ncurses_has_pkgconfig = x0; then
|
|
AC_PATH_PROG(NCURSES_CONFIG,ncurses6-config,false)
|
|
if test "$NCURSES_CONFIG" = false; then
|