Lines Matching refs:opt

85 function boolToStr(opt)  argument
87 if (opt == false)
89 else if (opt == true)
97 function strToBool(opt) argument
99 if (opt == 0 || opt == "no")
101 else if (opt == 1 || opt == "yes")
447 var arg, opt; variable
449 opt = arg.substring(0, arg.indexOf("="));
450 if (opt.length == 0)
451 opt = arg.substring(0, arg.indexOf(":"));
452 if (opt.length > 0) {
453 if (opt == "trio")
454 withTrio = strToBool(arg.substring(opt.length + 1, arg.length));
455 else if (opt == "threads")
456 withThreads = arg.substring(opt.length + 1, arg.length);
457 else if (opt == "ftp")
458 withFtp = strToBool(arg.substring(opt.length + 1, arg.length));
459 else if (opt == "http")
460 withHttp = strToBool(arg.substring(opt.length + 1, arg.length));
461 else if (opt == "html")
462 withHtml = strToBool(arg.substring(opt.length + 1, arg.length));
463 else if (opt == "c14n")
464 withC14n = strToBool(arg.substring(opt.length + 1, arg.length));
465 else if (opt == "catalog")
466 withCatalog = strToBool(arg.substring(opt.length + 1, arg.length));
467 else if (opt == "docb")
468 withDocb = strToBool(arg.substring(opt.length + 1, arg.length));
469 else if (opt == "xpath")
470 withXpath = strToBool(arg.substring(opt.length + 1, arg.length));
471 else if (opt == "xptr")
472 withXptr = strToBool(arg.substring(opt.length + 1, arg.length));
473 else if (opt == "xinclude")
474 withXinclude = strToBool(arg.substring(opt.length + 1, arg.length));
475 else if (opt == "iconv")
476 withIconv = strToBool(arg.substring(opt.length + 1, arg.length));
477 else if (opt == "icu")
478 withIcu = strToBool(arg.substring(opt.length + 1, arg.length));
479 else if (opt == "iso8859x")
480 withIso8859x = strToBool(arg.substring(opt.length + 1, arg.length));
481 else if (opt == "zlib")
482 withZlib = strToBool(arg.substring(opt.length + 1, arg.length));
483 else if (opt == "lzma")
484 withLzma = strToBool(arg.substring(opt.length + 1, arg.length));
485 else if (opt == "xml_debug")
486 withDebug = strToBool(arg.substring(opt.length + 1, arg.length));
487 else if (opt == "mem_debug")
488 withMemDebug = strToBool(arg.substring(opt.length + 1, arg.length));
489 else if (opt == "run_debug")
490 withRunDebug = strToBool(arg.substring(opt.length + 1, arg.length));
491 else if (opt == "schemas")
492 withSchemas = strToBool(arg.substring(opt.length + 1, arg.length));
493 else if (opt == "schematron")
494 withSchematron = strToBool(arg.substring(opt.length + 1, arg.length));
495 else if (opt == "regexps")
496 withRegExps = strToBool(arg.substring(opt.length + 1, arg.length));
497 else if (opt == "modules")
498 withModules = strToBool(arg.substring(opt.length + 1, arg.length));
499 else if (opt == "tree")
500 withTree = strToBool(arg.substring(opt.length + 1, arg.length));
501 else if (opt == "reader")
502 withReader = strToBool(arg.substring(opt.length + 1, arg.length));
503 else if (opt == "writer")
504 withWriter = strToBool(arg.substring(opt.length + 1, arg.length));
505 else if (opt == "walker")
506 withWalker = strToBool(arg.substring(opt.length + 1, arg.length));
507 else if (opt == "pattern")
508 withPattern = strToBool(arg.substring(opt.length + 1, arg.length));
509 else if (opt == "push")
510 withPush = strToBool(arg.substring(opt.length + 1, arg.length));
511 else if (opt == "valid")
512 withValid = strToBool(arg.substring(opt.length + 1, arg.length));
513 else if (opt == "sax1")
514 withSax1 = strToBool(arg.substring(opt.length + 1, arg.length));
515 else if (opt == "legacy")
516 withLegacy = strToBool(arg.substring(opt.length + 1, arg.length));
517 else if (opt == "output")
518 withOutput = strToBool(arg.substring(opt.length + 1, arg.length));
519 else if (opt == "python")
520 withPython = strToBool(arg.substring(opt.length + 1, arg.length));
521 else if (opt == "compiler")
522 compiler = arg.substring(opt.length + 1, arg.length);
523 else if (opt == "cruntime")
524 cruntime = arg.substring(opt.length + 1, arg.length);
525 else if (opt == "dynruntime")
526 dynruntime = strToBool(arg.substring(opt.length + 1, arg.length));
527 else if (opt == "vcmanifest")
528 vcmanifest = strToBool(arg.substring(opt.length + 1, arg.length));
529 else if (opt == "debug")
530 buildDebug = strToBool(arg.substring(opt.length + 1, arg.length));
531 else if (opt == "static")
532 buildStatic = strToBool(arg.substring(opt.length + 1, arg.length));
533 else if (opt == "prefix")
534 buildPrefix = arg.substring(opt.length + 1, arg.length);
535 else if (opt == "incdir")
536 buildIncPrefix = arg.substring(opt.length + 1, arg.length);
537 else if (opt == "bindir")
538 buildBinPrefix = arg.substring(opt.length + 1, arg.length);
539 else if (opt == "libdir")
540 buildLibPrefix = arg.substring(opt.length + 1, arg.length);
541 else if (opt == "sodir")
542 buildSoPrefix = arg.substring(opt.length + 1, arg.length);
543 else if (opt == "incdir")
544 buildIncPrefix = arg.substring(opt.length + 1, arg.length);
545 else if (opt == "include")
546 buildInclude = arg.substring(opt.length + 1, arg.length);
547 else if (opt == "lib")
548 buildLib = arg.substring(opt.length + 1, arg.length);
549 else if (opt == "release")