From 76a90f47ba0c8bb36b46285f0bb0b18ecc8280ad Mon Sep 17 00:00:00 2001 From: lishunlong Date: Wed, 20 Mar 2024 09:42:13 +0800 Subject: [PATCH] Fix:WITH_LDS does not take effect during compilation, causing a function conflict with the same name as glibc.so MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 编译时WITH_LDS没生效,导致与glibc.so发生同名函数冲突 --- librdkafka.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/librdkafka.spec b/librdkafka.spec index ca7ff9b..7821f69 100644 --- a/librdkafka.spec +++ b/librdkafka.spec @@ -1,12 +1,12 @@ Name: librdkafka Version: 0.11.4 -Release: 4 +Release: 5 Summary: C library implementation of the Apache Kafka protocol License: BSD URL: https://github.com/edenhill/librdkafka Source0: https://github.com/edenhill/librdkafka/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz -BuildRequires: gcc-c++ python3 openssl-devel cyrus-sasl-devel lz4-devel +BuildRequires: gcc-c++ python3 openssl-devel cyrus-sasl-devel lz4-devel python3-unversioned-command %description ibrdkafka is a C library implementation of the Apache Kafka protocol, providing Producer, Consumer @@ -53,6 +53,9 @@ make check %{_libdir}/pkgconfig/* %changelog +* Wed Mar 20 2024 lishunlong - 0.11.4-5 +- Fix recognition of WITH_LDS when compiling + * Mon Oct 26 2020 leiju - 0.11.4-4 - Modify BuildRequires from python2 to python3 -- Gitee