Related: #2005874 - re-disable HSTS in libcurl

... as an experimental feature
This commit is contained in:
Kamil Dudka 2021-10-26 17:15:50 +02:00
parent 64fed6be02
commit a3da9b9ac3
1 changed files with 6 additions and 4 deletions

View File

@ -1,7 +1,7 @@
Summary: A utility for getting files from remote servers (FTP, HTTP, and others)
Name: curl
Version: 7.76.1
Release: 13%{?dist}
Release: 14%{?dist}
License: MIT
Source: https://curl.se/download/%{name}-%{version}.tar.xz
@ -261,9 +261,10 @@ autoreconf -fiv
mkdir build-{full,minimal}
export common_configure_opts=" \
--cache-file=../config.cache \
--disable-hsts \
--disable-static \
--enable-symbol-hiding \
--enable-ipv6 \
--enable-symbol-hiding \
--enable-threaded-resolver \
--without-libmetalink \
--without-zstd \
@ -279,7 +280,6 @@ export common_configure_opts=" \
%configure $common_configure_opts \
--disable-dict \
--disable-gopher \
--disable-hsts \
--disable-imap \
--disable-ldap \
--disable-ldaps \
@ -306,7 +306,6 @@ export common_configure_opts=" \
%configure $common_configure_opts \
--enable-dict \
--enable-gopher \
--enable-hsts \
--enable-imap \
--enable-ldap \
--enable-ldaps \
@ -437,6 +436,9 @@ rm -f ${RPM_BUILD_ROOT}%{_libdir}/libcurl.la
%{_libdir}/libcurl.so.4.[0-9].[0-9].minimal
%changelog
* Tue Oct 26 2021 Kamil Dudka <kdudka@redhat.com> - 7.76.1-14
- re-disable HSTS in libcurl as an experimental feature (#2005874)
* Mon Oct 04 2021 Kamil Dudka <kdudka@redhat.com> - 7.76.1-13
- disable more protocols and features in libcurl-minimal (#2005874)