Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-01-29 | openrc-run: missing includes from IWYU | Sam James | |
2023-01-25 | openrc-run: drop strlen dead store | Sam James | |
2023-01-25 | openrc-run: fix -Wunused-but-set-variable | Sam James | |
2023-01-25 | openrc, openrc-run: Fix -Wstrict-prototypes | Sam James | |
These become fine with C23 because () starts to mean (void) then, but for previous language versions, it's deprecated, and it causes an annoying warning when building with Clang by default. Plus, GCC lacks specific flags to trigger what C23 *does* ban, so a lot of people are going around building with -Wstrict-prototypes, so let's just fix this to be consistent with the rest of the codebase anyway to fend off false positive reports. | |||
2023-01-15 | openrc-run: add status to basic usage message | Mike Frysinger | |
Fixes #491. | |||
2022-04-30 | multiple spelling and typo fixes | Josh Soref | |
This fixes #516. | |||
2022-04-06 | migrate fully to meson build system | William Hubbs | |
- drop old build system - move shared include and source files to common directory - drop "rc-" prefix from shared include and source files - move executable-specific code to individual directories under src - adjust top-level .gitignore file for new build system This closes #489. |