Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

configure: add --without-mdb flag #25707

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,11 @@ parser.add_option('--without-etw',
dest='without_etw',
help='build without ETW')

parser.add_option('--without-mdb',
action='store_true',
dest='without_mdb',
help='build without mdb')

parser.add_option('--without-npm',
action='store_true',
dest='without_npm',
Expand Down Expand Up @@ -554,7 +559,7 @@ def configure_node(o):
# if we're on illumos based systems wrap the helper library into the
# executable
if flavor == 'solaris':
o['variables']['node_use_mdb'] = 'true'
o['variables']['node_use_mdb'] = b(not options.without_mdb)
else:
o['variables']['node_use_mdb'] = 'false'

Expand Down
1 change: 1 addition & 0 deletions test/simple/simple.status
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ test-microtask-queue-run-domain : PASS,FLAKY

[$system==win32]
test-timers-first-fire : PASS,FLAKY
test-http-pipeline-flood : PASS,FLAKY

[$system==linux]

Expand Down