kumquat-buildroot/package/ksmbd-tools/ksmbd-tools.mk
Fabrice Fontaine bbb3e46158 package/ksmbd-tools: bump to version 3.4.4
This bump will fix build failure with libkrb5 raised since the addition
of the package in commit 6be9913a7e:

management/spnego.c:25:10: fatal error: spnego_mech.h: No such file or directory
   25 | #include "spnego_mech.h"
      |          ^~~~~~~~~~~~~~~

https://github.com/cifsd-team/ksmbd-tools/releases/tag/3.4.4

Fixes:
 - http://autobuild.buildroot.org/results/b4c3dba395327ab6ae28337efb962c99b2d5b922

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-01-22 23:35:13 +01:00

21 lines
622 B
Makefile

################################################################################
#
# ksmbd-tools
#
################################################################################
KSMBD_TOOLS_VERSION = 3.4.4
KSMBD_TOOLS_SITE = https://github.com/cifsd-team/ksmbd-tools/releases/download/$(KSMBD_TOOLS_VERSION)
KSMBD_TOOLS_LICENSE = GPL-2.0+
KSMBD_TOOLS_LICENSE_FILES = COPYING
KSMBD_TOOLS_DEPENDENCIES = host-pkgconf libglib2 libnl
ifeq ($(BR2_PACKAGE_LIBKRB5),y)
KSMBD_TOOLS_CONF_OPTS += --enable-krb5
KSMBD_TOOLS_DEPENDENCIES += libkrb5
else
KSMBD_TOOLS_CONF_OPTS += --disable-krb5
endif
$(eval $(autotools-package))