An open API service indexing awesome lists of open source software.

https://github.com/codehz/headless-wine

A experiment that try to remove some of graphic features from wine
https://github.com/codehz/headless-wine

Last synced: 3 months ago
JSON representation

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

Awesome Lists containing this project

README

          

## notes

### generate disabled dlls list

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

### generate disabled features list

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