diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-02 18:53:31 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2017-07-03 00:05:18 +0200 |
commit | 4e7522aacd4e76c0ab5e602ade9a60f5a4473939 (patch) | |
tree | e8f6e322d68166c9699ba6a65786a8f43ce4e26c /package/openssh/0004-fix-howmany-include.patch | |
parent | 50368ac2ab63dff420a99ef2182803466a2b741f (diff) | |
download | buildroot-4e7522aacd4e76c0ab5e602ade9a60f5a4473939.tar.gz buildroot-4e7522aacd4e76c0ab5e602ade9a60f5a4473939.zip |
openssh: don't download patch from Github
Patches downloaded from Github are not stable, so bring them in the
tree.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/openssh/0004-fix-howmany-include.patch')
-rw-r--r-- | package/openssh/0004-fix-howmany-include.patch | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/package/openssh/0004-fix-howmany-include.patch b/package/openssh/0004-fix-howmany-include.patch new file mode 100644 index 0000000000..7a2a8e3202 --- /dev/null +++ b/package/openssh/0004-fix-howmany-include.patch @@ -0,0 +1,49 @@ +Update patch from 2fea21799223d41605556858a95b55e69e9960ca to openssh +version 6.8p1 + +Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> + +diff -Nura openssh-6.8p1.orig/openbsd-compat/bsd-poll.c openssh-6.8p1/openbsd-compat/bsd-poll.c +--- openssh-6.8p1.orig/openbsd-compat/bsd-poll.c 2015-03-18 07:11:46.184620677 -0300 ++++ openssh-6.8p1/openbsd-compat/bsd-poll.c 2015-03-18 07:12:29.120094555 -0300 +@@ -19,6 +19,7 @@ + #include "includes.h" + #if !defined(HAVE_POLL) + ++#include <sys/param.h> + #include <sys/types.h> + #include <sys/time.h> + #ifdef HAVE_SYS_SELECT_H +diff -Nura openssh-6.8p1.orig/sshd.c openssh-6.8p1/sshd.c +--- openssh-6.8p1.orig/sshd.c 2015-03-18 07:11:46.187620780 -0300 ++++ openssh-6.8p1/sshd.c 2015-03-18 07:13:11.889562735 -0300 +@@ -44,6 +44,7 @@ + + #include "includes.h" + ++#include <sys/param.h> + #include <sys/types.h> + #include <sys/ioctl.h> + #include <sys/socket.h> +diff -Nura openssh-6.8p1.orig/ssh-keyscan.c openssh-6.8p1/ssh-keyscan.c +--- openssh-6.8p1.orig/ssh-keyscan.c 2015-03-18 07:11:46.180620539 -0300 ++++ openssh-6.8p1/ssh-keyscan.c 2015-03-18 07:13:32.092256248 -0300 +@@ -9,6 +9,7 @@ + + #include "includes.h" + ++#include <sys/param.h> + #include <sys/types.h> + #include "openbsd-compat/sys-queue.h" + #include <sys/resource.h> +diff -Nura openssh-6.8p1.orig/ssh-pkcs11-helper.c openssh-6.8p1/ssh-pkcs11-helper.c +--- openssh-6.8p1.orig/ssh-pkcs11-helper.c 2015-03-18 07:11:46.182620608 -0300 ++++ openssh-6.8p1/ssh-pkcs11-helper.c 2015-03-18 07:13:43.620651993 -0300 +@@ -17,6 +17,7 @@ + + #include "includes.h" + ++#include <sys/param.h> + #include <sys/types.h> + #ifdef HAVE_SYS_TIME_H + # include <sys/time.h> |