forked from coolsnowwolf/lede
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[bot] AutoMerging: merge all upstream's changes:
* https://github.com/coolsnowwolf/lede: (30 commits) netfilter.mk : add ip6table mangle depend Revert "tools/meson: update to 0.63.1" (coolsnowwolf#10214) tools/meson: update to 0.63.1 tools/expat: update to 2.4.9 ccache: update to 4.6.3 toolchain/gdb: fix expat location toolchain: gdb: update to 12.1 tools/zstd: update to 1.5.2 tools/zlib: bump to latest stable release 1.2.12 (CVE-2018-25032) tools/sstrip: update to 3.2 tools/pkgconf: update to 1.9.3 pkg-config: always use correct path for pkg-config.real tools/pkgconf: add PKG_CONFIG_EXTRAARGS for additional arguments tools/pkgconf: update to 1.8.0 tools: mtd-utils: Update to version 2.1.4 tools/mklibs: update to 0.1.45 tools/meson: update to 0.61.5 tools/meson: update to 0.61.4 firmware-utils: update to git HEAD tools/fakeroot: update to 1.29 ...
- Loading branch information
Showing
42 changed files
with
366 additions
and
389 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,21 @@ | ||
diff -urN bc-1.06.95/Makefile.am bc-1.06.95.new/Makefile.am | ||
--- bc-1.06.95/Makefile.am 2005-05-27 01:05:41.000000000 +0100 | ||
+++ bc-1.06.95.new/Makefile.am 2013-07-09 09:33:31.521490710 +0100 | ||
--- a/Makefile.am | ||
+++ b/Makefile.am | ||
@@ -1,6 +1,6 @@ | ||
## Process this file with automake to produce Makefile.in | ||
|
||
-SUBDIRS = lib bc dc doc | ||
+SUBDIRS = lib bc dc | ||
|
||
MAINTAINERCLEANFILES = aclocal.m4 config.h.in configure Makefile.in \ | ||
stamp-h $(distdir).tar.gz h/number.h depcomp missing | ||
diff -urN bc-1.06.95/Makefile.in bc-1.06.95.new/Makefile.in | ||
--- bc-1.06.95/Makefile.in 2006-09-05 03:39:30.000000000 +0100 | ||
+++ bc-1.06.95.new/Makefile.in 2013-07-09 09:33:28.565490767 +0100 | ||
@@ -149,7 +149,7 @@ | ||
sharedstatedir = @sharedstatedir@ | ||
sysconfdir = @sysconfdir@ | ||
target_alias = @target_alias@ | ||
stamp-h $(distdir).tar.gz h/number.h depcomp missing \ | ||
--- a/Makefile.in | ||
+++ b/Makefile.in | ||
@@ -288,7 +288,7 @@ target_alias = @target_alias@ | ||
top_build_prefix = @top_build_prefix@ | ||
top_builddir = @top_builddir@ | ||
top_srcdir = @top_srcdir@ | ||
-SUBDIRS = lib bc dc doc | ||
+SUBDIRS = lib bc dc | ||
MAINTAINERCLEANFILES = aclocal.m4 config.h.in configure Makefile.in \ | ||
stamp-h $(distdir).tar.gz h/number.h depcomp missing | ||
|
||
stamp-h $(distdir).tar.gz h/number.h depcomp missing \ | ||
bc/libmath.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- a/bc/fix-libmath_h | ||
+++ b/bc/fix-libmath_h | ||
@@ -1,9 +1,9 @@ | ||
-ed libmath.h <<EOS-EOS | ||
-1,1s/^/{"/ | ||
-1,\$s/\$/",/ | ||
-2,\$s/^/"/ | ||
-\$,\$d | ||
-\$,\$s/,\$/,0}/ | ||
-w | ||
-q | ||
-EOS-EOS | ||
+#! /bin/bash | ||
+sed -e '1 s/^/{"/' \ | ||
+ -e 's/$/",/' \ | ||
+ -e '2,$ s/^/"/' \ | ||
+ -e '$ d' \ | ||
+ -i libmath.h | ||
+ | ||
+sed -e '$ s/$/0}/' \ | ||
+ -i libmath.h | ||
--- a/configure | ||
+++ b/configure | ||
@@ -5288,7 +5288,7 @@ case $bcle-$bcrl-$LEX in | ||
?-?-flex) | ||
LEX="flex -I -8" ;; | ||
?-y-*) | ||
- as_fn_error $? "readline works only with flex." "$LINENO" 5 ;; | ||
+ : ;; # as_fn_error $? "readline works only with flex." "$LINENO" 5 ;; | ||
esac | ||
|
||
case $LEX-`uname -s` in |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- a/bc/execute.c | ||
+++ b/bc/execute.c | ||
@@ -595,7 +595,7 @@ input_char (void) | ||
if (in_ch == '.' || in_ch == '+' || in_ch == '-') | ||
return (in_ch); | ||
if (in_ch <= ' ') | ||
- return (' '); | ||
+ return (':'); | ||
|
||
return (':'); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 0 additions & 27 deletions
27
tools/dosfstools/patches/0002-Switch-to-AC_CHECK_LIB-for-iconv-library-linking.patch
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.