1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:47:35 +00:00

Ports/mrsh: Explicitly disable readline support

Previously, `mrsh` automatically enabled support for `readline` if it
was detected as installed. However, linking against `readline` currently
doesn't work, so disable it completely instead.
This commit is contained in:
Tim Schumacher 2022-06-08 00:44:03 +02:00 committed by Linus Groh
parent 86d71028df
commit 869333e10e

View file

@ -4,5 +4,8 @@ version=cd3c3a48055ab4085d83f149ff4b4feba40b40cb
files="https://github.com/emersion/mrsh/archive/${version}.tar.gz ${port}-${version}.tar.gz d26e3fdee71ef168cf3f8ad2912c148b20aab524048e4ea899d6b83fb299ceab" files="https://github.com/emersion/mrsh/archive/${version}.tar.gz ${port}-${version}.tar.gz d26e3fdee71ef168cf3f8ad2912c148b20aab524048e4ea899d6b83fb299ceab"
auth_type=sha256 auth_type=sha256
useconfigure=true useconfigure=true
configopts=(
"--without-readline"
)
export CFLAGS=-Wno-deprecated-declarations export CFLAGS=-Wno-deprecated-declarations