diff options
author | Baruch Siach <baruch@tkos.co.il> | 2018-04-10 08:44:42 +0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-04-10 09:28:46 +0200 |
commit | a08cd50e98107b8f79d133c85a65187459614649 (patch) | |
tree | 39b8fdb67a88de003bb0b71bb1057c57219f21c6 /package/openssh/0005-openbsd-compat-bsd-getpagesize.c-include-includes.h-.patch | |
parent | 22a6e5da27888b8af76410aef287c33263e743f5 (diff) | |
download | buildroot-a08cd50e98107b8f79d133c85a65187459614649.tar.gz buildroot-a08cd50e98107b8f79d133c85a65187459614649.zip |
openssh: bump to version 7.7p1
Drop upstream patches, renumber the rest.
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'package/openssh/0005-openbsd-compat-bsd-getpagesize.c-include-includes.h-.patch')
-rw-r--r-- | package/openssh/0005-openbsd-compat-bsd-getpagesize.c-include-includes.h-.patch | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/package/openssh/0005-openbsd-compat-bsd-getpagesize.c-include-includes.h-.patch b/package/openssh/0005-openbsd-compat-bsd-getpagesize.c-include-includes.h-.patch deleted file mode 100644 index ce60072934..0000000000 --- a/package/openssh/0005-openbsd-compat-bsd-getpagesize.c-include-includes.h-.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 9a43657a3dcb868b4f36ade3aba5dcf0871fb412 Mon Sep 17 00:00:00 2001 -From: Peter Korsgaard <peter@korsgaard.com> -Date: Mon, 30 Oct 2017 23:36:56 +0100 -Subject: [PATCH] openbsd-compat/bsd-getpagesize.c: include includes.h for - config.h defines - -The configure script checks for getpagesize() and sets HAVE_GETPAGESIZE in -config.h, but bsd-getpagesize.c forgot to include includes.h (which -indirectly includes config.h) so the checks always fails, causing linker -issues when linking statically on systems with getpagesize(): - -http://autobuild.buildroot.net/results/8cc/8cc30818a400c7a392a3de787cabc9cd8425495f/build-end.log - -Fix it by including includes.h - -Signed-off-by: Peter Korsgaard <peter@korsgaard.com> ---- - openbsd-compat/bsd-getpagesize.c | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/openbsd-compat/bsd-getpagesize.c b/openbsd-compat/bsd-getpagesize.c -index 9daddfbd..416a8d4c 100644 ---- a/openbsd-compat/bsd-getpagesize.c -+++ b/openbsd-compat/bsd-getpagesize.c -@@ -1,5 +1,7 @@ - /* Placed in the public domain */ - -+#include "includes.h" -+ - #ifndef HAVE_GETPAGESIZE - - #include <unistd.h> --- -2.11.0 - |