diff options
author | Daniel Bertalan <dani@danielbertalan.dev> | 2021-12-23 11:03:44 +0100 |
---|---|---|
committer | Ali Mohammad Pur <Ali.mpfard@gmail.com> | 2021-12-24 17:02:40 +0330 |
commit | de5937b45e47346f7c1de121279dc62d473e1d64 (patch) | |
tree | 6e9941078a61e74b418594e00159a1e00d4c3208 /Ports/m4/package.sh | |
parent | 5b8098497ea9e7a1334ee1213acf0fcf86dfe5a4 (diff) | |
download | serenity-de5937b45e47346f7c1de121279dc62d473e1d64.zip |
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.
Diffstat (limited to 'Ports/m4/package.sh')
-rwxr-xr-x | Ports/m4/package.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Ports/m4/package.sh b/Ports/m4/package.sh index 54ff9d4a02..33dd797e13 100755 --- a/Ports/m4/package.sh +++ b/Ports/m4/package.sh @@ -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 |