Add tcl/tk BuildRequires

The git-gui build tries to use tclsh to generate an index file.  It
falls back to a static list, which is why this wasn't noticed before.
It's not a real problem, but git may soon also try to test that wish is
installed before building and installing git-gui and gitk, so this helps
prepare for that future.
This commit is contained in:
Todd Zullinger 2017-11-21 22:50:59 -05:00
parent 99aec7086b
commit 08602e223b

View File

@ -118,6 +118,8 @@ BuildRequires: perl-generators
BuildRequires: perl(Test)
BuildRequires: openssl-devel
BuildRequires: zlib-devel >= 1.2
BuildRequires: tcl
BuildRequires: tk
%if %{bashcomp_pkgconfig}
BuildRequires: pkgconfig(bash-completion)
%endif
@ -793,6 +795,9 @@ rm -rf %{buildroot}
# No files for you!
%changelog
* Tue Nov 21 2017 Todd Zullinger <tmz@pobox.com>
- Add tcl/tk BuildRequires
* Tue Nov 07 2017 Todd Zullinger <tmz@pobox.com> - 2.15.0-2
- Fix git-clone memory exhaustion (CVE-2017-15298)
Resolves: #1510455, #1510457