diff options
author | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2022-08-23 19:42:51 +0200 |
---|---|---|
committer | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2022-09-14 11:08:55 +0200 |
commit | 868beb15ae02c352005a2df8857f4ebb9bd758fd (patch) | |
tree | 0dc6e6a91c4ef0f131ca82a777e6ac2ad193c399 /gl/m4/warn-on-use.m4 | |
parent | b89aee56964f7d933f2da5f371e32b4d7db9410b (diff) | |
download | monitoring-plugins-868beb1.tar.gz |
Sync with the latest Gnulib code (d27c820595)
Diffstat (limited to 'gl/m4/warn-on-use.m4')
-rw-r--r-- | gl/m4/warn-on-use.m4 | 48 |
1 files changed, 25 insertions, 23 deletions
diff --git a/gl/m4/warn-on-use.m4 b/gl/m4/warn-on-use.m4 index e43beebd..d43355ab 100644 --- a/gl/m4/warn-on-use.m4 +++ b/gl/m4/warn-on-use.m4 | |||
@@ -1,11 +1,13 @@ | |||
1 | # warn-on-use.m4 serial 5 | 1 | # warn-on-use.m4 serial 9 |
2 | dnl Copyright (C) 2010-2013 Free Software Foundation, Inc. | 2 | dnl Copyright (C) 2010-2022 Free Software Foundation, Inc. |
3 | dnl This file is free software; the Free Software Foundation | 3 | dnl This file is free software; the Free Software Foundation |
4 | dnl gives unlimited permission to copy and/or distribute it, | 4 | dnl gives unlimited permission to copy and/or distribute it, |
5 | dnl with or without modifications, as long as this notice is preserved. | 5 | dnl with or without modifications, as long as this notice is preserved. |
6 | 6 | ||
7 | # gl_WARN_ON_USE_PREPARE(INCLUDES, NAMES) | 7 | # gl_WARN_ON_USE_PREPARE(INCLUDES, NAMES) |
8 | # --------------------------------------- | 8 | # --------------------------------------- |
9 | # If the module 'posixcheck' is in use: | ||
10 | # | ||
9 | # For each whitespace-separated element in the list of NAMES, define | 11 | # For each whitespace-separated element in the list of NAMES, define |
10 | # HAVE_RAW_DECL_name if the function has a declaration among INCLUDES | 12 | # HAVE_RAW_DECL_name if the function has a declaration among INCLUDES |
11 | # even after being undefined as a macro. | 13 | # even after being undefined as a macro. |
@@ -23,25 +25,25 @@ dnl with or without modifications, as long as this notice is preserved. | |||
23 | # needing gl_WARN_ON_USE_PREPARE. | 25 | # needing gl_WARN_ON_USE_PREPARE. |
24 | AC_DEFUN([gl_WARN_ON_USE_PREPARE], | 26 | AC_DEFUN([gl_WARN_ON_USE_PREPARE], |
25 | [ | 27 | [ |
26 | m4_foreach_w([gl_decl], [$2], | 28 | m4_ifdef([gl_POSIXCHECK], |
27 | [AH_TEMPLATE([HAVE_RAW_DECL_]AS_TR_CPP(m4_defn([gl_decl])), | 29 | [m4_foreach_w([gl_decl], [$2], |
28 | [Define to 1 if ]m4_defn([gl_decl])[ is declared even after | 30 | [AH_TEMPLATE([HAVE_RAW_DECL_]AS_TR_CPP(m4_defn([gl_decl])), |
29 | undefining macros.])])dnl | 31 | [Define to 1 if ]m4_defn([gl_decl])[ is declared even after |
30 | dnl FIXME: gl_Symbol must be used unquoted until we can assume | 32 | undefining macros.])])dnl |
31 | dnl autoconf 2.64 or newer. | 33 | for gl_func in m4_flatten([$2]); do |
32 | for gl_func in m4_flatten([$2]); do | 34 | AS_VAR_PUSHDEF([gl_Symbol], [gl_cv_have_raw_decl_$gl_func])dnl |
33 | AS_VAR_PUSHDEF([gl_Symbol], [gl_cv_have_raw_decl_$gl_func])dnl | 35 | AC_CACHE_CHECK([whether $gl_func is declared without a macro], |
34 | AC_CACHE_CHECK([whether $gl_func is declared without a macro], | 36 | [gl_Symbol], |
35 | gl_Symbol, | 37 | [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([$1], |
36 | [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([$1], | 38 | [[#undef $gl_func |
37 | [@%:@undef $gl_func | 39 | (void) $gl_func;]])], |
38 | (void) $gl_func;])], | 40 | [AS_VAR_SET([gl_Symbol], [yes])], [AS_VAR_SET([gl_Symbol], [no])])]) |
39 | [AS_VAR_SET(gl_Symbol, [yes])], [AS_VAR_SET(gl_Symbol, [no])])]) | 41 | AS_VAR_IF([gl_Symbol], [yes], |
40 | AS_VAR_IF(gl_Symbol, [yes], | 42 | [AC_DEFINE_UNQUOTED(AS_TR_CPP([HAVE_RAW_DECL_$gl_func]), [1]) |
41 | [AC_DEFINE_UNQUOTED(AS_TR_CPP([HAVE_RAW_DECL_$gl_func]), [1]) | 43 | dnl shortcut - if the raw declaration exists, then set a cache |
42 | dnl shortcut - if the raw declaration exists, then set a cache | 44 | dnl variable to allow skipping any later AC_CHECK_DECL efforts |
43 | dnl variable to allow skipping any later AC_CHECK_DECL efforts | 45 | eval ac_cv_have_decl_$gl_func=yes]) |
44 | eval ac_cv_have_decl_$gl_func=yes]) | 46 | AS_VAR_POPDEF([gl_Symbol])dnl |
45 | AS_VAR_POPDEF([gl_Symbol])dnl | 47 | done |
46 | done | 48 | ]) |
47 | ]) | 49 | ]) |