Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main Repositories
otb
Commits
364475c9
Commit
364475c9
authored
11 years ago
by
Rashad Kanavath
Browse files
Options
Downloads
Patches
Plain Diff
BUG: Detect mapnik version and AGG header for version 2.2 and backwards
parent
37026272
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMake/ImportMapnik.cmake
+20
-7
20 additions, 7 deletions
CMake/ImportMapnik.cmake
with
20 additions
and
7 deletions
CMake/ImportMapnik.cmake
+
20
−
7
View file @
364475c9
...
...
@@ -69,20 +69,33 @@ if(OTB_USE_MAPNIK)
STRING
(
REGEX REPLACE
".*#define MAPNIK_MAJOR_VERSION ([0-9]+).*"
"
\\
1"
MAPNIK_MAJOR_VERSION
${
_mapnik_version_hpp_CONTENTS
}
)
STRING
(
REGEX REPLACE
".*#define MAPNIK_MINOR_VERSION ([0-9]+).*"
"
\\
1"
MAPNIK_MINOR_VERSION
${
_mapnik_version_hpp_CONTENTS
}
)
STRING
(
REGEX REPLACE
".*#define MAPNIK_PATCH_VERSION ([0-9]+).*"
"
\\
1"
MAPNIK_PATCH_VERSION
${
_mapnik_version_hpp_CONTENTS
}
)
SET
(
MAPNIK_VERSION
${
MAPNIK_MAJOR_VERSION
}
.
${
MAPNIK_MINOR_VERSION
}
.
${
MAPNIK_PATCH_VERSION
}
)
if
(
${
MAPNIK_MAJOR_VERSION
}
LESS
"2"
)
#make version number as in version.hpp of mapnik
#//#define MAPNIK_VERSION (MAPNIK_MAJOR_VERSION*100000) + (MAPNIK_MINOR_VERSION*100) + (MAPNIK_PATCH_VERSION)
#if no MAPNIK_MAJOR_VERSION macro is defined then
#we read only MAPNIK_VERSION macro which contains the version number. This is for version less than 2.1
#as major, minor, patch are introduced in version 2.1
#See mapnik commit - https://github.com/mapnik/mapnik/commit/2abe02bd96104988ea76869d1203aa270cf9a68c
if
(
MAPNIK_MAJOR_VERSION
)
MATH
(
EXPR OTB_MAPNIK_VERSION
"(
${
MAPNIK_MAJOR_VERSION
}
*100000) + (
${
MAPNIK_MINOR_VERSION
}
*100) + (
${
MAPNIK_PATCH_VERSION
}
)"
)
#make MAPNIK_VERSION to have a standard version style eg: 2.2.0 instead of 020020
SET
(
MAPNIK_VERSION
${
MAPNIK_MAJOR_VERSION
}
.
${
MAPNIK_MINOR_VERSION
}
.
${
MAPNIK_PATCH_VERSION
}
)
else
()
STRING
(
REGEX REPLACE
".*#define MAPNIK_VERSION ([0-9]+).*"
"
\\
1"
MAPNIK_VERSION
${
_mapnik_version_hpp_CONTENTS
}
)
endif
()
#should we check for 2.0 here instead of 2.2 to include agg2
if
(
${
OTB_MAPNIK_VERSION
}
LESS
"200200"
)
message
(
STATUS
"Does not support mapnik2 interface:
${
MAPNIK_VERSION
}
"
)
add_definitions
(
-DOTB_MAPNIK_COMPATIBILITY_API07
)
# This should be dropped when we don't want to support this any more
# Estimated date: 02/2013.
else
()
find_path
(
AGG
2
_INCLUDE_DIR agg_pixfmt_rgba.h PATHS /usr/include
/
)
mark_as_advanced
(
AGG
2
_INCLUDE_DIR
)
if
(
NOT AGG
2
_INCLUDE_DIR
)
find_path
(
AGG_INCLUDE_DIR agg_pixfmt_rgba.h PATHS /usr/include
/usr/include/agg2
)
mark_as_advanced
(
AGG_INCLUDE_DIR
)
if
(
NOT AGG_INCLUDE_DIR
)
message
(
FATAL_ERROR
"Cannot find AGG
2 library
, needed by MAPNIK. Please set AGG
2
_INCLUDE_DIR or set OTB_USE_MAPNIK OFF."
)
"Cannot find AGG
headers
, needed by MAPNIK. Please set AGG_INCLUDE_DIR or set OTB_USE_MAPNIK OFF."
)
endif
()
include_directories
(
${
AGG
2
_INCLUDE_DIR
}
)
include_directories
(
${
AGG_INCLUDE_DIR
}
)
SET
(
OTB_MAPNIK_SUPPORTS_API20 TRUE
)
endif
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment