commit | a997d29622caad2d4141185fef218ff236a5d696 | [log] [tgz] |
---|---|---|
author | Davide Pesavento <davide.pesavento@lip6.fr> | Thu Aug 24 20:16:59 2017 -0400 |
committer | Davide Pesavento <davide.pesavento@lip6.fr> | Fri Aug 25 23:30:24 2017 -0400 |
tree | fe87c1b6744f96ab69f0ac4720825686489cbb48 | |
parent | c8f17e51ede5f4d71a7f1ded3a92333d611bf182 [diff] |
Fix compilation with Boost 1.65.0 Change-Id: Ib88b7e13bddb1728dd882c086e97edffdd696f0d Refs: #4258
diff --git a/tools/ndn-autoconfig/dns-srv.cpp b/tools/ndn-autoconfig/dns-srv.cpp index 5bfa3d5..f432e2c 100644 --- a/tools/ndn-autoconfig/dns-srv.cpp +++ b/tools/ndn-autoconfig/dns-srv.cpp
@@ -34,6 +34,8 @@ #include <arpa/nameser_compat.h> #endif +#include <iostream> + namespace ndn { namespace tools { namespace autoconfig {
diff --git a/tools/ndn-autoconfig/guess-from-identity-name.cpp b/tools/ndn-autoconfig/guess-from-identity-name.cpp index 8ef112d..9c50c20 100644 --- a/tools/ndn-autoconfig/guess-from-identity-name.cpp +++ b/tools/ndn-autoconfig/guess-from-identity-name.cpp
@@ -25,9 +25,12 @@ #include "guess-from-identity-name.hpp" #include "dns-srv.hpp" + #include <ndn-cxx/security/pib/identity.hpp> #include <ndn-cxx/security/pib/pib.hpp> +#include <sstream> + namespace ndn { namespace tools { namespace autoconfig {
diff --git a/tools/ndn-autoconfig/ndn-fch-discovery.cpp b/tools/ndn-autoconfig/ndn-fch-discovery.cpp index 01c169e..395d9f9 100644 --- a/tools/ndn-autoconfig/ndn-fch-discovery.cpp +++ b/tools/ndn-autoconfig/ndn-fch-discovery.cpp
@@ -24,8 +24,11 @@ */ #include "ndn-fch-discovery.hpp" -#include <boost/regex.hpp> + #include <boost/algorithm/string.hpp> +#include <boost/regex.hpp> + +#include <sstream> namespace ndn { namespace tools {
diff --git a/tools/ndn-autoconfig/stage.hpp b/tools/ndn-autoconfig/stage.hpp index 015153d..f7f358e 100644 --- a/tools/ndn-autoconfig/stage.hpp +++ b/tools/ndn-autoconfig/stage.hpp
@@ -27,9 +27,12 @@ #define NFD_TOOLS_NDN_AUTOCONFIG_STAGE_HPP #include "core/common.hpp" + #include <ndn-cxx/net/face-uri.hpp> #include <ndn-cxx/util/signal.hpp> +#include <iostream> + namespace ndn { namespace tools { namespace autoconfig {