/headless-wine

A experiment that try to remove some of graphic features from wine

Primary LanguageShell

notes

generate disabled dlls list

awk '/^enable_(.+)/ && !/=/ { print gensub(/_/, "-", "g", gensub(/^enable_(.+)/, "args+=(--disable-\\1)", "g", $1)) }' configure

generate disabled features list

awk '/^with_(.+)/ && !/=/ { print gensub(/_/, "-", "g", gensub(/^with_(.+)/, "args+=(--without-\\1)", "g", $1)) }' configure