Lines Matching refs:opt
261 opt = $2
262 sub(/,$/,"",opt)
263 onoff = option[opt] # records current (and the default is "", enabled)
272 print "option", opt ": ERROR: missing contination line"
274 print "option", opt ": ERROR: error reading continuation line"
294 print "option", opt ": ERROR: turning unrecognized option", val
303 print "option", opt ": currently", onoff ": attempt to turn", val
310 requires[opt] = requires[opt] " " val
312 iffs[opt] = iffs[opt] " " val
314 enabledby[val] = enabledby[val] " " opt
316 sets[opt] = sets[opt] " " val
320 setval[opt " " set] = setval[opt " " set] " " val
331 option[opt] = onoff
351 opt = $2
352 sub(/,$/,"",opt)
365 print "chunk", opt ": ERROR: missing contination line"
367 print "chunk", opt ": ERROR: error reading continuation line"
405 …print "option READ_" opt, "requires READ_ANCILLARY_CHUNKS" reqread, "enables", opt enables , onoff…
406 …print "option WRITE_" opt, "requires WRITE_ANCILLARY_CHUNKS" reqwrite, "enables", opt enables, ono…
550 for (opt in enabledby) tree[opt] = 1 # may not be explicit options
551 for (opt in option) if (opt != "") {
552 o = option[opt]
558 tree[opt] = "" # so unlisted options marked
560 for (opt in tree) if (opt != "") {
561 if (tree[opt] == 1) {
562 tree[opt] = ""
563 if (option[opt] != "") {
569 option[opt] = "disabled"
575 split(requires[opt] iffs[opt] enabledby[opt], r)
577 for (i in list) tree[opt] = tree[opt] " " i
590 for (opt in option) if (opt != "") {
591 if (option[opt] == "on" || option[opt] == "off") {
592 pending[++npending] = opt
598 opt = pending[npending--]
599 if (option[opt] == "on") {
600 nreqs = split(requires[opt], r)
603 print "option", opt, "turned on, but requirement", r[j], "is turned off"
611 if (option[opt] != "off") {
615 nreqs = split(enabledby[opt], r)
618 print "option", opt, "turned off, but enabled by", r[j], "which is turned on"