summaryrefslogtreecommitdiffstats
path: root/config
Commit message (Collapse)AuthorAgeFilesLines
* build: Replace `make config` with a `./configure` scriptTavian Barnes2024-04-2949-1018/+0
| | | | | | | | | | 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.
* config: Just use NOT to implement NORTavian Barnes2024-04-262-19/+4
|
* config: Move .c files into config/{use,has} subdirectoriesTavian Barnes2024-04-2643-68/+70
|
* config: Add BFS_USE_LIB* to config.h instead of CPPFLAGSTavian Barnes2024-04-258-75/+49
|
* fsade: Implement ACL detection on IllumosTavian Barnes2024-04-224-1/+11
|
* config: Check for acl_get_file()Tavian Barnes2024-04-222-0/+9
|
* config: Check for acl_get_{entry,tag_type}()Tavian Barnes2024-04-223-0/+20
|
* config: Check for extattr_{get,list}_{file,link}()Tavian Barnes2024-04-225-0/+44
| | | | This lets us implement -xattr on DragonFly BSD.
* config: Check for max_align_tTavian Barnes2024-04-192-0/+9
|
* config: Check for aligned_alloc()Tavian Barnes2024-04-192-0/+9
|
* config: Check for struct stat::st_flagsTavian Barnes2024-04-192-0/+10
|
* config: Check for struct stat::st_{a,c,m,birth}{tim,timespec}Tavian Barnes2024-04-195-0/+46
|
* config: Check for struct tm::tm_gmtoffTavian Barnes2024-04-192-0/+10
|
* config: Check for fdclosedir()Tavian Barnes2024-04-192-0/+9
|
* config: Check for strerror_[lr]()Tavian Barnes2024-04-195-1/+47
|
* config: Check for pipe2()Tavian Barnes2024-04-192-0/+11
|
* config: Check for statx()Tavian Barnes2024-04-193-1/+27
|
* config: Check for acl_is_trivial_np()Tavian Barnes2024-04-192-0/+12
|
* config: Check for confstr()Tavian Barnes2024-04-192-0/+10
|
* config: Check for getdents{,64}()Tavian Barnes2024-04-195-1/+35
|
* config: Check for posix_spawn_file_actions_addfchdir{,_np}()Tavian Barnes2024-04-194-2/+26
|
* config: Check for program_invocation_short_nameTavian Barnes2024-04-198-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 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.
* tests: Add ../src to the include pathTavian Barnes2024-04-191-0/+1
|
* config: Use ✔/✘ rather than [y]/[n]Tavian Barnes2024-04-191-2/+2
|
* config: Remove unused ${ARCH} variableTavian Barnes2024-04-191-1/+0
|
* config: Remove explicit -MF from DEPFLAGSTavian Barnes2024-04-191-1/+1
| | | | We use the default name anyway.
* config: Fix ${SAN} on BSD makeTavian Barnes2024-04-191-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/nullTavian Barnes2024-04-191-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.mkTavian Barnes2024-04-171-10/+0
| | | | | Rather than explicitly listing all these dependencies, we can rely on DEPFLAGS to generate them for us.
* build: Directly generate version.cTavian Barnes2024-04-175-10/+12
|
* build: Dont include ${BUILDDIR} in short messagesTavian Barnes2024-04-176-8/+14
|
* build: Add back the default CFLAGSTavian Barnes2024-04-171-6/+20
|
* build: Properly export PKG_CONFIGTavian Barnes2024-04-172-0/+2
|
* build: Make the config scripts POSIX-compliantTavian Barnes2024-04-173-15/+17
|
* build: Support NOLIBS=1Tavian Barnes2024-04-171-1/+1
|
* build: Refactor configurationTavian Barnes2024-04-1611-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 buildsTavian Barnes2024-04-111-1/+1
|
* build: Factor out vars.mk generation into a scriptTavian Barnes2024-04-101-0/+81
|
* build: Run pkg-config with all packages at onceTavian Barnes2024-04-107-44/+98
|
* config/cc.sh: Pass all the flags when running the compilerTavian Barnes2024-04-101-4/+8
|
* build: Add optional libselinux dependencyTavian Barnes2024-04-102-0/+9
|
* build: Add a separate configuration stepTavian Barnes2024-04-098-0/+150