--- ./node.gyp.orig 2023-02-02 00:11:22.000000000 +0530 +++ ./node.gyp 2023-02-10 18:02:18.543233332 +0530 @@ -155,7 +155,8 @@ ], 'sources': [ - 'src/node_main.cc' + 'src/node_main.cc', + 'src/getaddrinfo.c' ], 'dependencies': [ @@ -449,6 +450,7 @@ 'include_dirs': [ 'src', + 'deps/cares/src/lib', '<(SHARED_INTERMEDIATE_DIR)' # for node_natives.h ], 'dependencies': [ @@ -894,300 +896,6 @@ }, ], }, # node_lib_target_name - { # fuzz_url - 'target_name': 'fuzz_url', - 'type': 'executable', - 'dependencies': [ - '<(node_lib_target_name)', - ], - 'includes': [ - 'node.gypi' - ], - 'include_dirs': [ - 'src', - ], - 'defines': [ - 'NODE_ARCH="<(target_arch)"', - 'NODE_PLATFORM="<(OS)"', - 'NODE_WANT_INTERNALS=1', - ], - 'sources': [ - 'src/node_snapshot_stub.cc', - 'test/fuzzers/fuzz_url.cc', - ], - 'conditions': [ - ['OS=="linux"', { - 'ldflags': [ '-fsanitize=fuzzer' ] - }], - # Ensure that ossfuzz flag has been set and that we are on Linux - [ 'OS!="linux" or ossfuzz!="true"', { - 'type': 'none', - }], - ], - }, # fuzz_url - { # fuzz_env - 'target_name': 'fuzz_env', - 'type': 'executable', - 'dependencies': [ - '<(node_lib_target_name)', - 'deps/histogram/histogram.gyp:histogram', - 'deps/uvwasi/uvwasi.gyp:uvwasi', - ], - 'includes': [ - 'node.gypi' - ], - 'include_dirs': [ - 'src', - 'tools/msvs/genfiles', - 'deps/v8/include', - 'deps/cares/include', - 'deps/uv/include', - 'deps/uvwasi/include', - 'test/cctest', - ], - 'defines': [ - 'NODE_ARCH="<(target_arch)"', - 'NODE_PLATFORM="<(OS)"', - 'NODE_WANT_INTERNALS=1', - ], - 'sources': [ - 'src/node_snapshot_stub.cc', - 'test/fuzzers/fuzz_env.cc', - ], - 'conditions': [ - ['OS=="linux"', { - 'ldflags': [ '-fsanitize=fuzzer' ] - }], - # Ensure that ossfuzz flag has been set and that we are on Linux - [ 'OS!="linux" or ossfuzz!="true"', { - 'type': 'none', - }], - ], - }, # fuzz_env - { - 'target_name': 'cctest', - 'type': 'executable', - - 'dependencies': [ - '<(node_lib_target_name)', - 'deps/base64/base64.gyp:base64', - 'deps/googletest/googletest.gyp:gtest', - 'deps/googletest/googletest.gyp:gtest_main', - 'deps/histogram/histogram.gyp:histogram', - 'deps/uvwasi/uvwasi.gyp:uvwasi', - 'deps/simdutf/simdutf.gyp:simdutf', - ], - - 'includes': [ - 'node.gypi' - ], - - 'include_dirs': [ - 'src', - 'tools/msvs/genfiles', - 'deps/v8/include', - 'deps/cares/include', - 'deps/uv/include', - 'deps/uvwasi/include', - 'test/cctest', - ], - - 'defines': [ - 'NODE_ARCH="<(target_arch)"', - 'NODE_PLATFORM="<(OS)"', - 'NODE_WANT_INTERNALS=1', - ], - - 'sources': [ - 'src/node_snapshot_stub.cc', - 'test/cctest/node_test_fixture.cc', - 'test/cctest/node_test_fixture.h', - 'test/cctest/test_aliased_buffer.cc', - 'test/cctest/test_base64.cc', - 'test/cctest/test_base_object_ptr.cc', - 'test/cctest/test_node_postmortem_metadata.cc', - 'test/cctest/test_environment.cc', - 'test/cctest/test_linked_binding.cc', - 'test/cctest/test_node_api.cc', - 'test/cctest/test_per_process.cc', - 'test/cctest/test_platform.cc', - 'test/cctest/test_report.cc', - 'test/cctest/test_json_utils.cc', - 'test/cctest/test_sockaddr.cc', - 'test/cctest/test_traced_value.cc', - 'test/cctest/test_util.cc', - 'test/cctest/test_url.cc', - ], - - 'conditions': [ - [ 'node_use_openssl=="true"', { - 'defines': [ - 'HAVE_OPENSSL=1', - ], - 'sources': [ - 'test/cctest/test_crypto_clienthello.cc', - 'test/cctest/test_node_crypto.cc', - ] - }], - ['v8_enable_inspector==1', { - 'sources': [ - 'test/cctest/test_inspector_socket.cc', - 'test/cctest/test_inspector_socket_server.cc' - ], - 'defines': [ - 'HAVE_INSPECTOR=1', - ], - }, { - 'defines': [ - 'HAVE_INSPECTOR=0', - ] - }], - ['OS=="solaris"', { - 'ldflags': [ '-I<(SHARED_INTERMEDIATE_DIR)' ] - }], - # Skip cctest while building shared lib node for Windows - [ 'OS=="win" and node_shared=="true"', { - 'type': 'none', - }], - [ 'node_shared=="true"', { - 'xcode_settings': { - 'OTHER_LDFLAGS': [ '-Wl,-rpath,@loader_path', ], - }, - }], - ['OS=="win"', { - 'libraries': [ - 'Dbghelp.lib', - 'winmm.lib', - 'Ws2_32.lib', - ], - }], - ], - }, # cctest - - { - 'target_name': 'embedtest', - 'type': 'executable', - - 'dependencies': [ - '<(node_lib_target_name)', - 'deps/histogram/histogram.gyp:histogram', - 'deps/uvwasi/uvwasi.gyp:uvwasi', - ], - - 'includes': [ - 'node.gypi' - ], - - 'include_dirs': [ - 'src', - 'tools/msvs/genfiles', - 'deps/v8/include', - 'deps/cares/include', - 'deps/uv/include', - 'deps/uvwasi/include', - 'test/embedding', - ], - - 'sources': [ - 'src/node_snapshot_stub.cc', - 'test/embedding/embedtest.cc', - ], - - 'conditions': [ - ['OS=="solaris"', { - 'ldflags': [ '-I<(SHARED_INTERMEDIATE_DIR)' ] - }], - # Skip cctest while building shared lib node for Windows - [ 'OS=="win" and node_shared=="true"', { - 'type': 'none', - }], - [ 'node_shared=="true"', { - 'xcode_settings': { - 'OTHER_LDFLAGS': [ '-Wl,-rpath,@loader_path', ], - }, - }], - ['OS=="win"', { - 'libraries': [ - 'Dbghelp.lib', - 'winmm.lib', - 'Ws2_32.lib', - ], - }], - ], - }, # embedtest - - { - 'target_name': 'overlapped-checker', - 'type': 'executable', - - 'conditions': [ - ['OS=="win"', { - 'sources': [ - 'test/overlapped-checker/main_win.c' - ], - }], - ['OS!="win"', { - 'sources': [ - 'test/overlapped-checker/main_unix.c' - ], - }], - ] - }, # overlapped-checker - { - 'target_name': 'node_mksnapshot', - 'type': 'executable', - - 'dependencies': [ - '<(node_lib_target_name)', - 'deps/histogram/histogram.gyp:histogram', - 'deps/uvwasi/uvwasi.gyp:uvwasi', - ], - - 'includes': [ - 'node.gypi' - ], - - 'include_dirs': [ - 'src', - 'tools/msvs/genfiles', - 'deps/v8/include', - 'deps/cares/include', - 'deps/uv/include', - 'deps/uvwasi/include', - ], - - 'defines': [ 'NODE_WANT_INTERNALS=1' ], - - 'sources': [ - 'src/node_snapshot_stub.cc', - 'tools/snapshot/node_mksnapshot.cc', - ], - - 'conditions': [ - [ 'node_use_openssl=="true"', { - 'defines': [ - 'HAVE_OPENSSL=1', - ], - }], - [ 'node_use_node_code_cache=="true"', { - 'defines': [ - 'NODE_USE_NODE_CODE_CACHE=1', - ], - }], - ['v8_enable_inspector==1', { - 'defines': [ - 'HAVE_INSPECTOR=1', - ], - }], - ['OS=="win"', { - 'libraries': [ - 'Dbghelp.lib', - 'winmm.lib', - 'Ws2_32.lib', - ], - }], - ], - }, # node_mksnapshot ], # end targets 'conditions': [