summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* build: Don't look for -s inside VAR=val in $MAKEFLAGSHEADmainTavian Barnes17 hours1-0/+2
|
* Makefile: Recommend --enable-release over RELEASE=yTavian Barnes38 hours1-2/+2
|
* Release 3.23.2Tavian Barnes46 hours2-1/+31
|
* Prefer ./configure --enable-release to RELEASE=yTavian Barnes46 hours2-3/+3
|
* build: Add some nice aliases to ./configureTavian Barnes3 days6-138/+221
|
* build: Listen to make -sTavian Barnes4 days10-55/+115
|
* build: Replace `make config` with a `./configure` scriptTavian Barnes5 days63-387/+445
| | | | | | | | | | This lets us do more traditional out-of-tree builds like $ ../path/to/bfs/configure $ make The .mk files are moved from ./config to ./build, mostly so that ./configure will auto-complete easily.
* bench: Get rid of stray lsTavian Barnes7 days1-1/+0
|
* config: Just use NOT to implement NORTavian Barnes8 days2-19/+4
|
* config: Move .c files into config/{use,has} subdirectoriesTavian Barnes8 days43-68/+70
|
* bench: Run make config when buildingTavian Barnes9 days1-2/+9
|
* config: Add BFS_USE_LIB* to config.h instead of CPPFLAGSTavian Barnes9 days9-75/+50
|
* ioq: Fix uninitialized values in ioq_create() cleanup pathTavian Barnes10 days1-4/+1
| | | | | | | | I switched from ZALLOC_FLEX() to ALLOC_FLEX() in hopes that msan would catch uninitialized values in ioq_thread_create(), but in doing so, forgot to initialize all fields before the first goto fail. Fixes: f64f76b ("ioq: Copy ring_ops from the previous thread")
* printf: Check dynamic format strings more carefullyTavian Barnes10 days2-41/+48
|
* printf: Refactor %y/%Y implementationTavian Barnes10 days3-59/+53
|
* ctx: Escape paths when reporting errors in bfs_ctx_free()Tavian Barnes10 days1-1/+1
|
* opt: Add missing NULL check in visit_shallow()Tavian Barnes10 days1-1/+5
| | | | | visit_shallow() should propagate NULL, but look_up_visitor() dereferences expr to know which visitor to return.
* dstring: Add missing va_end() to dstrvcatf() error pathTavian Barnes10 days1-0/+1
|
* eval: Plug memory leak if bfs_opendir() failsTavian Barnes10 days7-18/+32
|
* build(deps): bump codecov/codecov-action from 3 to 4dependabot[bot]12 days1-1/+1
| | | | | | | | | | | | | | | Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3 to 4. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v3...v4) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
* Enable Dependabot for GitHub ActionsTavian Barnes12 days1-0/+6
|
* ci/netbsd: Use cross-platform-actionsTavian Barnes12 days1-16/+8
|
* ci/openbsd: Use cross-platform-actionsTavian Barnes12 days1-14/+8
|
* ci/freebsd: Use cross-platform-actionsTavian Barnes12 days1-14/+8
|
* ci/codeql: Exclude some alertsTavian Barnes12 days2-1/+14
| | | | And try not to analyze config/*.c
* fsade: Implement ACL detection on IllumosTavian Barnes12 days6-13/+32
|
* config: Check for acl_get_file()Tavian Barnes12 days4-8/+10
|
* fsade: Simplify BFS_CAN_CHECK_CAPABILITIESTavian Barnes12 days2-13/+1
|
* config: Check for acl_get_{entry,tag_type}()Tavian Barnes12 days4-12/+40
|
* config: Check for extattr_{get,list}_{file,link}()Tavian Barnes12 days7-11/+97
| | | | This lets us implement -xattr on DragonFly BSD.
* config: Check for max_align_tTavian Barnes2024-04-193-4/+24
|
* config: Check for aligned_alloc()Tavian Barnes2024-04-193-3/+12
|
* config: Check for struct stat::st_flagsTavian Barnes2024-04-193-1/+11
|
* config: Check for struct stat::st_{a,c,m,birth}{tim,timespec}Tavian Barnes2024-04-198-11/+70
|
* config: Check for struct tm::tm_gmtoffTavian Barnes2024-04-193-1/+11
|
* config: Check for fdclosedir()Tavian Barnes2024-04-194-2/+11
|
* config: Check for strerror_[lr]()Tavian Barnes2024-04-196-23/+67
|
* config: Check for pipe2()Tavian Barnes2024-04-193-1/+12
|
* config: Check for statx()Tavian Barnes2024-04-195-9/+31
|
* config: Check for acl_is_trivial_np()Tavian Barnes2024-04-193-2/+14
|
* config: Check for confstr()Tavian Barnes2024-04-193-5/+15
|
* config: Check for getdents{,64}()Tavian Barnes2024-04-197-9/+45
|
* config: Check for posix_spawn_file_actions_addfchdir{,_np}()Tavian Barnes2024-04-195-22/+32
|
* config: Check for program_invocation_short_nameTavian Barnes2024-04-1910-6/+96
| | | | | | This lets us pick it up on musl too, since there's no __MUSL__ macro. Link: https://wiki.musl-libc.org/faq#Q:-Why-is-there-no-%3Ccode%3E__MUSL__%3C/code%3E-macro?
* config: Test-compile packages even if pkg-config says they existTavian Barnes2024-04-192-55/+55
| | | | This fixes `make config CC=musl-gcc`, for example.
* config: Add missing copyright headersTavian Barnes2024-04-195-0/+15
| | | | | They're probably too trivial to be copyrightable, but might as well include the SPDX tags for consistency anyway.
* Rename config.h to prelude.hTavian Barnes2024-04-1951-54/+54
|
* tests: Add ../src to the include pathTavian Barnes2024-04-1912-36/+37
|
* config: Use ✔/✘ rather than [y]/[n]Tavian Barnes2024-04-191-2/+2
|
* config: Remove unused ${ARCH} variableTavian Barnes2024-04-191-1/+0
|