1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 03:08:11 +00:00
serenity/Ports/m4/package.sh
Daniel Bertalan de5937b45e 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.
2021-12-24 17:02:40 +03:30

12 lines
507 B
Bash
Executable file

#!/usr/bin/env -S bash ../.port_include.sh
port=m4
version=1.4.9
useconfigure=true
files="https://ftpmirror.gnu.org/gnu/m4/m4-${version}.tar.gz m4-${version}.tar.gz
https://ftpmirror.gnu.org/gnu/m4/m4-${version}.tar.gz.sig m4-${version}.tar.gz.sig
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