Le Mon, Feb 06, 2023 at 11:17:14AM +0100, Landry Breuil a écrit :
> Le Mon, Feb 06, 2023 at 11:10:20AM +0100, Theo Buehler a écrit :
> > > technically, abseil is *not* a bdep for mapserver, but apparently
> > > this could also be fallout of the nlohmann-json update ? mapserver
> > > bundles 3.10.5.
> >
> > It builds fine with the old abseil-cpp.
>
> And it builds fine without abseil-cpp installed..
ah, i think i found it..
./flatgeobuf/include/flatbuffers/base.h: // Check for absl::string_view
./flatgeobuf/include/flatbuffers/base.h: #elif
__has_include("absl/strings/string_view.h")
./flatgeobuf/include/flatbuffers/base.h: #include
"absl/strings/string_view.h"
./flatgeobuf/include/flatbuffers/base.h: typedef absl::string_view
string_view;
it comes from flatgeobuf support. Guess this has to be patched out to
make sure absl isnt picked randomly at build time if found.
Landry