From: Andrew Sim Date: Thu, 6 Oct 2022 20:44:23 +0000 (+0200) Subject: samba4: update to 4.17.0 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=402f4ba4eff65b80a9deaa6085256112bec4d67b;p=feed%2Fpackages.git samba4: update to 4.17.0 Signed-off-by: Andrew Sim --- diff --git a/net/samba4/Makefile b/net/samba4/Makefile index d80a182602..de9e3be700 100644 --- a/net/samba4/Makefile +++ b/net/samba4/Makefile @@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=samba -PKG_VERSION:=4.14.14 +PKG_VERSION:=4.17.0 PKG_RELEASE:=$(AUTORELEASE) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz @@ -13,7 +13,7 @@ PKG_SOURCE_URL:= \ http://www.nic.funet.fi/index/samba/pub/samba/stable/ \ http://samba.mirror.bit.nl/samba/ftp/stable/ \ https://download.samba.org/pub/samba/stable/ -PKG_HASH:=abd5e9e6aa45e55114b188ba189ebdfc8fd3d7718d43f749e477ce7f791e5519 +PKG_HASH:=04868ecda82fcbeda7b8bf519a2461a64d55c6e70efc6f6053b2fbba55f1823a PKG_LICENSE:=GPL-3.0-only PKG_LICENSE_FILES:=COPYING @@ -61,7 +61,7 @@ endef define Package/samba4-libs $(call Package/samba4/Default) TITLE+= libs - DEPENDS:= +libtirpc +libreadline +libpopt +libcap +zlib +libgnutls +libtasn1 +libuuid +libopenssl +libpthread +KERNEL_IO_URING:liburing \ + DEPENDS:= +libtirpc +libreadline +libpopt +libcap +zlib +libgnutls +perlbase-json-pp +libtasn1 +libuuid +libopenssl +libpthread +KERNEL_IO_URING:liburing \ +PACKAGE_libpam:libpam \ +SAMBA4_SERVER_VFS:attr \ +SAMBA4_SERVER_AVAHI:libavahi-client \ @@ -177,7 +177,6 @@ CONFIGURE_ARGS += \ --without-automount \ --without-iconv \ --without-lttng \ - --without-ntvfs-fileserver \ --without-pam \ --without-systemd \ --without-utmp \ @@ -202,7 +201,6 @@ HOST_CONFIGURE_ARGS += \ --without-automount \ --without-iconv \ --without-lttng \ - --without-ntvfs-fileserver \ --without-pam \ --without-systemd \ --without-utmp \ @@ -214,7 +212,7 @@ HOST_CONFIGURE_ARGS += \ HOST_CONFIGURE_ARGS += --disable-avahi --without-quotas --without-acl-support --without-winbind \ --without-ad-dc --without-json --without-libarchive --disable-python --nopyc --nopyo \ - --without-dnsupdate --without-ads --without-ldap --without-ldb-lmdb + --without-ads --without-ldap --without-ldb-lmdb # Optional AES-NI support - https://lists.samba.org/archive/samba-technical/2017-September/122738.html # Support for Nettle wasn't comitted @@ -246,7 +244,7 @@ ifeq ($(CONFIG_SAMBA4_SERVER_AD_DC),y) CONFIGURE_ARGS += --without-winbind --without-ldb-lmdb --with-acl-support else CONFIGURE_ARGS += --without-winbind --without-ads --without-ldap --without-ldb-lmdb --without-ad-dc \ - --without-json --without-libarchive --disable-python --nopyc --nopyo --without-dnsupdate --without-acl-support + --without-json --without-libarchive --disable-python --nopyc --nopyo --without-acl-support endif SAMBA4_PDB_MODULES :=pdb_smbpasswd,pdb_tdbsam, @@ -309,6 +307,7 @@ CONFIGURE_ARGS += --private-libraries=$(SYSTEM_PRIVATE_BUNDLED_LIBS) export COMPILE_ET=$(STAGING_DIR_HOSTPKG)/bin/compile_et_samba export ASN1_COMPILE=$(STAGING_DIR_HOSTPKG)/bin/asn1_compile_samba +export PYTHONHASHSEED=1 # make sure we use the hostpkg build toolset and we need to find host 'yapp' HOST_CONFIGURE_VARS+= \ @@ -327,6 +326,9 @@ define Host/Prepare $(call Host/Prepare/Default) $(SED) 's,mandatory=True,mandatory=False,g' $(HOST_BUILD_DIR)/wscript_configure_system_gnutls $(SED) 's,gnutls_version =.*,gnutls_version = gnutls_min_required_version,g' $(HOST_BUILD_DIR)/wscript_configure_system_gnutls + $(SED) 's,gnutls_version_str.*,gnutls_version_str = "3.7.7",g' $(HOST_BUILD_DIR)/wscript_configure_system_gnutls + $(SED) 's,(gnutls_version > .*,(parse_version(gnutls_version) > parse_version("3.6.10")):,g' $(HOST_BUILD_DIR)/wscript_configure_system_gnutls + $(SED) 's,(gnutls_version < .*,(parse_version(gnutls_version) < parse_version("3.5.2")):,g' $(HOST_BUILD_DIR)/wscript_configure_system_gnutls endef define Host/Compile (cd $(HOST_BUILD_DIR); \ diff --git a/net/samba4/patches/001-samba-4.4.0-pam.patch b/net/samba4/patches/001-samba-4.4.0-pam.patch deleted file mode 100644 index 72de066198..0000000000 --- a/net/samba4/patches/001-samba-4.4.0-pam.patch +++ /dev/null @@ -1,29 +0,0 @@ ---- a/source3/wscript -+++ b/source3/wscript -@@ -885,7 +885,7 @@ msg.msg_accrightslen = sizeof(fd); - if conf.env.with_iconv: - conf.DEFINE('HAVE_ICONV', 1) - -- if Options.options.with_pam: -+ if Options.options.with_pam != False: - use_pam=True - conf.CHECK_HEADERS('security/pam_appl.h pam/pam_appl.h') - if not conf.CONFIG_SET('HAVE_SECURITY_PAM_APPL_H') and not conf.CONFIG_SET('HAVE_PAM_PAM_APPL_H'): -@@ -962,6 +962,17 @@ int i; i = PAM_RADIO_TYPE; - "or headers not found. Use --without-pam to disable " - "PAM support."); - -+ else: -+ Logs.warn("PAM disabled") -+ use_pam=False -+ conf.undefine('WITH_PAM') -+ conf.undefine('WITH_PAM_MODULES') -+ conf.undefine('HAVE_SECURITY_PAM_APPL_H') -+ conf.undefine('PAM_RHOST') -+ conf.undefine('PAM_TTY') -+ conf.undefine('HAVE_PAM_PAM_APPL_H') -+ -+ - seteuid = False - - # diff --git a/net/samba4/patches/002-dnsserver-4.7.0.patch b/net/samba4/patches/002-dnsserver-4.7.0.patch deleted file mode 100644 index 0c7592f8e2..0000000000 --- a/net/samba4/patches/002-dnsserver-4.7.0.patch +++ /dev/null @@ -1,19 +0,0 @@ -samba: build dnsserver_common code - -Just 'install' does not seem to do it. - -Upstream-Status: Pending - -Signed-off-by: Joe Slater - ---- a/source4/dns_server/wscript_build -+++ b/source4/dns_server/wscript_build -@@ -4,7 +4,7 @@ bld.SAMBA_LIBRARY('dnsserver_common', - source='dnsserver_common.c', - deps='samba-util samba-errors ldbsamba clidns', - private_library=True, -- install=bld.AD_DC_BUILD_IS_ENABLED() -+ enabled=bld.AD_DC_BUILD_IS_ENABLED() - ) - - bld.SAMBA_MODULE('service_dns', diff --git a/net/samba4/patches/006-netdb-defines.patch b/net/samba4/patches/006-netdb-defines.patch deleted file mode 100644 index a11f8d15c5..0000000000 --- a/net/samba4/patches/006-netdb-defines.patch +++ /dev/null @@ -1,17 +0,0 @@ ---- a/nsswitch/wins.c -+++ b/nsswitch/wins.c -@@ -40,6 +40,14 @@ static pthread_mutex_t wins_nss_mutex = - #define INADDRSZ 4 - #endif - -+#ifndef NETDB_INTERNAL -+#define NETDB_INTERNAL -1 -+#endif -+ -+#ifndef NETDB_SUCCESS -+#define NETDB_SUCCESS 0 -+#endif -+ - NSS_STATUS _nss_wins_gethostbyname_r(const char *hostname, - struct hostent *he, - char *buffer, diff --git a/net/samba4/patches/007-libldb-fix-musl-libc-unkown-type-error.patch b/net/samba4/patches/007-libldb-fix-musl-libc-unkown-type-error.patch index 29928976b4..7e25ee43d7 100644 --- a/net/samba4/patches/007-libldb-fix-musl-libc-unkown-type-error.patch +++ b/net/samba4/patches/007-libldb-fix-musl-libc-unkown-type-error.patch @@ -15,9 +15,9 @@ Signed-off-by: Changqing Li --- a/lib/tevent/tevent.h +++ b/lib/tevent/tevent.h -@@ -32,6 +32,8 @@ - #include +@@ -33,6 +33,8 @@ #include + #include #include +#include +#include diff --git a/net/samba4/patches/009-samba-4-11-fix-host-tools-checks.patch.patch b/net/samba4/patches/009-samba-4-11-fix-host-tools-checks.patch.patch index 284c09d85a..5c5c52db86 100644 --- a/net/samba4/patches/009-samba-4-11-fix-host-tools-checks.patch.patch +++ b/net/samba4/patches/009-samba-4-11-fix-host-tools-checks.patch.patch @@ -1,9 +1,9 @@ --- a/wscript_configure_embedded_heimdal +++ b/wscript_configure_embedded_heimdal -@@ -2,3 +2,14 @@ if not conf.env['FLEX']: - conf.fatal("Embedded Heimdal build requires flex but it was not found. Install flex or use --with-system-mitkrb5 or --with-system-heimdalkrb5") +@@ -6,3 +6,14 @@ if not conf.env['BISON']: - conf.RECURSE('source4/heimdal_build') + conf.define('USING_EMBEDDED_HEIMDAL', 1) + conf.RECURSE('third_party/heimdal_build') + +def check_system_heimdal_binary(name): + if conf.LIB_MAY_BE_BUNDLED(name): @@ -32,11 +32,13 @@ check_system_heimdal_lib("com_err", "com_right_r com_err", "com_err.h") if check_system_heimdal_lib("roken", "rk_socket_set_reuseaddr", "roken.h"): -@@ -96,7 +88,4 @@ finally: +@@ -86,9 +78,6 @@ finally: #if conf.CHECK_BUNDLED_SYSTEM('tommath', checkfunctions='mp_init', headers='tommath.h'): # conf.define('USING_SYSTEM_TOMMATH', 1) -check_system_heimdal_binary("compile_et") -check_system_heimdal_binary("asn1_compile") - + conf.env.KRB5_VENDOR = 'heimdal' conf.define('USING_SYSTEM_KRB5', 1) + conf.define('USING_SYSTEM_HEIMDAL', 1) diff --git a/net/samba4/patches/010-samba-4-12-fix-musl_missing__nss_buflen_passwd.patch b/net/samba4/patches/010-samba-4-12-fix-musl_missing__nss_buflen_passwd.patch index bbc66a0572..b0d08f5c8b 100644 --- a/net/samba4/patches/010-samba-4-12-fix-musl_missing__nss_buflen_passwd.patch +++ b/net/samba4/patches/010-samba-4-12-fix-musl_missing__nss_buflen_passwd.patch @@ -1,12 +1,13 @@ --- a/lib/util/util_paths.c +++ b/lib/util/util_paths.c -@@ -26,6 +26,9 @@ - #include "dynconfig/dynconfig.h" - #include "lib/util/util_paths.h" +@@ -28,6 +28,10 @@ #include "system/passwd.h" + #include "system/filesys.h" + +#if !defined(__GLIBC__) + #define NSS_BUFLEN_PASSWD 1024 +#endif - ++ /** * @brief Returns an absolute path to a file in the Samba modules directory. + * diff --git a/net/samba4/patches/011-samba-4-14-disable-python-module-host-check.patch b/net/samba4/patches/011-samba-4-14-disable-python-module-host-check.patch index ee84f779d3..d28f08b9df 100644 --- a/net/samba4/patches/011-samba-4-14-disable-python-module-host-check.patch +++ b/net/samba4/patches/011-samba-4-14-disable-python-module-host-check.patch @@ -1,8 +1,8 @@ --- a/python/wscript +++ b/python/wscript -@@ -73,9 +73,9 @@ def configure(conf): - for module, package in selftest_pkgs.items(): - find_third_party_module(conf, module, package) +@@ -90,9 +90,9 @@ def configure(conf): + "'python3-iso8601'. Please install " + "one of the packages.") - if not Options.options.without_ad_dc: - for module, package in ad_dc_pkgs.items(): diff --git a/net/samba4/patches/020-source3-msgsock-nvram-fix.patch b/net/samba4/patches/020-source3-msgsock-nvram-fix.patch index 351f87bf72..df5f56348d 100644 --- a/net/samba4/patches/020-source3-msgsock-nvram-fix.patch +++ b/net/samba4/patches/020-source3-msgsock-nvram-fix.patch @@ -1,6 +1,6 @@ --- a/source3/lib/messages.c +++ b/source3/lib/messages.c -@@ -507,7 +507,7 @@ static NTSTATUS messaging_init_internal( +@@ -500,7 +500,7 @@ static NTSTATUS messaging_init_internal( return NT_STATUS_ACCESS_DENIED; } @@ -9,7 +9,7 @@ if (priv_path == NULL) { return NT_STATUS_NO_MEMORY; } -@@ -670,7 +670,7 @@ NTSTATUS messaging_reinit(struct messagi +@@ -663,7 +663,7 @@ NTSTATUS messaging_reinit(struct messagi msg_ctx->per_process_talloc_ctx, msg_ctx->event_ctx, &msg_ctx->id.unique_id, diff --git a/net/samba4/patches/030_wafsamba-replace-echo-n-with-printf.patch b/net/samba4/patches/030_wafsamba-replace-echo-n-with-printf.patch deleted file mode 100644 index 7153110e7e..0000000000 --- a/net/samba4/patches/030_wafsamba-replace-echo-n-with-printf.patch +++ /dev/null @@ -1,30 +0,0 @@ -From: https://gitlab.com/samba-team/samba/-/commit/29f11005f56ebc2202e7883ea4d9ca7e7a46d9bb - -From 29f11005f56ebc2202e7883ea4d9ca7e7a46d9bb Mon Sep 17 00:00:00 2001 -From: "Sergey V. Lobanov" -Date: Thu, 10 Feb 2022 00:02:17 +0300 -Subject: [PATCH] wafsamba: replace 'echo -n' with printf - -This patch makes samba_cross.py compatible with old bash (e.g. 3.2) - -Signed-off-by: Sergey V. Lobanov -Reviewed-by: Christof Schmitt -Reviewed-by: Andreas Schneider - -Autobuild-User(master): Andreas Schneider -Autobuild-Date(master): Fri Feb 11 07:58:57 UTC 2022 on sn-devel-184 ---- - buildtools/wafsamba/samba_cross.py | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - ---- a/buildtools/wafsamba/samba_cross.py -+++ b/buildtools/wafsamba/samba_cross.py -@@ -134,7 +134,7 @@ class cross_Popen(Utils.subprocess.Popen - cross_answers_incomplete = True - add_answer(ca_file, msg, ans) - (retcode, retstring) = ans -- args = ['/bin/sh', '-c', "echo -n '%s'; exit %d" % (retstring, retcode)] -+ args = ['/bin/sh', '-c', "printf %%s '%s'; exit %d" % (retstring, retcode)] - real_Popen.__init__(*(obj, args), **kw) - - diff --git a/net/samba4/patches/102-samba-4.11-unbundle-libbsd.patch b/net/samba4/patches/102-samba-4.11-unbundle-libbsd.patch index 00c69bcc50..f5a6924dfa 100644 --- a/net/samba4/patches/102-samba-4.11-unbundle-libbsd.patch +++ b/net/samba4/patches/102-samba-4.11-unbundle-libbsd.patch @@ -1,6 +1,6 @@ --- a/lib/replace/wscript +++ b/lib/replace/wscript -@@ -416,22 +416,13 @@ def configure(conf): +@@ -436,22 +436,13 @@ def configure(conf): conf.CHECK_FUNCS('prctl dirname basename') @@ -29,7 +29,7 @@ conf.CHECK_CODE(''' struct ucred cred; -@@ -817,9 +808,6 @@ syscall(SYS_copy_file_range,0,NULL,0,NUL +@@ -834,9 +825,6 @@ syscall(SYS_copy_file_range,0,NULL,0,NUL # look for a method of finding the list of network interfaces for method in ['HAVE_IFACE_GETIFADDRS', 'HAVE_IFACE_AIX', 'HAVE_IFACE_IFCONF', 'HAVE_IFACE_IFREQ']: @@ -39,7 +39,7 @@ if conf.CHECK_CODE(''' #define %s 1 #define NO_CONFIG_H 1 -@@ -832,7 +820,7 @@ syscall(SYS_copy_file_range,0,NULL,0,NUL +@@ -849,7 +837,7 @@ syscall(SYS_copy_file_range,0,NULL,0,NUL #include "tests/getifaddrs.c" ''' % method, method, @@ -48,7 +48,7 @@ addmain=False, execute=True): break -@@ -880,7 +868,6 @@ def build(bld): +@@ -897,7 +885,6 @@ def build(bld): break extra_libs = '' diff --git a/net/samba4/patches/103-samba-4.12-unbundle-libunwind.patch b/net/samba4/patches/103-samba-4.12-unbundle-libunwind.patch index 14a010c426..e680e91ba3 100644 --- a/net/samba4/patches/103-samba-4.12-unbundle-libunwind.patch +++ b/net/samba4/patches/103-samba-4.12-unbundle-libunwind.patch @@ -1,23 +1,31 @@ --- a/lib/util/wscript_configure +++ b/lib/util/wscript_configure -@@ -11,13 +11,13 @@ conf.CHECK_FUNCS_IN('backtrace backtrace +@@ -12,17 +12,17 @@ conf.CHECK_FUNCS_IN('backtrace backtrace conf.CHECK_HEADERS('execinfo.h') conf.SET_TARGET_TYPE('LIBUNWIND', 'EMPTY') --if conf.check_cfg(package='libunwind-generic', -- args='--cflags --libs', -- msg='Checking for libunwind', -- uselib_store='LIBUNWIND', -- mandatory=False): -- if conf.CHECK_HEADERS('libunwind.h'): -- conf.SET_TARGET_TYPE('LIBUNWIND', 'SYSLIB') -+# if conf.check_cfg(package='libunwind-generic', -+ # args='--cflags --libs', -+ # msg='Checking for libunwind', -+ # uselib_store='LIBUNWIND', -+ # mandatory=False): -+ # if conf.CHECK_HEADERS('libunwind.h'): -+ # conf.SET_TARGET_TYPE('LIBUNWIND', 'SYSLIB') - - conf.CHECK_STRUCTURE_MEMBER('struct statvfs', 'f_frsize', define='HAVE_FRSIZE', headers='sys/statvfs.h') - +-if Options.options.with_libunwind: +- if conf.check_cfg(package='libunwind-generic', +- args='--cflags --libs', +- msg='Checking for libunwind', +- uselib_store='LIBUNWIND', +- mandatory=False): +- if conf.CHECK_HEADERS('libunwind.h'): +- conf.SET_TARGET_TYPE('LIBUNWIND', 'SYSLIB') +- else: +- raise Errors.WafError('--with-libunwind specified but libunwind not found') +-elif Options.options.with_libunwind == None: ++#if Options.options.with_libunwind: ++ #if conf.check_cfg(package='libunwind-generic', ++ #args='--cflags --libs', ++ #msg='Checking for libunwind', ++ #uselib_store='LIBUNWIND', ++ #mandatory=False): ++ #if conf.CHECK_HEADERS('libunwind.h'): ++ #conf.SET_TARGET_TYPE('LIBUNWIND', 'SYSLIB') ++ #else: ++ #raise Errors.WafError('--with-libunwind specified but libunwind not found') ++if Options.options.with_libunwind == None: + if not conf.CONFIG_SET('HAVE_BACKTRACE_SYMBOLS') \ + and not Options.options.disable_fault_handling: + raise Errors.WafError( diff --git a/net/samba4/patches/105-perl-json-pp.patch b/net/samba4/patches/105-perl-json-pp.patch new file mode 100644 index 0000000000..feb8aaaf41 --- /dev/null +++ b/net/samba4/patches/105-perl-json-pp.patch @@ -0,0 +1,20 @@ +--- a/third_party/heimdal/cf/make-proto.pl ++++ b/third_party/heimdal/cf/make-proto.pl +@@ -4,7 +4,7 @@ + use Getopt::Std; + use File::Compare; + +-use JSON; ++use JSON::PP; + + my $comment = 0; + my $doxygen = 0; +@@ -70,7 +70,7 @@ if($opt_x) { + my $EXP; + local $/; + open(EXP, '<', $opt_x) || die "open ${opt_x}"; +- my $obj = JSON->new->utf8->decode(); ++ my $obj = JSON::PP->new->utf8->decode(); + close $EXP; + + foreach my $x (keys %$obj) { diff --git a/net/samba4/waf-cross-answers/aarch64.txt b/net/samba4/waf-cross-answers/aarch64.txt index e81837c1cc..0714416f88 100644 --- a/net/samba4/waf-cross-answers/aarch64.txt +++ b/net/samba4/waf-cross-answers/aarch64.txt @@ -37,3 +37,4 @@ Checking whether the realpath function allows a NULL argument: OK Checking for ftruncate extend: OK getcwd takes a NULL argument: OK Checking for readlink breakage: OK +Checking for gnutls fips mode support: NO \ No newline at end of file diff --git a/net/samba4/waf-cross-answers/arc.txt b/net/samba4/waf-cross-answers/arc.txt index 647796b550..e0635f7a8d 100644 --- a/net/samba4/waf-cross-answers/arc.txt +++ b/net/samba4/waf-cross-answers/arc.txt @@ -40,3 +40,4 @@ Checking whether setreuid is available: NO Checking whether setresuid is available: NO Checking whether seteuid is available: NO Checking for readlink breakage: OK +Checking for gnutls fips mode support: NO \ No newline at end of file diff --git a/net/samba4/waf-cross-answers/arm.txt b/net/samba4/waf-cross-answers/arm.txt index 6b794cbe82..9d07b6f27b 100644 --- a/net/samba4/waf-cross-answers/arm.txt +++ b/net/samba4/waf-cross-answers/arm.txt @@ -37,3 +37,4 @@ Checking whether the realpath function allows a NULL argument: OK Checking for ftruncate extend: OK getcwd takes a NULL argument: OK Checking for readlink breakage: OK +Checking for gnutls fips mode support: NO \ No newline at end of file diff --git a/net/samba4/waf-cross-answers/armeb.txt b/net/samba4/waf-cross-answers/armeb.txt index 6b794cbe82..9d07b6f27b 100644 --- a/net/samba4/waf-cross-answers/armeb.txt +++ b/net/samba4/waf-cross-answers/armeb.txt @@ -37,3 +37,4 @@ Checking whether the realpath function allows a NULL argument: OK Checking for ftruncate extend: OK getcwd takes a NULL argument: OK Checking for readlink breakage: OK +Checking for gnutls fips mode support: NO \ No newline at end of file diff --git a/net/samba4/waf-cross-answers/i386.txt b/net/samba4/waf-cross-answers/i386.txt index 6b794cbe82..9d07b6f27b 100644 --- a/net/samba4/waf-cross-answers/i386.txt +++ b/net/samba4/waf-cross-answers/i386.txt @@ -37,3 +37,4 @@ Checking whether the realpath function allows a NULL argument: OK Checking for ftruncate extend: OK getcwd takes a NULL argument: OK Checking for readlink breakage: OK +Checking for gnutls fips mode support: NO \ No newline at end of file diff --git a/net/samba4/waf-cross-answers/mips.txt b/net/samba4/waf-cross-answers/mips.txt index cde0040aa8..e887721116 100644 --- a/net/samba4/waf-cross-answers/mips.txt +++ b/net/samba4/waf-cross-answers/mips.txt @@ -37,3 +37,4 @@ Checking whether the realpath function allows a NULL argument: OK Checking for ftruncate extend: OK getcwd takes a NULL argument: OK Checking for readlink breakage: OK +Checking for gnutls fips mode support: NO \ No newline at end of file diff --git a/net/samba4/waf-cross-answers/mips64.txt b/net/samba4/waf-cross-answers/mips64.txt index 2ae6703b28..73f77af37d 100644 --- a/net/samba4/waf-cross-answers/mips64.txt +++ b/net/samba4/waf-cross-answers/mips64.txt @@ -37,3 +37,4 @@ Checking whether the realpath function allows a NULL argument: OK Checking for ftruncate extend: OK getcwd takes a NULL argument: OK Checking for readlink breakage: OK +Checking for gnutls fips mode support: NO \ No newline at end of file diff --git a/net/samba4/waf-cross-answers/mips64el.txt b/net/samba4/waf-cross-answers/mips64el.txt index 2ae6703b28..73f77af37d 100644 --- a/net/samba4/waf-cross-answers/mips64el.txt +++ b/net/samba4/waf-cross-answers/mips64el.txt @@ -37,3 +37,4 @@ Checking whether the realpath function allows a NULL argument: OK Checking for ftruncate extend: OK getcwd takes a NULL argument: OK Checking for readlink breakage: OK +Checking for gnutls fips mode support: NO \ No newline at end of file diff --git a/net/samba4/waf-cross-answers/mipsel.txt b/net/samba4/waf-cross-answers/mipsel.txt index cde0040aa8..e887721116 100644 --- a/net/samba4/waf-cross-answers/mipsel.txt +++ b/net/samba4/waf-cross-answers/mipsel.txt @@ -37,3 +37,4 @@ Checking whether the realpath function allows a NULL argument: OK Checking for ftruncate extend: OK getcwd takes a NULL argument: OK Checking for readlink breakage: OK +Checking for gnutls fips mode support: NO \ No newline at end of file diff --git a/net/samba4/waf-cross-answers/powerpc.txt b/net/samba4/waf-cross-answers/powerpc.txt index dc94578cd5..85a105acbd 100644 --- a/net/samba4/waf-cross-answers/powerpc.txt +++ b/net/samba4/waf-cross-answers/powerpc.txt @@ -37,3 +37,4 @@ Checking whether the realpath function allows a NULL argument: OK Checking for ftruncate extend: OK getcwd takes a NULL argument: OK Checking for readlink breakage: OK +Checking for gnutls fips mode support: NO \ No newline at end of file diff --git a/net/samba4/waf-cross-answers/powerpc64.txt b/net/samba4/waf-cross-answers/powerpc64.txt index e81837c1cc..0714416f88 100644 --- a/net/samba4/waf-cross-answers/powerpc64.txt +++ b/net/samba4/waf-cross-answers/powerpc64.txt @@ -37,3 +37,4 @@ Checking whether the realpath function allows a NULL argument: OK Checking for ftruncate extend: OK getcwd takes a NULL argument: OK Checking for readlink breakage: OK +Checking for gnutls fips mode support: NO \ No newline at end of file diff --git a/net/samba4/waf-cross-answers/riscv64.txt b/net/samba4/waf-cross-answers/riscv64.txt index e81837c1cc..0714416f88 100644 --- a/net/samba4/waf-cross-answers/riscv64.txt +++ b/net/samba4/waf-cross-answers/riscv64.txt @@ -37,3 +37,4 @@ Checking whether the realpath function allows a NULL argument: OK Checking for ftruncate extend: OK getcwd takes a NULL argument: OK Checking for readlink breakage: OK +Checking for gnutls fips mode support: NO \ No newline at end of file diff --git a/net/samba4/waf-cross-answers/x86_64.txt b/net/samba4/waf-cross-answers/x86_64.txt index e81837c1cc..0714416f88 100644 --- a/net/samba4/waf-cross-answers/x86_64.txt +++ b/net/samba4/waf-cross-answers/x86_64.txt @@ -37,3 +37,4 @@ Checking whether the realpath function allows a NULL argument: OK Checking for ftruncate extend: OK getcwd takes a NULL argument: OK Checking for readlink breakage: OK +Checking for gnutls fips mode support: NO \ No newline at end of file