aboutsummaryrefslogtreecommitdiff
path: root/bbot
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-05-01 19:33:47 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-05-01 19:33:47 +0300
commita8758228f4737b9b930986ed7be1c7148aae9810 (patch)
treeb91834baa1f8b497b9a5e26cce67248a20867036 /bbot
parent2a40615e322df66417f4066aa4c2d3175356b10f (diff)
Adapt to adding hxx extension for headers and lib prefix for library dir in libbutl
Diffstat (limited to 'bbot')
-rw-r--r--bbot/agent.cxx4
-rw-r--r--bbot/bootstrap-manifest.cxx4
-rw-r--r--bbot/bootstrap-manifest.hxx4
-rw-r--r--bbot/diagnostics.hxx2
-rw-r--r--bbot/machine-manifest.cxx6
-rw-r--r--bbot/machine-manifest.hxx2
-rw-r--r--bbot/types.hxx16
-rw-r--r--bbot/utility.hxx20
-rw-r--r--bbot/utility.txx6
-rw-r--r--bbot/version.hxx.in2
-rw-r--r--bbot/worker.cxx4
11 files changed, 35 insertions, 35 deletions
diff --git a/bbot/agent.cxx b/bbot/agent.cxx
index bb0ccb7..3ebbd2d 100644
--- a/bbot/agent.cxx
+++ b/bbot/agent.cxx
@@ -19,8 +19,8 @@
#include <chrono>
#include <iostream>
-#include <butl/pager>
-#include <butl/filesystem> // dir_iterator
+#include <libbutl/pager.hxx>
+#include <libbutl/filesystem.hxx> // dir_iterator
#include <libbbot/manifest.hxx>
diff --git a/bbot/bootstrap-manifest.cxx b/bbot/bootstrap-manifest.cxx
index ebbc7ce..e9697bd 100644
--- a/bbot/bootstrap-manifest.cxx
+++ b/bbot/bootstrap-manifest.cxx
@@ -4,8 +4,8 @@
#include <bbot/bootstrap-manifest.hxx>
-#include <butl/manifest-parser>
-#include <butl/manifest-serializer>
+#include <libbutl/manifest-parser.hxx>
+#include <libbutl/manifest-serializer.hxx>
using namespace butl;
diff --git a/bbot/bootstrap-manifest.hxx b/bbot/bootstrap-manifest.hxx
index 69fb358..6b56785 100644
--- a/bbot/bootstrap-manifest.hxx
+++ b/bbot/bootstrap-manifest.hxx
@@ -7,8 +7,8 @@
#include <map>
-#include <butl/manifest-forward>
-#include <butl/standard-version>
+#include <libbutl/manifest-forward.hxx>
+#include <libbutl/standard-version.hxx>
#include <bbot/types.hxx>
#include <bbot/utility.hxx>
diff --git a/bbot/diagnostics.hxx b/bbot/diagnostics.hxx
index 07052a0..bfeeb2a 100644
--- a/bbot/diagnostics.hxx
+++ b/bbot/diagnostics.hxx
@@ -5,7 +5,7 @@
#ifndef BBOT_DIAGNOSTICS_HXX
#define BBOT_DIAGNOSTICS_HXX
-#include <butl/diagnostics>
+#include <libbutl/diagnostics.hxx>
#include <bbot/types.hxx> // Note: not <bbot/utility>.
diff --git a/bbot/machine-manifest.cxx b/bbot/machine-manifest.cxx
index 54ed43f..dd3b7de 100644
--- a/bbot/machine-manifest.cxx
+++ b/bbot/machine-manifest.cxx
@@ -4,9 +4,9 @@
#include <bbot/machine-manifest.hxx>
-#include <butl/string-parser>
-#include <butl/manifest-parser>
-#include <butl/manifest-serializer>
+#include <libbutl/string-parser.hxx>
+#include <libbutl/manifest-parser.hxx>
+#include <libbutl/manifest-serializer.hxx>
using namespace butl;
diff --git a/bbot/machine-manifest.hxx b/bbot/machine-manifest.hxx
index fa6139f..efcdda4 100644
--- a/bbot/machine-manifest.hxx
+++ b/bbot/machine-manifest.hxx
@@ -7,7 +7,7 @@
#include <map>
-#include <butl/manifest-forward>
+#include <libbutl/manifest-forward.hxx>
#include <libbbot/manifest.hxx> // machine_header
diff --git a/bbot/types.hxx b/bbot/types.hxx
index 20f9f23..0ab6377 100644
--- a/bbot/types.hxx
+++ b/bbot/types.hxx
@@ -20,10 +20,10 @@
#include <stdexcept> // logic_error, invalid_argument, runtime_error
#include <system_error>
-#include <butl/path>
-#include <butl/optional>
-#include <butl/vector-view>
-#include <butl/small-vector>
+#include <libbutl/path.hxx>
+#include <libbutl/optional.hxx>
+#include <libbutl/vector-view.hxx>
+#include <libbutl/small-vector.hxx>
namespace bbot
{
@@ -63,20 +63,20 @@ namespace bbot
using std::system_error;
using io_error = std::ios_base::failure;
- // <butl/optional>
+ // <libbutl/optional.hxx>
//
using butl::optional;
using butl::nullopt;
- // <butl/vector-view>
+ // <libbutl/vector-view.hxx>
//
using butl::vector_view;
- // <butl/small-vector>
+ // <libbutl/small-vector.hxx>
//
using butl::small_vector;
- // <butl/path>
+ // <libbutl/path.hxx>
//
using butl::path;
using butl::dir_path;
diff --git a/bbot/utility.hxx b/bbot/utility.hxx
index f6f0349..73804a4 100644
--- a/bbot/utility.hxx
+++ b/bbot/utility.hxx
@@ -11,14 +11,14 @@
#include <cassert> // assert()
#include <iterator> // make_move_iterator()
-#include <butl/ft/lang>
+#include <libbutl/ft/lang.hxx>
-#include <butl/curl>
-#include <butl/process>
-#include <butl/process-io>
-#include <butl/utility> // casecmp(), reverse_iterate(), etc
-#include <butl/fdstream>
-#include <butl/filesystem>
+#include <libbutl/curl.hxx>
+#include <libbutl/process.hxx>
+#include <libbutl/process-io.hxx>
+#include <libbutl/utility.hxx> // casecmp(), reverse_iterate(), etc
+#include <libbutl/fdstream.hxx>
+#include <libbutl/filesystem.hxx>
#include <bbot/types.hxx>
#include <bbot/version.hxx>
@@ -35,7 +35,7 @@ namespace bbot
using std::to_string;
using std::stoull;
- // <butl/utility>
+ // <libbutl/utility.hxx>
//
using butl::casecmp;
using butl::reverse_iterate;
@@ -43,11 +43,11 @@ namespace bbot
using butl::exception_guard;
using butl::make_exception_guard;
- // <butl/fdstream>
+ // <libbutl/fdstream.hxx>
//
using butl::auto_fd;
- // <butl/filesystem>
+ // <libbutl/filesystem.hxx>
//
using butl::auto_rmdir;
using butl::auto_rmfile;
diff --git a/bbot/utility.txx b/bbot/utility.txx
index 519762b..688eb9c 100644
--- a/bbot/utility.txx
+++ b/bbot/utility.txx
@@ -4,10 +4,10 @@
#include <iostream> // cin
-#include <butl/fdstream>
+#include <libbutl/fdstream.hxx>
-#include <butl/manifest-parser>
-#include <butl/manifest-serializer>
+#include <libbutl/manifest-parser.hxx>
+#include <libbutl/manifest-serializer.hxx>
#include <bbot/diagnostics.hxx>
diff --git a/bbot/version.hxx.in b/bbot/version.hxx.in
index 9f451e8..2b8ca54 100644
--- a/bbot/version.hxx.in
+++ b/bbot/version.hxx.in
@@ -37,7 +37,7 @@
#define BBOT_SNAPSHOT $bbot.version.snapshot_sn$ULL
#define BBOT_SNAPSHOT_ID "$bbot.version.snapshot_id$"
-#include <butl/version>
+#include <libbutl/version.hxx>
$libbutl.check(LIBBUTL_VERSION, LIBBUTL_SNAPSHOT)$
diff --git a/bbot/worker.cxx b/bbot/worker.cxx
index 70440b0..acfff29 100644
--- a/bbot/worker.cxx
+++ b/bbot/worker.cxx
@@ -10,8 +10,8 @@
#include <iostream>
-#include <butl/pager>
-#include <butl/filesystem>
+#include <libbutl/pager.hxx>
+#include <libbutl/filesystem.hxx>
#include <libbbot/manifest.hxx>