build wget with libpsl support (#1123616)
Signed-off-by: Tomas Hozza <thozza@redhat.com>
This commit is contained in:
parent
194ca6f46f
commit
6e00fda524
19
wget.spec
19
wget.spec
@ -1,7 +1,7 @@
|
|||||||
Summary: A utility for retrieving files using the HTTP or FTP protocols
|
Summary: A utility for retrieving files using the HTTP or FTP protocols
|
||||||
Name: wget
|
Name: wget
|
||||||
Version: 1.16.1
|
Version: 1.16.1
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
License: GPLv3+
|
License: GPLv3+
|
||||||
Group: Applications/Internet
|
Group: Applications/Internet
|
||||||
Url: http://www.gnu.org/software/wget/
|
Url: http://www.gnu.org/software/wget/
|
||||||
@ -17,7 +17,7 @@ Requires(post): /sbin/install-info
|
|||||||
Requires(preun): /sbin/install-info
|
Requires(preun): /sbin/install-info
|
||||||
# needed for test suite
|
# needed for test suite
|
||||||
BuildRequires: perl-HTTP-Daemon, python3
|
BuildRequires: perl-HTTP-Daemon, python3
|
||||||
BuildRequires: openssl-devel, pkgconfig, texinfo, gettext, autoconf, libidn-devel, libuuid-devel, perl-podlators
|
BuildRequires: openssl-devel, pkgconfig, texinfo, gettext, autoconf, libidn-devel, libuuid-devel, perl-podlators, libpsl-devel
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -42,7 +42,17 @@ if pkg-config openssl ; then
|
|||||||
CPPFLAGS=`pkg-config --cflags openssl`; export CPPFLAGS
|
CPPFLAGS=`pkg-config --cflags openssl`; export CPPFLAGS
|
||||||
LDFLAGS=`pkg-config --libs openssl`; export LDFLAGS
|
LDFLAGS=`pkg-config --libs openssl`; export LDFLAGS
|
||||||
fi
|
fi
|
||||||
%configure --with-ssl=openssl --enable-largefile --enable-opie --enable-digest --enable-ntlm --enable-nls --enable-ipv6 --disable-rpath
|
%configure \
|
||||||
|
--with-ssl=openssl \
|
||||||
|
--with-libpsl \
|
||||||
|
--enable-largefile \
|
||||||
|
--enable-opie \
|
||||||
|
--enable-digest \
|
||||||
|
--enable-ntlm \
|
||||||
|
--enable-nls \
|
||||||
|
--enable-ipv6 \
|
||||||
|
--disable-rpath
|
||||||
|
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
@ -75,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_infodir}/*
|
%{_infodir}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Dec 16 2014 Tomas Hozza <thozza@redhat.com> - 1.16.1-2
|
||||||
|
- build wget with libpsl support (#1123616)
|
||||||
|
|
||||||
* Thu Dec 11 2014 Tomas Hozza <thozza@redhat.com> - 1.16.1-1
|
* Thu Dec 11 2014 Tomas Hozza <thozza@redhat.com> - 1.16.1-1
|
||||||
- update to 1.16.1
|
- update to 1.16.1
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user