File: utmp.m4

package info (click to toggle)
mailutils 1%3A1.1%2Bdfsg1-3.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 14,460 kB
  • ctags: 12,581
  • sloc: ansic: 110,459; sh: 9,885; yacc: 4,089; exp: 2,359; makefile: 2,034; lex: 1,385; lisp: 735; awk: 214; sed: 23
file content (14 lines) | stat: -rw-r--r-- 581 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
dnl MU_CHECK_UTMP -- Check for the presence of utmp.h, setutent, getutent
dnl                  and endutent calls.
AC_DEFUN([MU_CHECK_UTMP],
[
  AC_CHECK_HEADERS(utmp.h)
  # The three functions setutent,getutent and endutent depend on each other,
  # so it seems reasonable to provide replacements for all three if getutent
  # is not present.
  AC_CHECK_FUNC(getutent,
                 AC_DEFINE(HAVE_GETUTENT_CALLS,,
         [Define if your system has the three ???utent functions]),
                 [if test "$ac_cv_header_utmp_h" = "yes"; then
		   AC_LIBOBJ(utmp)
		 fi])])