use c++ instead of c++0x to compatible with old compiler

This commit is contained in:
jiangfriend@gmail.com 2012-02-14 21:10:45 +08:00
parent f8f934a119
commit 314d43203f
11 changed files with 454 additions and 106 deletions

View file

@ -4,7 +4,7 @@ def set_options(opt):
def configure(conf):
conf.check_tool('compiler_cxx')
conf.check_tool('node_addon')
conf.env.append_unique('CXXFLAGS', ['-Wall', '-O2', '-std=c++0x'])
conf.env.append_unique('CXXFLAGS', ['-Wall', '-O2'])
conf.env['LIB_CURL'] = 'curl'
def build(bld):