You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
693 B

  1. From fcba0df068d07ee7a26ec9d891220233d7d17dfd Mon Sep 17 00:00:00 2001
  2. From: Paul Holzinger <paul.holzinger@web.de>
  3. Date: Wed, 6 Jan 2021 23:32:40 +0100
  4. Subject: [PATCH] Fix build for mips architecture followup
  5. Followup to commit (1ad796677e1c). The build on mips is still
  6. failing because SIGWINCH was not defined in the signal pkg.
  7. Signed-off-by: Paul Holzinger <paul.holzinger@web.de>
  8. ---
  9. pkg/signal/signal_linux_mipsx.go | 2 ++
  10. 1 file changed, 2 insertions(+)
  11. --- a/pkg/signal/signal_linux_mipsx.go
  12. +++ b/pkg/signal/signal_linux_mipsx.go
  13. @@ -19,6 +19,8 @@ import (
  14. const (
  15. sigrtmin = 34
  16. sigrtmax = 127
  17. +
  18. + SIGWINCH = syscall.SIGWINCH
  19. )
  20. // signalMap is a map of Linux signals.