Skip to content

Commit

Permalink
Merge pull request #2 from kuzzleio/fix-1-build-fails-on-macos
Browse files Browse the repository at this point in the history
fix #1: solve compatibility issue with MacOS
  • Loading branch information
scottinet authored Feb 6, 2017
2 parents 4ae7cca + aff6ffb commit cbc018b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
'conditions': [
['OS=="mac"', {
'xcode_settings': {
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES'
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES',
'CLANG_CXX_LIBRARY': 'libc++',
'CLANG_CXX_LANGUAGE_STANDARD':'c++11'
}
}]
]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "boost-geospatial-index",
"main": "index.js",
"version": "1.0.2",
"version": "1.0.3",
"author": "The Kuzzle Team <support@kuzzle.io>",
"description": "A bridge to the C++ boost::geometry library, allowing to index and query geospatial shapes",
"keywords": [
Expand Down

0 comments on commit cbc018b

Please sign in to comment.