From d176f111357384badfb1dc836a034ef3edf5ccbf Mon Sep 17 00:00:00 2001 From: Kamil Dudka Date: Tue, 1 Dec 2009 12:26:51 +0000 Subject: [PATCH] - do not require valgrind on s390 and s390x --- curl.spec | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/curl.spec b/curl.spec index 4ef92f8..45322e3 100644 --- a/curl.spec +++ b/curl.spec @@ -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 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 7.19.7-2 - workaround for broken TLS servers (#525496, #527771)