blob: c6549b4ff8da60a3afce394e1800963968146611 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# Check for stdnoreturn.h that conforms to C11.
dnl Copyright 2012-2022 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
dnl with or without modifications, as long as this notice is preserved.
# Prepare for substituting <stdnoreturn.h> if it is not supported.
AC_DEFUN([gl_STDNORETURN_H],
[
AC_REQUIRE([AC_CANONICAL_HOST])
case "$host_os" in
cygwin*)
dnl Regardless whether a working <stdnoreturn.h> exists or not,
dnl we need our own <stdnoreturn.h>, because of the definition
dnl of _Noreturn done by gnulib-common.m4.
GL_GENERATE_STDNORETURN_H=true
;;
*)
AC_CACHE_CHECK([for working stdnoreturn.h],
[gl_cv_header_working_stdnoreturn_h],
[AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM(
[[#include <stdlib.h>
#include <stdnoreturn.h>
#if defined _WIN32 && !defined __CYGWIN__
# include <process.h>
#endif
/* Do not check for 'noreturn' after the return type.
C11 allows it, but it's rarely done that way
and circa-2012 bleeding-edge GCC rejects it when given
-Werror=old-style-declaration. */
noreturn void foo1 (void) { exit (0); }
_Noreturn void foo2 (void) { exit (0); }
int testit (int argc, char **argv)
{
if (argc & 1)
return 0;
(argv[0][0] ? foo1 : foo2) ();
}
]])],
[gl_cv_header_working_stdnoreturn_h=yes],
[gl_cv_header_working_stdnoreturn_h=no])])
if test $gl_cv_header_working_stdnoreturn_h = yes; then
GL_GENERATE_STDNORETURN_H=false
else
GL_GENERATE_STDNORETURN_H=true
fi
;;
esac
])
|