Compare commits

...

2 Commits

Author SHA1 Message Date
Lovell Fuller
b877751b2d Add support for C++11 on Mac 2014-08-24 21:41:09 +01:00
Lovell Fuller
40db482fd8 Version bumps 2014-08-24 21:40:23 +01:00
2 changed files with 5 additions and 3 deletions

View File

@@ -15,7 +15,9 @@
'cflags': ['-fexceptions', '-Wall', '-O3'],
'cflags_cc': ['-std=c++0x', '-fexceptions', '-Wall', '-O3'],
'xcode_settings': {
'OTHER_CFLAGS': ['-std=c++11', '-fexceptions', '-Wall', '-O3']
'OTHER_CFLAGS': ['-std=c++11', '-stdlib=libc++', '-fexceptions', '-Wall', '-O3'],
'OTHER_CPLUSPLUSFLAGS': ['-std=c++11', '-stdlib=libc++', '-fexceptions', '-Wall', '-O3'],
'MACOSX_DEPLOYMENT_TARGET': '10.7'
}
}]
}

View File

@@ -1,6 +1,6 @@
{
"name": "sharp",
"version": "0.6.0",
"version": "0.6.1",
"author": "Lovell Fuller <npm@lovell.info>",
"contributors": [
"Pierre Inglebert <pierre.inglebert@gmail.com>",
@@ -35,7 +35,7 @@
],
"dependencies": {
"nan": "^1.3.0",
"bluebird": "^2.3.0"
"bluebird": "^2.3.1"
},
"devDependencies": {
"imagemagick": "^0.1.3",