Replace remaining MAPNIK_USE_PROJ4 -> MAPNIK_USE_PROJ

This commit is contained in:
Artem Pavlenko 2021-03-24 11:22:32 +00:00
parent b24fc9a8da
commit f82ed08d6a
2 changed files with 4 additions and 4 deletions

View file

@ -1185,7 +1185,7 @@ SECTION("test_projection_4326_3857 - Geometry Collection Variant Object") {
}
} // END SECTION
#ifdef MAPNIK_USE_PROJ4
#ifdef MAPNIK_USE_PROJ
SECTION("test_projection_4269_3857 - Line_String Geometry Object") {
using namespace mapnik::geometry;
mapnik::projection source("epsg:4269");
@ -1305,6 +1305,6 @@ SECTION("test_projection_4269_3857 - Point Geometry Object") {
}
} // End Section
#endif // MAPNIK_USE_PROJ4
#endif // MAPNIK_USE_PROJ
} // End Testcase

View file

@ -11,7 +11,7 @@
TEST_CASE("transform_path_adapter") {
#ifdef MAPNIK_USE_PROJ4
#ifdef MAPNIK_USE_PROJ
SECTION("polygon closing - epsg 2330") {
mapnik::geometry::polygon<double> g;
g.emplace_back();
@ -116,5 +116,5 @@ SECTION("polygon closing - epsg 32633") {
CHECK( y == 0 );
}
#endif //MAPNIK_USE_PROJ4
#endif //MAPNIK_USE_PROJ
}