summaryrefslogtreecommitdiffstats
path: root/m4/check-decl.m4
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-05 18:46:38 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-05 18:46:38 +0000
commita06ac93dcf311dac3943cb5d96ad47625d413c2d (patch)
tree6efda5e24896e7920ccac1f97aecc73406525040 /m4/check-decl.m4
parentInitial commit. (diff)
downloadcoreutils-a06ac93dcf311dac3943cb5d96ad47625d413c2d.tar.xz
coreutils-a06ac93dcf311dac3943cb5d96ad47625d413c2d.zip
Adding upstream version 8.30.upstream/8.30upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'm4/check-decl.m4')
-rw-r--r--m4/check-decl.m440
1 files changed, 40 insertions, 0 deletions
diff --git a/m4/check-decl.m4 b/m4/check-decl.m4
new file mode 100644
index 0000000..d1b41bb
--- /dev/null
+++ b/m4/check-decl.m4
@@ -0,0 +1,40 @@
+#serial 26
+# Check declarations for this package.
+
+dnl Copyright (C) 1997-2018 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.
+
+
+dnl This is just a wrapper function to encapsulate this kludge.
+dnl Putting it in a separate file like this helps share it between
+dnl different packages.
+AC_DEFUN([gl_CHECK_DECLS],
+[
+ AC_REQUIRE([AC_HEADER_TIME])
+
+ AC_CHECK_HEADERS_ONCE([grp.h pwd.h])
+ headers='
+#include <sys/types.h>
+
+#include <unistd.h>
+
+#if HAVE_GRP_H
+# include <grp.h>
+#endif
+
+#if HAVE_PWD_H
+# include <pwd.h>
+#endif
+'
+ AC_CHECK_DECLS([
+ getgrgid,
+ getpwuid,
+ ttyname], , , $headers)
+
+ AC_CHECK_DECLS_ONCE([geteuid])
+ AC_CHECK_DECLS_ONCE([getlogin])
+ AC_CHECK_DECLS_ONCE([getuid])
+])