0-issue

Results 59 comments of 0-issue

``` % cc --version Apple clang version 15.0.0 (clang-1500.0.40.1) Target: arm64-apple-darwin23.1.0 Thread model: posix InstalledDir: /Library/Developer/CommandLineTools/usr/bin ``` I also tried with homebrew gcc, but same error. Here's an example configure...

@rkd77 There is no zstd or lzma, does that matter? I switched those from "with" to "without". It still doesn't work. Here's the stdout: [elinksbuildstdout.log](https://github.com/rkd77/elinks/files/13545467/elinksbuildstdout.log)

@rkd77 Table borders are not visible with non-default config as elinks emits black foreground color ``\e[30m`` for table borders and black background color ``\e[40m``. So it's black over black. In...

Ah, foreground and background colors being same can be fixed with ``set document.colors.ensure_contrast = 1``. For now I have done that to be able to see table borders. Though not...

Similar problem with unicode non breaking space... it is rendered as tofu by elinks, and not by links. ``` % printf "a 8" | xxd 00000000: 61c2 a038 a..8 ```...

@rkd77 I have never used meson, so am not sure if the build options in``meson_options.txt`` are picked up by the script. Here's are the steps I followed: ``` ./autogen.sh ./configure...

@rkd77 On macOS aarch64. macOS don't have ``pl_PL.UTF-8``, it is ``en_US.UTF-8``. ``` % locale LANG="en_US.UTF-8" LC_COLLATE="en_US.UTF-8" LC_CTYPE="en_US.UTF-8" LC_MESSAGES="en_US.UTF-8" LC_MONETARY="en_US.UTF-8" LC_NUMERIC="en_US.UTF-8" LC_TIME="en_US.UTF-8" LC_ALL= ``` Terminal: tested on multiple: iTerm2, Alacritty, WezTerm,...

UPDATE: I installed elinks in an Arch VM and opened it in the same tmux session on macOS. The locale, font, terminal, tmux, terminfo is same, but it renders correctly...

@rkd77 Just tested, it does not happen in FreeBSD VM! I mean it renders correctly in FreeBSD and Linux. Both tested in same tmux session on macOS with defaults (no...

@rkd77 One observation: Unlike most other systems where libs/include files are in standard directories `/usr/local`` or ``/usr/``, home-brew on aarch64 macOS recommends ``/opt/homebrew``. I ran the ``otool -L`` ( ``ldd``...