Skip to content

Commit

Permalink
Fix build failures on some gcc versions
Browse files Browse the repository at this point in the history
The `-pedantic` flag set in `binding.gyp` caused errors on some gcc
tool chains.  It is set when debug mode is enabled anyway.
  • Loading branch information
Homme Zwaagstra committed Dec 12, 2012
1 parent 9eb0dd9 commit 78ba023
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion binding.gyp
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
], ],
'cflags': [ 'cflags': [
'<!@(python tools/config.py --cflags)', '<!@(python tools/config.py --cflags)',
'-pedantic',
'-Wall' '-Wall'
], ],
}], }],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"author": "Homme Zwaagstra <hrz@geodata.soton.ac.uk>", "author": "Homme Zwaagstra <hrz@geodata.soton.ac.uk>",
"name": "mapcache", "name": "mapcache",
"description": "A map tile caching solution using Mapserver Mapcache", "description": "A map tile caching solution using Mapserver Mapcache",
"version": "0.1.7", "version": "0.1.8",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "http://github.com/geo-data/node-mapcache.git" "url": "http://github.com/geo-data/node-mapcache.git"
Expand Down
2 changes: 1 addition & 1 deletion src/mapcache.hpp
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
*/ */


/// The node-mapcache version string /// The node-mapcache version string
#define NODE_MAPCACHE_VERSION "0.1.7" #define NODE_MAPCACHE_VERSION "0.1.8"


// Standard headers // Standard headers
#include <string> #include <string>
Expand Down

0 comments on commit 78ba023

Please sign in to comment.