SerenityOS build: Monday, June 20
Images 💾⌗
- serenity-i686-20220620-dafea57.vdi.gz (VirtualBox VDI, 124.25 MiB)
- serenity-i686-20220620-dafea57.img.gz (Raw image, 124.43 MiB)
Last commit ⭐⌗
commit dafea57fe2d2634237d94bdcfbb83e2faddae72f
Author: SeekingBlues <seekingblues@gmail.com>
AuthorDate: Sun Jun 19 18:41:26 2022 +0800
Commit: Linus Groh <mail@linusgroh.de>
CommitDate: Sun Jun 19 19:50:23 2022 +0100
Ports/ncurses: Disable mixed-case directory names when building on macOS
Since macOS's filesystem is case-insensitive, its `tic` only generates
terminfo directory names that are hex numbers instead of letters, such
as 78/xterm instead of x/xterm. However, the configure script still
enables the mixed-case directory name feature by default. As a result,
ncurses will fail when trying to find terminfo entries like x/xterm if
they are generated on macOS.
It seems like there is no way to change the behavior of `tic` to create
alphabetical directories, so we can only disable this option explicitly.
Other builds