From 1808754b2911666ea39e7c87f890c7880f974148 Mon Sep 17 00:00:00 2001 From: cherry530 Date: Thu, 2 Feb 2023 10:39:46 +0800 Subject: [PATCH] Add buildrequires krb5-devel to fix check configure error Signed-off-by: cherry530 --- lighttpd.spec | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lighttpd.spec b/lighttpd.spec index 75d38b3..ff381c3 100644 --- a/lighttpd.spec +++ b/lighttpd.spec @@ -20,7 +20,7 @@ Summary: Lightning fast webserver with light system requirements Name: lighttpd Version: 1.4.67 -Release: 1 +Release: 2 License: BSD-3-Clause and OML and GPLv3 and GPLv2 URL: https://github.com/lighttpd/lighttpd1.4 Source0: http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-%{version}.tar.xz @@ -43,6 +43,9 @@ Requires(postun): /sbin/service Provides: webserver BuildRequires: openssl-devel, pcre-devel, bzip2-devel, zlib-devel, autoconf, automake, libtool BuildRequires: /usr/bin/awk, libattr-devel +%if %{with krb5} +BuildRequires: krb5-devel +%endif %{?with_ldap:BuildRequires: openldap-devel} %{?with_fam:BuildRequires: gamin-devel} %{?with_webdavprops:BuildRequires: libxml2-devel} @@ -251,6 +254,9 @@ fi %attr(0700, lighttpd, lighttpd) %dir %{webroot}/ %changelog +* Thu Feb 02 2023 xu_ping - 1.4.67-2 +- Add buildrequires krb5-devel to fix check configure error + * Wed Oct 12 2022 liangqifeng - 1.4.67-1 - update to 1.4.67 to fix CVE-2022-41556 -- Gitee