summaryrefslogtreecommitdiff
path: root/m4/check-decl.m4
blob: 2bcf1d4648b3755f413cf7d14817c9fa7106ae0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#serial 26
# Check declarations for this package.

dnl Copyright (C) 1997-2017 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])
])