summaryrefslogtreecommitdiff
path: root/am/system.m4
blob: 0f615ce5741baad2d6f26125cda7ee2e9d02e745 (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
# Configuration for paxutils/lib/system.h.

# Copyright (C) 2005-2023 Free Software Foundation, Inc.
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.

AC_DEFUN([PU_SYSTEM],[
  AC_CHECK_HEADERS_ONCE([string.h memory.h fcntl.h sys/time.h sys/wait.h \
 sys/gentape.h sys/tape.h sys/device.h sys/param.h sys/tprintf.h sys/mtio.h \
 sgtty.h sys/io/trioctl.h locale.h pwd.h grp.h])

  AC_CHECK_HEADERS([sys/buf.h], [], [],
   [#if HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif])

  AC_CHECK_MEMBERS([struct stat.st_blksize])
  AC_REQUIRE([AC_STRUCT_ST_BLOCKS])

  AC_CHECK_FUNCS_ONCE(lstat mkfifo setlocale)
  AC_REQUIRE([gl_STDINT_H])

  AC_SEARCH_LIBS(gethostbyname, nsl)
])