0001-http-add-missing-header-bootlegged-by-boost-1-72.patch 863 B

12345678910111213141516171819202122232425262728
  1. From a5929130223973636f3fd25fbfaf2953f2ec96a9 Mon Sep 17 00:00:00 2001
  2. From: Jan Beich <jbeich@FreeBSD.org>
  3. Date: Fri, 25 Oct 2019 13:05:17 +0000
  4. Subject: [PATCH] http: add missing header bootlegged by boost < 1.72
  5. httpserver.cpp:74:10: error: no template named 'deque' in namespace 'std'
  6. std::deque<std::unique_ptr<WorkItem>> queue;
  7. ~~~~~^
  8. [Retrieved from:
  9. https://github.com/bitcoin/bitcoin/commit/a5929130223973636f3fd25fbfaf2953f2ec96a9]
  10. Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
  11. ---
  12. src/httpserver.cpp | 1 +
  13. 1 file changed, 1 insertion(+)
  14. diff --git a/src/httpserver.cpp b/src/httpserver.cpp
  15. index 81137771871f..d9c711332358 100644
  16. --- a/src/httpserver.cpp
  17. +++ b/src/httpserver.cpp
  18. @@ -15,6 +15,7 @@
  19. #include <sync.h>
  20. #include <ui_interface.h>
  21. +#include <deque>
  22. #include <memory>
  23. #include <stdio.h>
  24. #include <stdlib.h>