build: Upgrade waf to version 2.0.6
This commit also includes:
- cleanup of build scripts
- replacing log4cxx with ndn-cxx logging facility
Change-Id: I96fd673a3cd2e06061e9efc1a7891e41cf97ea4f
diff --git a/tests/unit/clients/iterative-query-controller.cpp b/tests/unit/clients/iterative-query-controller.cpp
index 307ce8b..65ab32b 100644
--- a/tests/unit/clients/iterative-query-controller.cpp
+++ b/tests/unit/clients/iterative-query-controller.cpp
@@ -1,6 +1,6 @@
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
- * Copyright (c) 2014-2017, Regents of the University of California.
+ * Copyright (c) 2014-2018, Regents of the University of California.
*
* This file is part of NDNS (Named Data Networking Domain Name Service).
* See AUTHORS.md for complete list of NDNS authors and contributors.
@@ -27,8 +27,6 @@
namespace ndns {
namespace tests {
-NDNS_LOG_INIT("IterativeQueryControllerTest")
-
class QueryControllerFixture : public DbTestData
{
public:
@@ -87,7 +85,7 @@
time::milliseconds lifetime(4000);
bool hasDataBack = false;
- auto ctr = make_shared<ndns::IterativeQueryController>(
+ auto ctr = std::make_shared<ndns::IterativeQueryController>(
dstLabel, rrType, lifetime,
[&hasDataBack] (const Data&, const Response&) {
hasDataBack = true;