mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-03-07 15:51:05 -05:00
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1047 f882894a-f735-0410-b71e-b25c423dba1c
21 lines
676 B
Text
21 lines
676 B
Text
dnl These are for the libs and macros from coreutils
|
|
dnl Currently utilising v5.2.1
|
|
|
|
dnl We use jm_ for non Autoconf macros.
|
|
m4_pattern_forbid([^np_[ABCDEFGHIJKLMNOPQRSTUVXYZ]])dnl
|
|
m4_pattern_forbid([^jm_[ABCDEFGHIJKLMNOPQRSTUVXYZ]])dnl
|
|
m4_pattern_forbid([^gl_[ABCDEFGHIJKLMNOPQRSTUVXYZ]])dnl
|
|
|
|
dnl These are all m4 things that need to be called
|
|
dnl Usually in coreutils' prereq.m4, but this is a subset that we need
|
|
AC_DEFUN([np_COREUTILS],
|
|
[
|
|
AC_REQUIRE([gl_GETOPT])
|
|
AC_REQUIRE([AM_STDBOOL_H])
|
|
AC_REQUIRE([jm_AFS])
|
|
AC_REQUIRE([gl_EXITFAIL])
|
|
AC_REQUIRE([gl_XALLOC])
|
|
AC_REQUIRE([gl_MOUNTLIST])
|
|
AC_REQUIRE([gl_FSUSAGE])
|
|
AC_REQUIRE([jm_FUNC_GLIBC_UNLOCKED_IO])
|
|
])
|