summaryrefslogtreecommitdiffstats
path: root/src/lib/eval
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/eval')
-rw-r--r--src/lib/eval/eval_context.cc2
-rw-r--r--src/lib/eval/eval_log.cc2
-rw-r--r--src/lib/eval/evaluate.cc2
-rw-r--r--src/lib/eval/lexer.cc2
-rw-r--r--src/lib/eval/parser.cc2
-rw-r--r--src/lib/eval/tests/run_unittests.cc2
-rw-r--r--src/lib/eval/token.cc2
7 files changed, 14 insertions, 0 deletions
diff --git a/src/lib/eval/eval_context.cc b/src/lib/eval/eval_context.cc
index 562a67481b..06ba3abe7c 100644
--- a/src/lib/eval/eval_context.cc
+++ b/src/lib/eval/eval_context.cc
@@ -4,6 +4,8 @@
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#include <config.h>
+
#include <dhcp/dhcp6.h>
#include <dhcp/option.h>
#include <dhcp/option_definition.h>
diff --git a/src/lib/eval/eval_log.cc b/src/lib/eval/eval_log.cc
index fcbeab051a..6492ad69c7 100644
--- a/src/lib/eval/eval_log.cc
+++ b/src/lib/eval/eval_log.cc
@@ -6,6 +6,8 @@
/// Defines the logger used by the Eval (classification) code
+#include <config.h>
+
#include <eval/eval_log.h>
namespace isc {
diff --git a/src/lib/eval/evaluate.cc b/src/lib/eval/evaluate.cc
index dbc39c54cf..f2cadce925 100644
--- a/src/lib/eval/evaluate.cc
+++ b/src/lib/eval/evaluate.cc
@@ -4,6 +4,8 @@
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#include <config.h>
+
#include <eval/evaluate.h>
namespace isc {
diff --git a/src/lib/eval/lexer.cc b/src/lib/eval/lexer.cc
index 52e6438dba..80653ce429 100644
--- a/src/lib/eval/lexer.cc
+++ b/src/lib/eval/lexer.cc
@@ -294,6 +294,8 @@
/* begin standard C headers. */
/* %if-c-only */
+#include <config.h>
+
#include <stdio.h>
#include <string.h>
#include <errno.h>
diff --git a/src/lib/eval/parser.cc b/src/lib/eval/parser.cc
index 3d95cddcea..2e73eaa1c1 100644
--- a/src/lib/eval/parser.cc
+++ b/src/lib/eval/parser.cc
@@ -45,6 +45,8 @@
# endif
# endif
+#include <config.h>
+
#include "parser.h"
// User implementation prologue.
diff --git a/src/lib/eval/tests/run_unittests.cc b/src/lib/eval/tests/run_unittests.cc
index fbc187c9ca..08f04d1ba9 100644
--- a/src/lib/eval/tests/run_unittests.cc
+++ b/src/lib/eval/tests/run_unittests.cc
@@ -4,6 +4,8 @@
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#include <config.h>
+
#include <log/logger_support.h>
#include <gtest/gtest.h>
diff --git a/src/lib/eval/token.cc b/src/lib/eval/token.cc
index 6356cffd34..21fdbd1f6e 100644
--- a/src/lib/eval/token.cc
+++ b/src/lib/eval/token.cc
@@ -4,6 +4,8 @@
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#include <config.h>
+
#include <eval/token.h>
#include <eval/eval_log.h>
#include <eval/eval_context.h>