Revision de32b389 configure

View differences:

configure
29 29
    dest="without_npm",
30 30
    help="Don\'t install the bundled npm package manager")
31 31

  
32
parser.add_option("--without-waf",
33
    action="store_true",
34
    dest="without_waf",
35
    help="Don\'t install node-waf")
36

  
37 32
parser.add_option("--without-ssl",
38 33
    action="store_true",
39 34
    dest="without_ssl",
......
321 316
  o['variables']['v8_no_strict_aliasing'] = 1 # work around compiler bugs
322 317
  o['variables']['node_prefix'] = os.path.expanduser(options.prefix or '')
323 318
  o['variables']['node_install_npm'] = b(not options.without_npm)
324
  o['variables']['node_install_waf'] = b(not options.without_waf)
325 319
  o['default_configuration'] = 'Debug' if options.debug else 'Release'
326 320

  
327 321
  host_arch = host_arch_win() if os.name == 'nt' else host_arch_cc()

Also available in: Unified diff