New commits:
commit 886ade9d6823f4cd5467523ad1d1680ad26a8a27
Author: Pavel Vinogradov <public AT sourcemage.org>
Commit: Pavel Vinogradov <public AT sourcemage.org>
libs/ncurses: fixed building with GCC >= 15
diff --git a/libs/ncurses/BUILD b/libs/ncurses/BUILD
index 512034f..2943c64 100755
--- a/libs/ncurses/BUILD
+++ b/libs/ncurses/BUILD
@@ -5,6 +5,10 @@ if [[ $UTF8 == y ]]; then
OPTS="$OPTS --enable-widec"
fi &&
OPTS+=" --with-shared --enable-pc-files" &&
+
+# for GCC >= 15
+CFLAGS="-std=gnu17 ${CFLAGS}" &&
+
./configure --prefix="$TRACK_ROOT"/usr \
--sysconfdir="$TRACK_ROOT"/etc \
--localstatedir="$TRACK_ROOT"/var \
diff --git a/libs/ncurses/HISTORY b/libs/ncurses/HISTORY
index 2c155ab..6ff5436 100644
--- a/libs/ncurses/HISTORY
+++ b/libs/ncurses/HISTORY
@@ -1,3 +1,6 @@
+2025-07-27 Pavel Vinogradov <public AT sourcemage.org>
+ * BUILD: fixed building with GCC >= 15
+
2024-04-28 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 6.5
[[SM-Commit] ] GIT changes to master grimoire by Pavel Vinogradov (886ade9d6823f4cd5467523ad1d1680ad26a8a27),
Pavel Vinogradov, 07/27/2025