1#serial 78
2
3dnl We use gl_ for non Autoconf macros.
4m4_pattern_forbid([^gl_[ABCDEFGHIJKLMNOPQRSTUVXYZ]])dnl
5
6# These are the prerequisite macros for files in the lib/
7# directory of the coreutils package.
8
9
10# Copyright (C) 1998-2023 Free Software Foundation, Inc.
11
12# This program is free software: you can redistribute it and/or modify
13# it under the terms of the GNU General Public License as published by
14# the Free Software Foundation, either version 3 of the License, or
15# (at your option) any later version.
16
17# This program is distributed in the hope that it will be useful,
18# but WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20# GNU General Public License for more details.
21
22# You should have received a copy of the GNU General Public License
23# along with this program.  If not, see <https://www.gnu.org/licenses/>.
24
25# Written by Jim Meyering.
26
27
28AC_DEFUN([gl_PREREQ],
29[
30  # gnulib settings.
31  AC_REQUIRE([gl_FUNC_NONREENTRANT_EUIDACCESS])
32
33  # We don't use c-stack.c.
34  # AC_REQUIRE([gl_C_STACK])
35
36  # Invoke macros of modules that may migrate into gnulib.
37  # There's no need to list gnulib modules here, since gnulib-tool
38  # handles that; see ../bootstrap.conf.
39  AC_REQUIRE([gl_FUNC_XATTR])
40])
41