- build: Fix default pacemaker-remoted path - Update to version 3.0.0+20250210.af3642fbf6: - libcrmcluster: prevent external callers from triggering assertion when connecting to cluster (gh#ClusterLabs/pacemaker#3821) - Update to version 3.0.0+20250207.d06c888ba7: - libpacemaker: Reset scheduler object in pcmk_simulate() - libpe_status: Make cluster_status() idempotent - tools: Fix overflow in crm_simulate --repeat - libpacemaker: Handle scandir() error in pcmk__profile_dir() - libpacemaker: Fix mem leak in pcmk__profile_dir() - tools: Avoid crash in crm_simulate --profile - Update to version 3.0.0+20250205.88e9ec1325: - libcrmservices: Unref the dbus connection... (gh#ClusterLabs/pacemaker#3816) - libcrmservices: Don't leak msg if systemd_proxy is NULL. (gh#ClusterLabs/pacemaker#3816) - Update to version 3.0.0+20250203.f950b1d05d: - python: Add python value for new CRM_EX_NO_DC exit code. (gh#ClusterLabs/pacemaker#3815) - libcrmcommon: Fix memory leak in text_end_list()/curses_end_list() (gh#ClusterLabs/pacemaker#3814) - crmadmin: return error if DC is not elected #2902 #3606 (gh#ClusterLabs/pacemaker#3716) - Update to version 3.0.0+20250128.0de22e5f75: - libraries: Update version numbers in so names - Rebase: * bug-995365_pacemaker-cts-restart-systemd-journald.patch - Update to version 3.0.0+20250114.7dc494a96f: - controller: best practices for send_stonith_update() (gh#ClusterLabs/pacemaker#3796) OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/pacemaker?expand=0&rev=409
18 lines
875 B
Diff
18 lines
875 B
Diff
Index: pacemaker-2.1.4+20220825.b676a8701/configure.ac
|
|
===================================================================
|
|
--- pacemaker-2.1.4+20220825.b676a8701.orig/configure.ac
|
|
+++ pacemaker-2.1.4+20220825.b676a8701/configure.ac
|
|
@@ -1778,10 +1778,10 @@ dnl otherwise none of both
|
|
[
|
|
AC_DEFINE([HAVE_FORMAT_NONLITERAL], [],
|
|
[gcc can complain about nonliterals in format])
|
|
- EXTRA_FLAGS="$EXTRA_FLAGS -Wformat=2 -Wformat-nonliteral"
|
|
+ EXTRA_FLAGS="$EXTRA_FLAGS -Wformat=2 -Wformat-nonliteral -Wno-format-signedness"
|
|
],
|
|
[test x"$gcc_format_nonliteral" = x"yes"],
|
|
- [EXTRA_FLAGS="$EXTRA_FLAGS -Wformat=2"])
|
|
+ [EXTRA_FLAGS="$EXTRA_FLAGS -Wformat=2 -Wno-format-signedness"])
|
|
|
|
# Additional warnings it might be nice to enable one day
|
|
# -Wshadow
|