From 3e3abb981d249f4846eb124b67e97828792d1666 Mon Sep 17 00:00:00 2001 From: tzing_t Date: Mon, 25 Nov 2024 06:57:16 +0000 Subject: [PATCH] Ignore deprecated warnings --- protobuf.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/protobuf.spec b/protobuf.spec index c6d4336..9c03192 100644 --- a/protobuf.spec +++ b/protobuf.spec @@ -8,7 +8,7 @@ Summary: Protocol Buffers - Google's data interchange format Name: protobuf Version: 3.14.0 -Release: 8 +Release: 9 License: BSD URL: https://github.com/protocolbuffers/protobuf Source: https://github.com/protocolbuffers/protobuf/releases/download/v%{version}%{?rcver}/%{name}-all-%{version}%{?rcver}.tar.gz @@ -236,7 +236,7 @@ fail=0 %else fail=1 %endif -%make_build check CXXFLAGS="%{build_cxxflags} -Wno-error=type-limits" || exit $fail +%make_build check CXXFLAGS="%{build_cxxflags} -Wno-error=type-limits -Wno-deprecated-declarations" || exit $fail %install @@ -332,6 +332,9 @@ install -p -m 0644 %{SOURCE1} %{buildroot}%{_emacs_sitestartdir} %endif %changelog +* Mon Nov 25 2024 tzing_t - 3.14.0-9 +- Ignore deprecated warnings + * Wed Dec 06 2023 konglidong - 3.14.0-8 - obsolets protobuf2 for fix install conflict -- Gitee