git: 5b0dc991093c - main - vendor/bc: upgrade to version 7.0.1
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 28 Aug 2024 16:58:37 UTC
The branch main has been updated by se:
URL: https://cgit.FreeBSD.org/src/commit/?id=5b0dc991093c82824f6fe566af947f64f5072264
commit 5b0dc991093c82824f6fe566af947f64f5072264
Author: Stefan Eßer <se@FreeBSD.org>
AuthorDate: 2024-08-28 16:46:05 +0000
Commit: Stefan Eßer <se@FreeBSD.org>
CommitDate: 2024-08-28 16:52:54 +0000
vendor/bc: upgrade to version 7.0.1
This update fixes building bc on FreeBSD with non-default compilers
(GCC-12, GCC-13). GCC warned about casting argv from non-const to const
and since warnings are treated as errors, the build failed.
(cherry picked from commit 1e19146fc7692f59e8dfc5da7957e938cd0b81b8)
---
contrib/bc/NEWS.md | 6 ++++++
contrib/bc/include/version.h | 2 +-
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/contrib/bc/NEWS.md b/contrib/bc/NEWS.md
index 1775fa0b6533..8156b673ce04 100644
--- a/contrib/bc/NEWS.md
+++ b/contrib/bc/NEWS.md
@@ -1,5 +1,11 @@
# News
+## 7.0.1
+
+This is a production release that fixes a warning using GCC on FreeBSD.
+
+Other users do ***NOT*** need to upgrade.
+
## 7.0.0
This is a production release to fix three bugs.
diff --git a/contrib/bc/include/version.h b/contrib/bc/include/version.h
index 897a19530e3f..4d2f6acfb433 100644
--- a/contrib/bc/include/version.h
+++ b/contrib/bc/include/version.h
@@ -37,6 +37,6 @@
#define BC_VERSION_H
/// The current version.
-#define VERSION 7.0.0
+#define VERSION 7.0.1
#endif // BC_VERSION_H