Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
Append -DNDEBUG to CFLAGS to remove buildpath from binaries.
· a90eb090
Bas Couwenberg
authored
Apr 21, 2019
a90eb090
Add lintian override for file-references-package-build-path.
· de615def
Bas Couwenberg
authored
Apr 21, 2019
de615def
Add patch to fix spelling errors.
· 7cecb0bc
Bas Couwenberg
authored
Apr 21, 2019
7cecb0bc
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
7cecb0bc
...
...
@@ -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
...
...
debian/libapache2-mod-mapcache.lintian-overrides
View file @
7cecb0bc
# 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 *
debian/patches/series
View file @
7cecb0bc
cmake-mapserver-include.patch
spelling-errors.patch
debian/patches/spelling-errors.patch
0 → 100644
View file @
7cecb0bc
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"
debian/rules
View file @
7cecb0bc
...
...
@@ -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
)
...
...