summaryrefslogtreecommitdiffstats
path: root/build/header.mk
Commit message (Collapse)AuthorAgeFilesLines
* configure: Use --with/--without for librariesTavian Barnes2024-05-241-1/+1
|
* prelude: Remove max_align_t polyfillTavian Barnes2024-05-201-1/+0
| | | | | | This has been fixed in Cosmopolitan. Link: https://github.com/jart/cosmopolitan/issues/944
* dir: Add support for posix_getdents()Tavian Barnes2024-05-171-0/+1
| | | | | | | | This will be added to the next POSIX standard, and is already implemented in musl. Link: https://www.austingroupbugs.net/view.php?id=697 Link: https://git.musl-libc.org/cgit/musl/commit/?id=1b0d48517f816e98f19111df82f32bfc1608ecec
* stat: Support __st_birthtim on OpenBSDTavian Barnes2024-05-161-0/+1
|
* build: Sort generated headersTavian Barnes2024-05-081-4/+4
|
* build: Check for 1- and 2-argument getmntent() variantsTavian Barnes2024-05-071-0/+2
|
* build: Add a check for getmntinfo()Tavian Barnes2024-05-071-0/+1
|
* build: Add checks for strtofflags() and string_to_flags()Tavian Barnes2024-05-071-0/+2
|
* xtime: Use the libc's timegm() if presentTavian Barnes2024-05-061-0/+1
|
* build: Add some nice aliases to ./configureTavian Barnes2024-05-011-1/+1
|
* build: Listen to make -sTavian Barnes2024-04-301-12/+9
|
* build: Replace `make config` with a `./configure` scriptTavian Barnes2024-04-291-0/+69
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.