From 1641e6c528e027dbfff96a834b94a8654a03a168 Mon Sep 17 00:00:00 2001 From: Ralph Boehme Date: Thu, 12 Aug 2021 18:31:40 +0200 Subject: [PATCH] libreplace: remove now unused USE_COPY_FILE_RANGE define MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The only user was removed in the previous commit. We still need the preceeding checks however, based on that replace.c provides a copy_file_range() fallback. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14795 RN: copy_file_range() may fail with EOPNOTSUPP Signed-off-by: Ralph Boehme Reviewed-by: Stefan Metzmacher Autobuild-User(master): Ralph Böhme Autobuild-Date(master): Fri Aug 13 11:45:17 UTC 2021 on sn-devel-184 --- lib/replace/wscript | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/replace/wscript b/lib/replace/wscript index 9c23d549dab..a734d478582 100644 --- a/lib/replace/wscript +++ b/lib/replace/wscript @@ -483,8 +483,6 @@ def configure(conf): headers='errno.h string.h stdio.h sys/syscall.h unistd.h sys/types.h sys/stat.h fcntl.h', execute=True, msg='Checking whether we have copy_file_range system call') - if conf.CONFIG_SET('HAVE_COPY_FILE_RANGE') or conf.CONFIG_SET('HAVE_SYSCALL_COPY_FILE_RANGE'): - conf.DEFINE('USE_COPY_FILE_RANGE', 1) conf.SET_TARGET_TYPE('attr', 'EMPTY')