diff options
-rw-r--r-- | gentoobrowse/src/Jamfile.jam | 6 | ||||
-rw-r--r-- | gentoobrowse/src/test.cpp | 4 |
2 files changed, 4 insertions, 6 deletions
diff --git a/gentoobrowse/src/Jamfile.jam b/gentoobrowse/src/Jamfile.jam index 80fbed7..0c1f761 100644 --- a/gentoobrowse/src/Jamfile.jam +++ b/gentoobrowse/src/Jamfile.jam @@ -11,8 +11,7 @@ lib adhocutil ; lib tidy ; lib Ice : : <name>Ice++11 ; lib pthread ; -lib boost_system ; -lib boost_filesystem ; +lib stdc++fs ; lib slicer ; lib slicer-json ; lib slicer-xml ; @@ -42,7 +41,6 @@ lib icespider : : <library>Ice <library>pthread <library>slicer - <library>boost_system ; alias gentoobrowse : @@ -80,7 +78,7 @@ run gentoobrowse : : : <slicer>yes - <library>boost_filesystem + <library>stdc++fs <library>tidy <library>../..//libxmlpp <library>icespider-testing diff --git a/gentoobrowse/src/test.cpp b/gentoobrowse/src/test.cpp index cd613ff..edb0731 100644 --- a/gentoobrowse/src/test.cpp +++ b/gentoobrowse/src/test.cpp @@ -3,7 +3,7 @@ #include <core.h> #include <definedDirs.h> -#include <boost/filesystem/operations.hpp> +#include <filesystem> #include <testRequest.h> #include <tidy.h> #include <libxml++/parsers/domparser.h> @@ -104,7 +104,7 @@ class ChromiumRequestAtom : public ChromiumRequest { BOOST_AUTO_TEST_CASE( cd ) { - boost::filesystem::current_path(rootDir.parent_path()); + std::filesystem::current_path(rootDir.parent_path()); } BOOST_FIXTURE_TEST_SUITE(ta, CoreWithDefaultRouter); |