From 34847e7e3234529e62264c19d164a13b5d7ed37d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Sur=C3=BD?= Date: Tue, 18 Jun 2024 14:49:37 +0200 Subject: [PATCH] Remove defunct --with-locktype configure option The --with-locktype configure option was no-op, so it was removed. (cherry picked from commit c33bf0de8d159d9d85505c9c176067082306257f) --- configure.ac | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/configure.ac b/configure.ac index 7a01b2c8c9..78613f4388 100644 --- a/configure.ac +++ b/configure.ac @@ -555,13 +555,6 @@ CC="$PTHREAD_CC" AC_CHECK_FUNCS([pthread_attr_getstacksize pthread_attr_setstacksize pthread_barrier_init pthread_spin_init]) -# [pairwise: --with-locktype=adaptive, --with-locktype=standard] -AC_ARG_WITH([locktype], - AS_HELP_STRING([--with-locktype=ARG], - [Specify mutex lock type - (adaptive or standard)]), - [], [with_locktype="adaptive"]) - AC_CHECK_HEADERS([sched.h]) AC_SEARCH_LIBS([sched_yield],[rt]) @@ -1712,9 +1705,6 @@ report() { if test "yes" = "$enable_full_report" -o "rbt" = "$zonedb"; then echo " Default cache database type: $cachedb" fi - if test "yes" = "$enable_full_report" -o "standard" = "$with_locktype"; then - echo " Mutex lock type: $with_locktype" - fi test "no" = "$enable_dnstap" || \ echo " Allow 'dnstap' packet logging (--enable-dnstap)" test -z "$MAXMINDDB_LIBS" || echo " GeoIP2 access control (--enable-geoip)"