kiss-community / community

Officially unofficial KISS community repository, mirror of https://codeberg.org/kiss-community/community
https://kisscommunity.org
MIT License
49 stars 34 forks source link

elinks fails to link if libexecinfo is installed #1269

Closed aabacchus closed 2 years ago

aabacchus commented 2 years ago

@TAAPArthur: https://github.com/rkd77/elinks/issues/191

A fix on our end could be to manually set HAVE_EXECINFO=no, or

if kiss l libexecinfo >/dev/null 2>&1; then
    sed '/^LIBS /s/$/ -lexecinfo/' Makefile.config >_
    mv _ Makefile.config
fi
TAAPArthur commented 2 years ago

Personally dislike the check if a packaged is installed hack.

I think I'm fine with just setting HAVE_EXECINFO=no in the build file if that solves the problem. Feel free to open a PR that does that.