From: Otto Moerbeek Date: Wed, 17 Dec 2025 14:14:37 +0000 (+0100) Subject: Don't include filesystem if not needed, it might not be available X-Git-Tag: rec-5.4.0-beta1~56^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=12c56689f999a32760da45e07783d3aee788a8fb;p=thirdparty%2Fpdns.git Don't include filesystem if not needed, it might not be available Signed-off-by: Otto Moerbeek --- diff --git a/pdns/webserver.cc b/pdns/webserver.cc index 77f8719f04..b460af629b 100644 --- a/pdns/webserver.cc +++ b/pdns/webserver.cc @@ -39,9 +39,12 @@ #include #include #include + +#if !defined(RUST_WS) #include namespace filesystem = std::filesystem; +#endif json11::Json HttpRequest::json() {