diff options
| author | Kristian Schuster <116557017+KriSchu@users.noreply.github.com> | 2023-02-19 23:49:18 +0100 |
|---|---|---|
| committer | Kristian Schuster <116557017+KriSchu@users.noreply.github.com> | 2023-02-19 23:49:18 +0100 |
| commit | a0d42777217296c0a7bdb1e1be8d8f6de1b24dd7 (patch) | |
| tree | 8effe94c57b2f9796ba36090b07551baa8f1e1cb /gl/m4/close.m4 | |
| parent | ca3d59cd6918c9e2739e783b721d4c1122640fd3 (diff) | |
| parent | c07206f2ccc2356aa74bc6813a94c2190017d44e (diff) | |
| download | monitoring-plugins-a0d42777217296c0a7bdb1e1be8d8f6de1b24dd7.tar.gz | |
Merge remote-tracking branch 'origin/master' into feature_check_disk_add_ignore_missing_option
Diffstat (limited to 'gl/m4/close.m4')
| -rw-r--r-- | gl/m4/close.m4 | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/gl/m4/close.m4 b/gl/m4/close.m4 new file mode 100644 index 00000000..9f95c670 --- /dev/null +++ b/gl/m4/close.m4 | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | # close.m4 serial 9 | ||
| 2 | dnl Copyright (C) 2008-2023 Free Software Foundation, Inc. | ||
| 3 | dnl This file is free software; the Free Software Foundation | ||
| 4 | dnl gives unlimited permission to copy and/or distribute it, | ||
| 5 | dnl with or without modifications, as long as this notice is preserved. | ||
| 6 | |||
| 7 | AC_DEFUN([gl_FUNC_CLOSE], | ||
| 8 | [ | ||
| 9 | AC_REQUIRE([gl_UNISTD_H_DEFAULTS]) | ||
| 10 | m4_ifdef([gl_MSVC_INVAL], [ | ||
| 11 | AC_REQUIRE([gl_MSVC_INVAL]) | ||
| 12 | if test $HAVE_MSVC_INVALID_PARAMETER_HANDLER = 1; then | ||
| 13 | REPLACE_CLOSE=1 | ||
| 14 | fi | ||
| 15 | ]) | ||
| 16 | m4_ifdef([gl_PREREQ_SYS_H_WINSOCK2], [ | ||
| 17 | gl_PREREQ_SYS_H_WINSOCK2 | ||
| 18 | if test $UNISTD_H_HAVE_WINSOCK2_H = 1; then | ||
| 19 | dnl Even if the 'socket' module is not used here, another part of the | ||
| 20 | dnl application may use it and pass file descriptors that refer to | ||
| 21 | dnl sockets to the close() function. So enable the support for sockets. | ||
| 22 | REPLACE_CLOSE=1 | ||
| 23 | fi | ||
| 24 | ]) | ||
| 25 | dnl Replace close() for supporting the gnulib-defined fchdir() function, | ||
| 26 | dnl to keep fchdir's bookkeeping up-to-date. | ||
| 27 | m4_ifdef([gl_FUNC_FCHDIR], [ | ||
| 28 | if test $REPLACE_CLOSE = 0; then | ||
| 29 | gl_TEST_FCHDIR | ||
| 30 | if test $HAVE_FCHDIR = 0; then | ||
| 31 | REPLACE_CLOSE=1 | ||
| 32 | fi | ||
| 33 | fi | ||
| 34 | ]) | ||
| 35 | ]) | ||
