diff options
| author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2026-01-09 14:57:57 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-09 14:57:57 +0100 |
| commit | da4fb28fca51b180d50608b0c847b1c0927cd8c5 (patch) | |
| tree | d20769e0a61ac2ba76920190050d3e0a3e7c85b7 /gl/m4/unicase_h.m4 | |
| parent | b09a8b530df8a23610889d0b89b148f22db3568a (diff) | |
| parent | f694f4cd4dfead0da6feab04d92335d9bbe185b6 (diff) | |
| download | monitoring-plugins-da4fb28f.tar.gz | |
Merge branch 'master' into refactor/check_ide_smart
Diffstat (limited to 'gl/m4/unicase_h.m4')
| -rw-r--r-- | gl/m4/unicase_h.m4 | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/gl/m4/unicase_h.m4 b/gl/m4/unicase_h.m4 new file mode 100644 index 00000000..bf5d4c2e --- /dev/null +++ b/gl/m4/unicase_h.m4 | |||
| @@ -0,0 +1,45 @@ | |||
| 1 | # unicase_h.m4 | ||
| 2 | # serial 1 | ||
| 3 | dnl Copyright (C) 2023-2025 Free Software Foundation, Inc. | ||
| 4 | dnl This file is free software; the Free Software Foundation | ||
| 5 | dnl gives unlimited permission to copy and/or distribute it, | ||
| 6 | dnl with or without modifications, as long as this notice is preserved. | ||
| 7 | dnl This file is offered as-is, without any warranty. | ||
| 8 | |||
| 9 | AC_DEFUN_ONCE([gl_UNICASE_H], | ||
| 10 | [ | ||
| 11 | dnl Ensure to expand the default settings once only, before all statements | ||
| 12 | dnl that occur in other macros. | ||
| 13 | AC_REQUIRE([gl_UNICASE_H_DEFAULTS]) | ||
| 14 | ]) | ||
| 15 | |||
| 16 | # gl_UNICASE_MODULE_INDICATOR([modulename]) | ||
| 17 | # sets the shell variable that indicates the presence of the given module | ||
| 18 | # to a C preprocessor expression that will evaluate to 1. | ||
| 19 | # This macro invocation must not occur in macros that are AC_REQUIREd. | ||
| 20 | AC_DEFUN([gl_UNICASE_MODULE_INDICATOR], | ||
| 21 | [ | ||
| 22 | dnl Ensure to expand the default settings once only. | ||
| 23 | gl_UNICASE_H_REQUIRE_DEFAULTS | ||
| 24 | gl_MODULE_INDICATOR_SET_VARIABLE([$1]) | ||
| 25 | dnl Define it also as a C macro, for the benefit of the unit tests. | ||
| 26 | gl_MODULE_INDICATOR_FOR_TESTS([$1]) | ||
| 27 | ]) | ||
| 28 | |||
| 29 | # Initializes the default values for AC_SUBSTed shell variables. | ||
| 30 | # This macro must not be AC_REQUIREd. It must only be invoked, and only | ||
| 31 | # outside of macros or in macros that are not AC_REQUIREd. | ||
| 32 | AC_DEFUN([gl_UNICASE_H_REQUIRE_DEFAULTS], | ||
| 33 | [ | ||
| 34 | m4_defun(GL_MODULE_INDICATOR_PREFIX[_UNICASE_H_MODULE_INDICATOR_DEFAULTS], [ | ||
| 35 | gl_MODULE_INDICATOR_INIT_VARIABLE([GNULIB_UNICASE_EMPTY_PREFIX_CONTEXT_DLL_VARIABLE], ['LIBUNISTRING_DLL_VARIABLE']) | ||
| 36 | gl_MODULE_INDICATOR_INIT_VARIABLE([GNULIB_UNICASE_EMPTY_SUFFIX_CONTEXT_DLL_VARIABLE], ['LIBUNISTRING_DLL_VARIABLE']) | ||
| 37 | ]) | ||
| 38 | m4_require(GL_MODULE_INDICATOR_PREFIX[_UNICASE_H_MODULE_INDICATOR_DEFAULTS]) | ||
| 39 | AC_REQUIRE([gl_UNICASE_H_DEFAULTS]) | ||
| 40 | ]) | ||
| 41 | |||
| 42 | AC_DEFUN([gl_UNICASE_H_DEFAULTS], | ||
| 43 | [ | ||
| 44 | dnl Assume proper GNU behavior unless another module says otherwise. | ||
| 45 | ]) | ||
