From: Bruno Haible Date: Wed, 10 Sep 2025 21:11:56 +0000 (+0200) Subject: mprotect: Remove support for IRIX. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7a398ea9ade994ffce73a1c19a7bfee57ca809ea;p=thirdparty%2Fgnulib.git mprotect: Remove support for IRIX. * m4/mprotect.m4 (gl_FUNC_MPROTECT_WORKS): Remove cross-compilation guess for IRIX. --- diff --git a/ChangeLog b/ChangeLog index ceb5063026..84c85f42cf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2025-09-10 Bruno Haible + mprotect: Remove support for IRIX. + * m4/mprotect.m4 (gl_FUNC_MPROTECT_WORKS): Remove cross-compilation + guess for IRIX. + mountlist: Remove support for IRIX. * m4/mountlist.m4 (gl_MOUNTLIST): Update description of MOUNTED_GETMNTENT1. diff --git a/m4/mprotect.m4 b/m4/mprotect.m4 index b88be94a97..fc6ac3211e 100644 --- a/m4/mprotect.m4 +++ b/m4/mprotect.m4 @@ -1,5 +1,5 @@ # mprotect.m4 -# serial 4 +# serial 5 dnl Copyright (C) 1993-2025 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License as published by the Free Software Foundation; @@ -136,10 +136,10 @@ AC_DEFUN([gl_FUNC_MPROTECT_WORKS], dnl When cross-compiling, assume the known behaviour. case "$host_os" in dnl Guess yes on Linux systems, glibc systems, - dnl macOS, BSD systems, AIX, HP-UX, IRIX, Solaris, Cygwin. + dnl macOS, BSD systems, AIX, HP-UX, Solaris, Cygwin. linux-* | linux | *-gnu* | gnu* | \ darwin* | freebsd* | dragonfly* | midnightbsd* | netbsd* | openbsd* | \ - aix* | hpux* | irix* | solaris* | cygwin*) + aix* | hpux* | solaris* | cygwin*) gl_cv_func_mprotect_works="guessing yes" ;; mingw* | windows*) gl_cv_func_mprotect_works="guessing no" ;;