1
0
forked from rpms/curl

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

View File

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