head 1.1; access; symbols; locks; strict; comment @# @; 1.1 date 2026.06.29.13.11.00; author adam; state Exp; branches; next ; commitid 65gS27Y5KkHI9HLG; desc @@ 1.1 log @psmisc: updated to 23.7 Changes in 23.7 * build-sys: Make disable-statx work * fuser: Fallback to stat() if no statx() Debian 1030747 * fuser: silently ignore EACCES when scanning proc directories * killall: small formatting fixes Debian * pstree: Do not assume root PID * pslog: include config.h * misc: Update gettext to 0.21 @ text @$NetBSD$ fuser is for Linux only. --- configure.ac.orig 2024-11-17 09:42:46.507146070 +0000 +++ configure.ac @@@@ -167,11 +167,11 @@@@ AC_CHECK_MEMBERS([struct pt_regs.orig_d0 struct pt_regs.d0],[],[], [#include ]) case ${host_os} in - gnu*) - want_fuser=no + linux*) + want_fuser=yes ;; *) - want_fuser=yes + want_fuser=no ;; esac AM_CONDITIONAL(WANT_FUSER, test $want_fuser = yes) @