Dane Springmeyer

Results 410 comments of Dane Springmeyer

👍 on removing. Questions I have: - should we keep `inline`? I presume not since is mostly useful for avoiding [odr problems](https://github.com/mapbox/cpp/blob/master/glossary.md#one-definition-rule) and we seem to have been avoiding those...

Interesting. And you are measuring size with https://github.com/google/bloaty? What are the command line arguments you are passing (if another person were to try to replicate with another compiler)?

This error is expected if `var mapnik = require('mapnik');` does not come before `require('./lib/vector_server');` in any script that uses the `build/Release/node_vector_server.node` module. Did you happen to edit the `server.js` at...

Ah, I see the problem. try: ``` export LD_PRELOAD=./node_modules/mapnik/lib/_mapnik.node ```

Yes, it is quite an odd/unique situation. The background is that the C++ bits of this node module are using the headers of another node C++ module (node-mapnik). This is...

another open question to ponder: must variable values be constants or could they be expressions? Supporting only constants will ensure best performance but I could imagine someone wanting to pass...

@knutole - yes, variables in filters will work.

/cc @springmeyer as I'm helping on the sidelines with @linqcan effort at getting boost working for [mapnik](https://github.com/mapnik/mapnik/) on android. He hit linker errors which looked to me like conflicting linking...

@pnorman - you can do that: you just need to 1) ensure your Mapnik is built against that gdal version and ) 2 pass 'type=gdal' to the advanced options when...