- do not require valgrind on s390 and s390x

This commit is contained in:
Kamil Dudka 2009-12-01 12:26:51 +00:00
parent ae8ab8a8f9
commit d176f11135
1 changed files with 11 additions and 1 deletions

View File

@ -1,7 +1,7 @@
Summary: A utility for getting files from remote servers (FTP, HTTP, and others)
Name: curl
Version: 7.19.7
Release: 2%{?dist}
Release: 3%{?dist}
License: MIT
Group: Applications/Internet
Source: http://curl.haxx.se/download/%{name}-%{version}.tar.lzma
@ -29,7 +29,13 @@ BuildRequires: openldap-devel
BuildRequires: pkgconfig
BuildRequires: stunnel
# valgrind is not available on some architectures, however it's going to be
# used only by the test-suite anyway
%ifnarch s390 s390x
BuildRequires: valgrind
%endif
BuildRequires: zlib-devel
Requires: libcurl = %{version}-%{release}
@ -163,6 +169,10 @@ rm -rf $RPM_BUILD_ROOT
%{_datadir}/aclocal/libcurl.m4
%changelog
* Tue Dec 01 2009 Kamil Dudka <kdudka@redhat.com> 7.19.7-3
- do not require valgrind on s390 and s390x
- temporarily disabled SCP/SFTP test-suite (#539444)
* Thu Nov 26 2009 Kamil Dudka <kdudka@redhat.com> 7.19.7-2
- workaround for broken TLS servers (#525496, #527771)