Add support for libproj >=8
This commit is contained in:
parent
b75737fd6a
commit
554556e4d5
1 changed files with 7 additions and 2 deletions
|
@ -39,9 +39,14 @@ MAPNIK_DISABLE_WARNING_POP
|
|||
|
||||
|
||||
// fwd decl
|
||||
#if PROJ_VERSION_MAJOR >= 8
|
||||
struct pj_ctx;
|
||||
using PJ_CONTEXT = struct pj_ctx;
|
||||
#else
|
||||
struct projCtx_t;
|
||||
struct PJconsts;
|
||||
using PJ_CONTEXT = struct projCtx_t;
|
||||
#endif
|
||||
struct PJconsts;
|
||||
using PJ = struct PJconsts;
|
||||
|
||||
namespace mapnik {
|
||||
|
|
Loading…
Reference in a new issue