forked from openwrt/openwrt
-
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.
- fix compilation w. Kernel 4.6 due to hash->shash crypto API - remove a patch integrated upstream - remove unrecognized configure option removed upstream in 2010 commit 40d0345f1ed02de183b13a6ce38847bc1f4ac48e Signed-off-by: Dirk Neukirchen <[email protected]>
- Loading branch information
1 parent
fef30a4
commit bd1c320
Showing
3 changed files
with
8 additions
and
60 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
51 changes: 0 additions & 51 deletions
51
...utils/xtables-addons/patches/001-build-fix-configure-compatiblity-with-POSIX-shells.patch
This file was deleted.
Oops, something went wrong.
12 changes: 6 additions & 6 deletions
12
package/network/utils/xtables-addons/patches/002-fix-kernel-version-detection.patch
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,11 +1,11 @@ | ||
--- a/configure.ac | ||
+++ b/configure.ac | ||
@@ -44,7 +44,7 @@ regular_CFLAGS="-Wall -Waggregate-return -Wmissing-declarations \ | ||
@@ -44,7 +44,7 @@ regular_CFLAGS="-Wall -Waggregate-return | ||
|
||
if test -n "$kbuilddir"; then | ||
AC_MSG_CHECKING([kernel version that we will build against]) | ||
- krel="$(make -sC "$kbuilddir" M=$PWD kernelrelease | $AWK -v 'FS=[[^0-9.]]' '{print $1; exit}')"; | ||
+ krel="$(make -sC "$kbuilddir" M=$PWD kernelversion | $AWK -v 'FS=[[^0-9.]]' '{print $1; exit}')"; | ||
save_IFS=$IFS; | ||
IFS='.'; | ||
set x $krel; | ||
- krel="$(make -sC "$kbuilddir" M=$PWD kernelrelease | $AWK -v 'FS=[[^0-9.]]' '{print $1; exit}')" | ||
+ krel="$(make -sC "$kbuilddir" M=$PWD kernelversion | $AWK -v 'FS=[[^0-9.]]' '{print $1; exit}')" | ||
save_IFS="$IFS" | ||
IFS='.' | ||
set x $krel |