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

Ports/m4: Fix build error

The addition of the siginfo() function to LibC caused this port to
enable its stack overflow detection feature which, however, depends on
more features that we don't have.
This commit is contained in:
Daniel Bertalan 2021-12-23 11:03:44 +01:00 committed by Ali Mohammad Pur
parent 5b8098497e
commit de5937b45e

View file

@ -7,3 +7,6 @@ https://ftpmirror.gnu.org/gnu/m4/m4-${version}.tar.gz.sig m4-${version}.tar.gz.s
https://ftpmirror.gnu.org/gnu/gnu-keyring.gpg gnu-keyring.gpg"
auth_type="sig"
auth_opts=("--keyring" "./gnu-keyring.gpg" "m4-${version}.tar.gz.sig")
# Stack overflow detection needs siginfo and sbrk, neither of which we support
export M4_cv_use_stackovf=no