Remove building with NOCRYPTO option
[minix.git] / external / bsd / bind / dist / unit / atf-src / m4 / module-signals.m4
blob6580eb6e1068df1ba5cd0128eeee40ef2bcd8ec8
1 dnl
2 dnl Automated Testing Framework (atf)
3 dnl
4 dnl Copyright (c) 2008 The NetBSD Foundation, Inc.
5 dnl All rights reserved.
6 dnl
7 dnl Redistribution and use in source and binary forms, with or without
8 dnl modification, are permitted provided that the following conditions
9 dnl are met:
10 dnl 1. Redistributions of source code must retain the above copyright
11 dnl    notice, this list of conditions and the following disclaimer.
12 dnl 2. Redistributions in binary form must reproduce the above copyright
13 dnl    notice, this list of conditions and the following disclaimer in the
14 dnl    documentation and/or other materials provided with the distribution.
15 dnl
16 dnl THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
17 dnl CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
18 dnl INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19 dnl MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 dnl IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
21 dnl DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 dnl DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
23 dnl GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 dnl INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25 dnl IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26 dnl OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27 dnl IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 dnl
30 AC_DEFUN([ATF_MODULE_SIGNALS], [
31     AC_CACHE_CHECK(
32         [for the last valid signal],
33         [kyua_cv_signal_lastno], [
34         AC_RUN_IFELSE([AC_LANG_PROGRAM([#include <err.h>
35 #include <errno.h>
36 #include <signal.h>
37 #include <stdio.h>
38 #include <stdio.h>
39 #include <stdlib.h>], [
40     int i;
41     FILE *f;
43     i = 0;
44     while (i < 1024) {
45         i++;
46         if (i != SIGKILL && i != SIGSTOP) {
47             struct sigaction sa;
48             int ret;
50             sa.sa_handler = SIG_IGN;
51             sigemptyset(&sa.sa_mask);
52             sa.sa_flags = 0;
54             ret = sigaction(i, &sa, NULL);
55             if (ret == -1) {
56                 if (errno == EINVAL) {
57                     i--;
58                     break;
59                 } else
60                     err(EXIT_FAILURE, "sigaction failed");
61             }
62         }
63     }
64     if (i == 100)
65         errx(EXIT_FAILURE, "too much signals");
67     f = fopen("conftest.cnt", "w");
68     if (f == NULL)
69         err(EXIT_FAILURE, "failed to open file");
71     fprintf(f, "%d\n", i);
72     fclose(f);
74     return EXIT_SUCCESS;
75 ])],
76         [if test ! -f conftest.cnt; then
77              kyua_cv_signal_lastno=15
78          else
79              kyua_cv_signal_lastno=$(cat conftest.cnt)
80              rm -f conftest.cnt
81          fi],
82         [kyua_cv_signal_lastno=15])
83     ])
84     AC_DEFINE_UNQUOTED([LAST_SIGNO], [${kyua_cv_signal_lastno}],
85                        [Define to the last valid signal number])