From: Bruno Haible Date: Wed, 10 Sep 2025 21:06:33 +0000 (+0200) Subject: chmod: Remove support for IRIX. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8427e18eeb7a1b1ab8f81c913ad99d4da9b3c19e;p=thirdparty%2Fgnulib.git chmod: Remove support for IRIX. * m4/chmod.m4 (gl_FUNC_CHMOD): Remove cross-compilation guess for IRIX. --- diff --git a/ChangeLog b/ChangeLog index 96cf836211..deb7c4ca03 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2025-09-10 Bruno Haible + chmod: Remove support for IRIX. + * m4/chmod.m4 (gl_FUNC_CHMOD): Remove cross-compilation guess for IRIX. + btowc: Remove support for IRIX. * m4/btowc.m4 (gl_FUNC_BTOWC): Remove test of btowc (EOF). diff --git a/m4/chmod.m4 b/m4/chmod.m4 index 6751581b9c..d963861af3 100644 --- a/m4/chmod.m4 +++ b/m4/chmod.m4 @@ -1,5 +1,5 @@ # chmod.m4 -# serial 3 +# serial 4 dnl Copyright (C) 2004-2025 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -48,8 +48,8 @@ AC_DEFUN([gl_FUNC_CHMOD], return 1; /* Test whether chmod rejects a trailing slash on a non-directory, with error ENOTDIR. - This test fails on AIX 7.2, IRIX 6.5 (no error) and - native Windows (error EINVAL). */ + This test fails on AIX 7.2 (no error) and native Windows + (error EINVAL). */ errno = 0; if (chmod (file "/", desired) == 0) result |= 2; @@ -60,8 +60,8 @@ AC_DEFUN([gl_FUNC_CHMOD], [gl_cv_func_chmod_works=yes], [gl_cv_func_chmod_works=no], [case "$host_os" in - # Guess no on AIX, IRIX, native Windows. - aix* | irix* | mingw* | windows*) + # Guess no on AIX, native Windows. + aix* | mingw* | windows*) gl_cv_func_chmod_works="guessing no" ;; # Guess yes on glibc, musl libc, macOS, FreeBSD, NetBSD, OpenBSD, Solaris, Haiku, Cygwin. *-gnu* | gnu* | *-musl* | darwin* | freebsd* | midnightbsd* | netbsd* | openbsd* | solaris* | haiku* | cygwin*)