From ac4afeb4bc9666c180389f48fd2e32cc6eebb3a7 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Wed, 4 Jun 2025 16:58:07 -0700 Subject: [PATCH] remove variable fdset check Doesn't seem to be used. Signed-off-by: Rosen Penev --- configure.ac | 2 -- scripts/checks.m4 | 13 ------------- 2 files changed, 15 deletions(-) diff --git a/configure.ac b/configure.ac index fca85351..6263b930 100644 --- a/configure.ac +++ b/configure.ac @@ -28,8 +28,6 @@ RAK_ENABLE_WERROR TORRENT_ENABLE_ARCH TORRENT_WITH_SYSROOT -TORRENT_WITHOUT_VARIABLE_FDSET - AC_ARG_ENABLE(execinfo, AS_HELP_STRING([--disable-execinfo], [disable libexecinfo [[default=enable]]]), diff --git a/scripts/checks.m4 b/scripts/checks.m4 index 871bf401..ae254f3f 100644 --- a/scripts/checks.m4 +++ b/scripts/checks.m4 @@ -118,19 +118,6 @@ AC_DEFUN([TORRENT_WITHOUT_KQUEUE], [ ]) -AC_DEFUN([TORRENT_WITHOUT_VARIABLE_FDSET], [ - AC_ARG_WITH(variable-fdset, - AS_HELP_STRING([--without-variable-fdset],[do not use non-portable variable sized fd_set's]), - [ - if test "$withval" = "yes"; then - AC_DEFINE(USE_VARIABLE_FDSET, 1, defined when we allow the use of fd_set's of any size) - fi - ], [ - AC_DEFINE(USE_VARIABLE_FDSET, 1, defined when we allow the use of fd_set's of any size) - ]) -]) - - AC_DEFUN([TORRENT_CHECK_FALLOCATE], [ AC_MSG_CHECKING(for fallocate)