diff options
author | Lorenz Kästle <lorenz.kaestle@netways.de> | 2023-03-09 10:03:48 (GMT) |
---|---|---|
committer | Lorenz Kästle <lorenz.kaestle@netways.de> | 2023-03-09 10:03:48 (GMT) |
commit | d0edb72a0c9bc1a28197ab4566928f7ee63a6d43 (patch) | |
tree | 6d524fb16d2dd1aa9f2d98529ef1de7a39f52700 /gl/m4/pid_t.m4 | |
parent | 9fdc82f0543c6e2891c7079f70297f92e8ef4619 (diff) | |
parent | 269718094177fb8a7e3d3005d1310495009fe8c4 (diff) | |
download | monitoring-plugins-d0edb72a0c9bc1a28197ab4566928f7ee63a6d43.tar.gz |
Merge branch 'master' into RincewindsHat-patch-1
Diffstat (limited to 'gl/m4/pid_t.m4')
-rw-r--r-- | gl/m4/pid_t.m4 | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/gl/m4/pid_t.m4 b/gl/m4/pid_t.m4 new file mode 100644 index 0000000..0fd7d0a --- /dev/null +++ b/gl/m4/pid_t.m4 | |||
@@ -0,0 +1,38 @@ | |||
1 | # pid_t.m4 serial 4 | ||
2 | dnl Copyright (C) 2020-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 | # The following implementation works around a problem in autoconf <= 2.69. | ||
8 | m4_version_prereq([2.70], [], [ | ||
9 | |||
10 | dnl Define pid_t if the headers don't define it. | ||
11 | AC_DEFUN([AC_TYPE_PID_T], | ||
12 | [ | ||
13 | AC_CHECK_TYPE([pid_t], | ||
14 | [], | ||
15 | [dnl On 64-bit native Windows, define it to the equivalent of 'intptr_t' | ||
16 | dnl (= 'long long' = '__int64'), because that is the return type | ||
17 | dnl of the _spawnv* functions | ||
18 | dnl <https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/spawnvp-wspawnvp> | ||
19 | dnl and the argument type of the _cwait function | ||
20 | dnl <https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/cwait>. | ||
21 | dnl Otherwise (on 32-bit Windows and on old Unix platforms), define it | ||
22 | dnl to 'int'. | ||
23 | AC_COMPILE_IFELSE( | ||
24 | [AC_LANG_PROGRAM([[ | ||
25 | #if defined _WIN64 && !defined __CYGWIN__ | ||
26 | LLP64 | ||
27 | #endif | ||
28 | ]]) | ||
29 | ], | ||
30 | [gl_pid_type='int'], | ||
31 | [gl_pid_type='__int64']) | ||
32 | AC_DEFINE_UNQUOTED([pid_t], [$gl_pid_type], | ||
33 | [Define as a signed integer type capable of holding a process identifier.]) | ||
34 | ], | ||
35 | [AC_INCLUDES_DEFAULT]) | ||
36 | ]) | ||
37 | |||
38 | ])# m4_version_prereq 2.70 | ||