head 1.1; access; symbols pkgsrc-2026Q1:1.1.0.16 pkgsrc-2026Q1-base:1.1 pkgsrc-2025Q4:1.1.0.14 pkgsrc-2025Q4-base:1.1 pkgsrc-2025Q3:1.1.0.12 pkgsrc-2025Q3-base:1.1 pkgsrc-2025Q2:1.1.0.10 pkgsrc-2025Q2-base:1.1 pkgsrc-2025Q1:1.1.0.8 pkgsrc-2025Q1-base:1.1 pkgsrc-2024Q4:1.1.0.6 pkgsrc-2024Q4-base:1.1 pkgsrc-2024Q3:1.1.0.4 pkgsrc-2024Q3-base:1.1 pkgsrc-2024Q2:1.1.0.2 pkgsrc-2024Q2-base:1.1; locks; strict; comment @// @; 1.1 date 2024.04.21.17.28.32; author adam; state Exp; branches; next ; commitid fmUMM5HV0kpug27F; desc @@ 1.1 log @lucene++: updated to 3.0.9 3.0.9 Unknown changes @ text @$NetBSD$ Fix build with newer boost. --- src/core/util/FileUtils.cpp.orig 2024-04-21 17:22:39.775305801 +0000 +++ src/core/util/FileUtils.cpp @@@@ -5,7 +5,7 @@@@ ///////////////////////////////////////////////////////////////////////////// #include "LuceneInc.h" -#include +#include #include #include #include "LuceneThread.h" @@@@ -128,12 +128,12 @@@@ String joinPath(const String& path, cons } String extractPath(const String& path) { - boost::filesystem::wpath parentPath(path.c_str()); + boost::filesystem::path parentPath(path.c_str()); return parentPath.parent_path().wstring().c_str(); } String extractFile(const String& path) { - boost::filesystem::wpath fileName(path.c_str()); + boost::filesystem::path fileName(path.c_str()); return fileName.filename().wstring().c_str(); } @