mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
https://lists.samba.org/archive/samba-technical/2026-July/140952.html https://lists.samba.org/archive/samba-technical/2026-June/140908.html Version 7.5 was not announced separately: https://wiki.samba.org/index.php/LinuxCIFS_utils "December, 2025: Release 7.5 - Various fixes for utilities" https://git.samba.org/?p=cifs-utils.git;a=shortlog;h=refs/tags/cifs-utils-7.5 Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
37 lines
1.1 KiB
Makefile
37 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# cifs-utils
|
|
#
|
|
################################################################################
|
|
|
|
CIFS_UTILS_VERSION = 7.7
|
|
CIFS_UTILS_SOURCE = cifs-utils-$(CIFS_UTILS_VERSION).tar.bz2
|
|
CIFS_UTILS_SITE = http://ftp.samba.org/pub/linux-cifs/cifs-utils
|
|
CIFS_UTILS_LICENSE = GPL-3.0+
|
|
CIFS_UTILS_LICENSE_FILES = COPYING
|
|
CIFS_UTILS_CPE_ID_VENDOR = samba
|
|
# Missing install-sh in release tarball
|
|
CIFS_UTILS_AUTORECONF = YES
|
|
CIFS_UTILS_DEPENDENCIES = host-pkgconf libtalloc
|
|
|
|
# Let's disable PIE unconditionally. We want PIE to be enabled only by
|
|
# the global BR2_RELRO_FULL option.
|
|
CIFS_UTILS_CONF_OPTS = --disable-pie --disable-man
|
|
|
|
# uses C11 code in smbinfo.c and mtab.c
|
|
CIFS_UTILS_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) -std=gnu11"
|
|
|
|
ifeq ($(BR2_PACKAGE_KEYUTILS),y)
|
|
CIFS_UTILS_DEPENDENCIES += keyutils
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_CIFS_UTILS_SMBTOOLS),)
|
|
define CIFS_UTILS_REMOVE_SMBTOOLS
|
|
rm -f $(TARGET_DIR)/usr/bin/smbinfo
|
|
rm -f $(TARGET_DIR)/usr/bin/smb2-quota
|
|
endef
|
|
CIFS_UTILS_POST_INSTALL_TARGET_HOOKS += CIFS_UTILS_REMOVE_SMBTOOLS
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|