diff options
author | Johan Bergström <bugs@bergstroem.nu> | 2015-03-02 14:29:31 +1100 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2015-03-05 23:10:45 +0100 |
commit | 37bb1df7c4307daa50904ff5414727ea449f3d02 (patch) | |
tree | f543fda2f153a1a88cddb714f9406026eb4ce7e1 /node.gyp | |
parent | 4874182065655dcf8a39bfa3e4c9b47bfb9e0f75 (diff) | |
download | nodejs-37bb1df7c4307daa50904ff5414727ea449f3d02.tar.gz nodejs-37bb1df7c4307daa50904ff5414727ea449f3d02.tar.bz2 nodejs-37bb1df7c4307daa50904ff5414727ea449f3d02.zip |
build: remove mdb from io.js
After upgrading to a newer v8 mdb is pretty much broken - even if using
the latest updates from nodejs. If nodejs decides to update their v8 we
can give it another go, but for now it's better to remove it than have
it in our tree unsupported.
PR-URL: https://github.com/iojs/io.js/pull/1023
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Rod Vagg <rod@vagg.org>
Diffstat (limited to 'node.gyp')
-rw-r--r-- | node.gyp | 34 |
1 files changed, 0 insertions, 34 deletions
@@ -12,7 +12,6 @@ 'node_shared_libuv%': 'false', 'node_use_openssl%': 'true', 'node_shared_openssl%': 'false', - 'node_use_mdb%': 'false', 'node_v8_options%': '', 'library_files': [ 'src/node.js', @@ -275,13 +274,6 @@ 'src/node_lttng.cc' ], } ], - [ 'node_use_mdb=="true"', { - 'dependencies': [ 'node_mdb' ], - 'include_dirs': [ '<(SHARED_INTERMEDIATE_DIR)' ], - 'sources': [ - 'src/node_mdb.cc', - ], - } ], [ 'node_use_etw=="true"', { 'defines': [ 'HAVE_ETW=1' ], 'dependencies': [ 'node_etw' ], @@ -510,32 +502,6 @@ ] }, { - 'target_name': 'node_mdb', - 'type': 'none', - 'conditions': [ - [ 'node_use_mdb=="true"', - { - 'dependencies': [ 'deps/mdb_v8/mdb_v8.gyp:mdb_v8' ], - 'actions': [ - { - 'action_name': 'node_mdb', - 'inputs': [ '<(PRODUCT_DIR)/obj.target/deps/mdb_v8/mdb_v8.so' ], - 'outputs': [ '<(PRODUCT_DIR)/obj.target/node/src/node_mdb.o' ], - 'conditions': [ - [ 'target_arch=="ia32"', { - 'action': [ 'elfwrap', '-o', '<@(_outputs)', '<@(_inputs)' ], - } ], - [ 'target_arch=="x64"', { - 'action': [ 'elfwrap', '-64', '-o', '<@(_outputs)', '<@(_inputs)' ], - } ], - ], - }, - ], - }, - ], - ], - }, - { 'target_name': 'node_dtrace_provider', 'type': 'none', 'conditions': [ |