Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | opt: Warn about expressions we remove while optimizing | Tavian Barnes | 2022-03-26 | 1 | -0/+2 |
| | |||||
* | expr: Store auxilliary data in a union | Tavian Barnes | 2022-03-25 | 1 | -103/+129 |
| | | | | And rename struct expr to bfs_expr. | ||||
* | Don't shadow standard headers | Tavian Barnes | 2022-03-12 | 1 | -1/+1 |
| | | | | | | | | | | | | | @italic on the AUR stated that bfs from the AUR fails to build on Manjaro. From the build log, it seems like <time.h> doesn't get included properly. I assume it's picking up ./time.h instead. I couldn't reproduce the build issue in the default configuration, but it does fail with EXTRA_CFLAGS="-I." which isn't good. So rename everything with an x prefix to stop clashing. Link: https://aur.archlinux.org/packages/bfs#comment-856102 Link: https://paste.rs/eqR | ||||
* | regex: Wrap the POSIX API in a facade | Tavian Barnes | 2022-02-21 | 1 | -1/+1 |
| | |||||
* | Standardize WITH_* make variables for configuring dependencies | Tavian Barnes | 2022-01-29 | 1 | -1/+1 |
| | |||||
* | Simplifying | data-man | 2022-01-24 | 1 | -6/+1 |
| | |||||
* | Using Oniguruma library (optionally) | data-man | 2022-01-24 | 1 | -1/+6 |
| | |||||
* | expr: Remove unneeded forward declaration of struct expr | Tavian Barnes | 2021-07-27 | 1 | -5/+3 |
| | |||||
* | Implement time units for -{a,B,c,m}time | Tavian Barnes | 2021-06-02 | 1 | -0/+2 |
| | | | | From FreeBSD find. Closes #75. | ||||
* | Implement -flags, from FreeBSD find | Tavian Barnes | 2021-03-06 | 1 | -0/+5 |
| | | | | This is the last BSD-specific primary I'm aware of. Fixes #14. | ||||
* | expr, eval: Clean up header dependencies | Tavian Barnes | 2020-10-06 | 1 | -17/+1 |
| | |||||
* | diag: Unify debug printing | Tavian Barnes | 2020-06-02 | 1 | -5/+0 |
| | |||||
* | Add some documentation comments | Tavian Barnes | 2019-02-09 | 1 | -0/+4 |
| | |||||
* | Update copyright dates | Tavian Barnes | 2018-09-24 | 1 | -1/+1 |
| | |||||
* | stat: New wrapper around the stat() family | Tavian Barnes | 2018-01-08 | 1 | -16/+3 |
| | | | | | This lets bfs transparently support the new statx() system call on Linux, giving it access to file birth times. | ||||
* | Minor header cleanups | Tavian Barnes | 2018-01-08 | 1 | -3/+3 |
| | |||||
* | Keep track of required FDs per-expr | Tavian Barnes | 2017-12-15 | 1 | -0/+5 |
| | |||||
* | Add support for file birth/creation times on platforms that have it | Tavian Barnes | 2017-11-05 | 1 | -0/+2 |
| | | | | Fixes #19 | ||||
* | parse: Keep track of what files are already open | Tavian Barnes | 2017-10-21 | 1 | -3/+1 |
| | | | | Fixes #22 | ||||
* | Report errors that occur when closing files | Tavian Barnes | 2017-10-21 | 1 | -1/+3 |
| | | | | Otherwise we miss write errors that occur when flushing the cache. | ||||
* | opt: Separate optimization from parsing | Tavian Barnes | 2017-09-16 | 1 | -0/+225 |