Skip to content
Commits on Source (3)
......@@ -4,6 +4,9 @@ mapcache (1.6.1-4) UNRELEASED; urgency=medium
* Update watch file to limit matches to archive path.
* Add Build-Depends-Package field to symbols file.
* Remove package name from lintian overrides.
* Append -DNDEBUG to CFLAGS to remove buildpath from binaries.
* Add lintian override for file-references-package-build-path.
* Add patch to fix spelling errors.
-- Bas Couwenberg <sebastic@debian.org> Sun, 05 Aug 2018 20:27:27 +0200
......
# False positive, dependency set by dh_apache2
apache2-module-depends-on-real-apache2-package apache2-bin
# Cannot easily be fixed
file-references-package-build-path *
cmake-mapserver-include.patch
spelling-errors.patch
Description: Fix spelling errors.
* degreees -> degrees
Author: Bas Couwenberg <sebastic@debian.org>
Forwarded: https://github.com/mapserver/mapcache/pull/199
--- a/util/mapcache_seed.c
+++ b/util/mapcache_seed.c
@@ -1258,7 +1258,7 @@ int main(int argc, const char **argv)
extent->miny < -91.0 ||
extent->maxy > 91.0) {
printf("\n********************************************************************************\n"
- "* WARNING!!!: you are seeding a grid in latlon degreees,\n"
+ "* WARNING!!!: you are seeding a grid in latlon degrees,\n"
"* but your provided OGR intersection features span (%f,%f,%f,%f).\n"
"* this seems like an error, you should be providing OGR features that\n"
"* are in the same projection as the grid you want to seed\n"
@@ -1271,7 +1271,7 @@ int main(int argc, const char **argv)
extent->miny > -91.0 &&
extent->maxy < 91.0) {
printf("\n********************************************************************************\n"
- "* WARNING!!!: you are seeding a grid that is not in latlon degreees,\n"
+ "* WARNING!!!: you are seeding a grid that is not in latlon degrees,\n"
"* but your provided OGR intersection features span (%f,%f,%f,%f) which seem to be in degrees.\n"
"* this seems like an error, you should be providing OGR features that\n"
"* are in the same projection as the grid you want to seed\n"
......@@ -10,6 +10,9 @@ export DH_OPTIONS
# Enable hardening build flags
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
# Remove buildpath from binaries
export DEB_CFLAGS_MAINT_APPEND=-DNDEBUG
DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
......