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
- Host: GitHub
- URL: https://github.com/codehz/headless-wine
- Owner: codehz
- Created: 2020-02-08T09:30:56.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-06-30T08:13:33.000Z (over 4 years ago)
- Last Synced: 2025-06-04T17:13:57.097Z (8 months ago)
- Language: Shell
- Homepage:
- Size: 89.8 KB
- Stars: 6
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```