However, the test code graphviz.cpp, which has the lines:
std::ifstream in(filename.c_str());
BOOST_REQUIRE(in);
Graph g;
dynamic_properties dp;
dp.property("id", get(vertex_name, g));
dp.property("weight", get(edge_weight, g));
BOOST_CHECK(read_graphviz(in, g, dp, "id"));
compiles, links, and runs just fine.
I also tried (desperation) building an earlier version of boost -- 1.34.1 -- with the same results.
Any ideas what I'm missing and how I might fix it, or what I need to read to find out, would be appreciated.