From: Christian Hofstaedtler Date: Sat, 5 Oct 2013 16:13:27 +0000 (+0200) Subject: move #include ws.hh to .cc file X-Git-Tag: rec-3.6.0-rc1~416^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b653a73dc3b479606f0a2782b0b9b35e94f33946;p=pdns move #include ws.hh to .cc file Makes for faster incremental builds. --- diff --git a/pdns/common_startup.cc b/pdns/common_startup.cc index 97d3f418c..d021c31b0 100644 --- a/pdns/common_startup.cc +++ b/pdns/common_startup.cc @@ -16,6 +16,8 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include "common_startup.hh" +#include "ws.hh" + bool g_anyToTcp; bool g_addSuperfluousNSEC3; typedef Distributor DNSDistributor; diff --git a/pdns/common_startup.hh b/pdns/common_startup.hh index 95ef5f8cc..6cbd312bb 100644 --- a/pdns/common_startup.hh +++ b/pdns/common_startup.hh @@ -31,8 +31,6 @@ #include "nameserver.hh" #include "statbag.hh" #include "tcpreceiver.hh" -#include "webserver.hh" -#include "ws.hh" extern ArgvMap theArg; extern StatBag S; //!< Statistics are gathered across PDNS via the StatBag class S