ports: Fix gmp port to compile with gcc 15.1.0

This commit is contained in:
Bananymous 2025-06-19 19:19:47 +03:00
parent 6fb0b5203a
commit 3b83561309
1 changed files with 3 additions and 0 deletions

View File

@ -3,3 +3,6 @@
NAME='gmp' NAME='gmp'
VERSION='6.3.0' VERSION='6.3.0'
DOWNLOAD_URL="https://ftp.gnu.org/gnu/gmp/gmp-$VERSION.tar.xz#a3c2b80201b89e68616f4ad30bc66aee4927c3ce50e33929ca819d5c43538898" DOWNLOAD_URL="https://ftp.gnu.org/gnu/gmp/gmp-$VERSION.tar.xz#a3c2b80201b89e68616f4ad30bc66aee4927c3ce50e33929ca819d5c43538898"
# configure does not work with (default) c23
export CFLAGS="--std=c17 $CFLAGS"