Add flag to linker flags

Related: rhbz#1995795
This commit is contained in:
Tomas Korbar 2021-11-12 13:23:48 +01:00
parent ae36c057c6
commit 0d2c10f233

View File

@ -24,7 +24,7 @@
Name: %{libname}-awesome
Summary: Client library and command line tools for memcached server
Version: %{upstream_version}%{?upstream_prever:~%{upstream_prever}}
Release: 10%{?dist}
Release: 11%{?dist}
License: BSD
URL: https://github.com/%{gh_owner}/%{gh_project}
Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{gh_project}-%{version}-%{gh_short}.tar.gz
@ -131,6 +131,8 @@ rm test/tests/memcached/udp.cpp
%build
%set_build_flags
LDFLAGS="${LDFLAGS} -Wl,--enable-new-dtags"
%cmake \
-DBUILD_TESTING:BOOL=ON \
-DBUILD_DOCS_MAN:BOOL=ON \
@ -199,6 +201,10 @@ rm -r %{buildroot}%{_datadir}/doc/%{name}/
%changelog
* Fri Nov 12 2021 Tomas Korbar <tkorbar@redhat.com> - 1.1.0-11
- Add flag to linker flags
- Related: rhbz#1995795
* Thu Nov 11 2021 Tomas Korbar <tkorbar@redhat.com> - 1.1.0-10
- Remove aes implementation from the sources completely
- Resolves: rhbz#1995795