Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | config: Add BFS_USE_LIB* to config.h instead of CPPFLAGS | Tavian Barnes | 2024-04-25 | 8 | -75/+49 |
| | |||||
* | fsade: Implement ACL detection on Illumos | Tavian Barnes | 2024-04-22 | 4 | -1/+11 |
| | |||||
* | config: Check for acl_get_file() | Tavian Barnes | 2024-04-22 | 2 | -0/+9 |
| | |||||
* | config: Check for acl_get_{entry,tag_type}() | Tavian Barnes | 2024-04-22 | 3 | -0/+20 |
| | |||||
* | config: Check for extattr_{get,list}_{file,link}() | Tavian Barnes | 2024-04-22 | 5 | -0/+44 |
| | | | | This lets us implement -xattr on DragonFly BSD. | ||||
* | config: Check for max_align_t | Tavian Barnes | 2024-04-19 | 2 | -0/+9 |
| | |||||
* | config: Check for aligned_alloc() | Tavian Barnes | 2024-04-19 | 2 | -0/+9 |
| | |||||
* | config: Check for struct stat::st_flags | Tavian Barnes | 2024-04-19 | 2 | -0/+10 |
| | |||||
* | config: Check for struct stat::st_{a,c,m,birth}{tim,timespec} | Tavian Barnes | 2024-04-19 | 5 | -0/+46 |
| | |||||
* | config: Check for struct tm::tm_gmtoff | Tavian Barnes | 2024-04-19 | 2 | -0/+10 |
| | |||||
* | config: Check for fdclosedir() | Tavian Barnes | 2024-04-19 | 2 | -0/+9 |
| | |||||
* | config: Check for strerror_[lr]() | Tavian Barnes | 2024-04-19 | 5 | -1/+47 |
| | |||||
* | config: Check for pipe2() | Tavian Barnes | 2024-04-19 | 2 | -0/+11 |
| | |||||
* | config: Check for statx() | Tavian Barnes | 2024-04-19 | 3 | -1/+27 |
| | |||||
* | config: Check for acl_is_trivial_np() | Tavian Barnes | 2024-04-19 | 2 | -0/+12 |
| | |||||
* | config: Check for confstr() | Tavian Barnes | 2024-04-19 | 2 | -0/+10 |
| | |||||
* | config: Check for getdents{,64}() | Tavian Barnes | 2024-04-19 | 5 | -1/+35 |
| | |||||
* | config: Check for posix_spawn_file_actions_addfchdir{,_np}() | Tavian Barnes | 2024-04-19 | 4 | -2/+26 |
| | |||||
* | config: Check for program_invocation_short_name | Tavian Barnes | 2024-04-19 | 8 | -3/+91 |
| | | | | | | 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 exist | Tavian Barnes | 2024-04-19 | 2 | -55/+55 |
| | | | | This fixes `make config CC=musl-gcc`, for example. | ||||
* | config: Add missing copyright headers | Tavian Barnes | 2024-04-19 | 5 | -0/+15 |
| | | | | | They're probably too trivial to be copyrightable, but might as well include the SPDX tags for consistency anyway. | ||||
* | tests: Add ../src to the include path | Tavian Barnes | 2024-04-19 | 1 | -0/+1 |
| | |||||
* | config: Use ✔/✘ rather than [y]/[n] | Tavian Barnes | 2024-04-19 | 1 | -2/+2 |
| | |||||
* | config: Remove unused ${ARCH} variable | Tavian Barnes | 2024-04-19 | 1 | -1/+0 |
| | |||||
* | config: Remove explicit -MF from DEPFLAGS | Tavian Barnes | 2024-04-19 | 1 | -1/+1 |
| | | | | We use the default name anyway. | ||||
* | config: Fix ${SAN} on BSD make | Tavian Barnes | 2024-04-19 | 1 | -1/+2 |
| | | | | | | This seems to have hit some BSD make limitation, making it set `SAN := y` unconditionally for some reason. Breaking up the expression fixes it. | ||||
* | config: Don't build config tests with -o /dev/null | Tavian Barnes | 2024-04-19 | 1 | -2/+8 |
| | | | | | | | | | macOS doesn't like it, complaining that error: cannot parse the debug map for '/dev/null': The file was not recognized as a valid object file clang: error: dsymutil command failed with exit code 1 (use -v to see invocation) Use a temporary file instead. | ||||
* | config: Delete gen/objs.mk | Tavian Barnes | 2024-04-17 | 1 | -10/+0 |
| | | | | | Rather than explicitly listing all these dependencies, we can rely on DEPFLAGS to generate them for us. | ||||
* | build: Directly generate version.c | Tavian Barnes | 2024-04-17 | 5 | -10/+12 |
| | |||||
* | build: Dont include ${BUILDDIR} in short messages | Tavian Barnes | 2024-04-17 | 6 | -8/+14 |
| | |||||
* | build: Add back the default CFLAGS | Tavian Barnes | 2024-04-17 | 1 | -6/+20 |
| | |||||
* | build: Properly export PKG_CONFIG | Tavian Barnes | 2024-04-17 | 2 | -0/+2 |
| | |||||
* | build: Make the config scripts POSIX-compliant | Tavian Barnes | 2024-04-17 | 3 | -15/+17 |
| | |||||
* | build: Support NOLIBS=1 | Tavian Barnes | 2024-04-17 | 1 | -1/+1 |
| | |||||
* | build: Refactor configuration | Tavian Barnes | 2024-04-16 | 11 | -125/+419 |
| | | | | | | We now use a recursive make invocation to do the work of `make config`. The new implementation is also compatible with GNU make 3.81 found on macOS. | ||||
* | build: Fix FreeBSD *SAN builds | Tavian Barnes | 2024-04-11 | 1 | -1/+1 |
| | |||||
* | build: Factor out vars.mk generation into a script | Tavian Barnes | 2024-04-10 | 1 | -0/+81 |
| | |||||
* | build: Run pkg-config with all packages at once | Tavian Barnes | 2024-04-10 | 7 | -44/+98 |
| | |||||
* | config/cc.sh: Pass all the flags when running the compiler | Tavian Barnes | 2024-04-10 | 1 | -4/+8 |
| | |||||
* | build: Add optional libselinux dependency | Tavian Barnes | 2024-04-10 | 2 | -0/+9 |
| | |||||
* | build: Add a separate configuration step | Tavian Barnes | 2024-04-09 | 8 | -0/+150 |