summaryrefslogtreecommitdiffstats
path: root/Makefile
AgeCommit message (Collapse)Author
2019-05-05Release 1.4.11.4.1Tavian Barnes
2019-04-24tests: Add some tests that require sudoTavian Barnes
2019-04-15Release 1.41.4Tavian Barnes
2019-03-01trie: Implement a QP trieTavian Barnes
2019-02-10Release 1.3.31.3.3Tavian Barnes
2019-02-06Turn on -Wstrict-prototypesTavian Barnes
2019-02-01tests: New utility for making and testing socket filesTavian Barnes
2019-02-01Makefile: New distcheck targetTavian Barnes
To catch more errors automatically, this new target runs the tests in multiple configurations, including various sanitizers and with/without optimization.
2019-01-11Release 1.3.21.3.2Tavian Barnes
2019-01-03Release 1.3.11.3.1Tavian Barnes
2019-01-02Release 1.31.3Tavian Barnes
2019-01-02posix1e: Split out ACL and capability handling from utilTavian Barnes
2019-01-02diag: Unify diagnostic formattingTavian Barnes
This adds a bfs: prefix to error/warning messages for consistency with other command line tools, and leaves only the "error:"/"warning:" part colored like GCC. It also uniformly adds full stops after messages.
2018-12-17Implement -acl testTavian Barnes
2018-12-17color: Support coloring files with capabilitiesTavian Barnes
2018-12-17Makefile: Link with -lrt on LinuxTavian Barnes
Fixes #29.
2018-11-01Remove man page on make uninstallTavian Barnes
2018-09-24Merge branch 'release-1.2.4'Tavian Barnes
2018-09-24Release 1.2.41.2.4Tavian Barnes
2018-09-24Update copyright datesTavian Barnes
2018-09-18spawn: New posix_spawn()-like API for execTavian Barnes
2018-07-15Release 1.2.31.2.3Tavian Barnes
2018-06-23Release 1.2.21.2.2Tavian Barnes
2018-03-18New 'sanitized' make targetTavian Barnes
2018-02-08Release 1.2.11.2.1Tavian Barnes
2018-01-20Release 1.21.2Tavian Barnes
2018-01-08stat: New wrapper around the stat() familyTavian Barnes
This lets bfs transparently support the new statx() system call on Linux, giving it access to file birth times.
2017-10-27Release 1.1.41.1.4Tavian Barnes
2017-10-15Add a man pageTavian Barnes
Fixes #31
2017-10-13Don't use install -DTavian Barnes
-D isn't portable to non-GNU Unices, so just use mkdir manually. Fixes #28
2017-10-04Release 1.1.31.1.3Tavian Barnes
2017-09-16opt: Separate optimization from parsingTavian Barnes
2017-09-10Release 1.1.21.1.2Tavian Barnes
2017-08-10Release 1.1.11.1.1Tavian Barnes
2017-07-27Re-license under the BSD Zero Clause LicenseTavian Barnes
2017-07-22Release 1.11.1Tavian Barnes
2017-06-15Release 1.0.21.0.2Tavian Barnes
2017-05-17Release 1.0.11.0.1Tavian Barnes
2017-04-24Release 1.01.0Tavian Barnes
2017-04-23Implement -fstypeTavian Barnes
Fixes #6!
2017-04-15Implement -exec/-execdir ... +Tavian Barnes
2017-03-11Release 0.960.96Tavian Barnes
2017-03-11Make a printf()-style API for colored messagesTavian Barnes
2017-02-05Implement -printf/-fprintfTavian Barnes
Based on a patch by Fangrui Song <i@maskray.me>. Closes #16.
2017-01-06Don't set _POSIX_C_SOURCETavian Barnes
The BSD behaviour is to hide all BSD extensions if standard-conformance feature test macros are present. We don't want strict POSIX, we want all available extensions, so ask for that.
2016-12-21Set _FILE_OFFSET_BITS to 64Tavian Barnes
With the new support for -size n[TP], this is needed to avoid overflow on 32-bit platforms.
2016-12-20Bump the version to 0.880.88Tavian Barnes
2016-12-17Fix the build on macOSTavian Barnes
macOS hides st_[acm]timespec if _POSIX_C_SOURCE is defined, unless _DARWIN_C_SOURCE is too.
2016-12-16Fix the build on OpenIndianaTavian Barnes
2016-11-24Release 0.84.10.84.1Tavian Barnes