Blame m4/fts.m4

Packit 709fb3
#serial 20
Packit 709fb3
dnl Copyright (C) 2005-2017 Free Software Foundation, Inc.
Packit 709fb3
dnl This file is free software; the Free Software Foundation
Packit 709fb3
dnl gives unlimited permission to copy and/or distribute it,
Packit 709fb3
dnl with or without modifications, as long as this notice is preserved.
Packit 709fb3
Packit 709fb3
AC_DEFUN([gl_FUNC_FTS],
Packit 709fb3
[
Packit 709fb3
  gl_FUNC_FTS_CORE
Packit 709fb3
])
Packit 709fb3
Packit 709fb3
AC_DEFUN([gl_FUNC_FTS_CORE],
Packit 709fb3
[
Packit 709fb3
  dnl Prerequisites of lib/fts.c.
Packit 709fb3
  gl_FUNC_OPENAT
Packit 709fb3
Packit 709fb3
  AC_CHECK_FUNCS_ONCE([fstatfs])
Packit 709fb3
  AC_CHECK_HEADERS_ONCE([sys/param.h sys/vfs.h])dnl
Packit 709fb3
  AC_CHECK_MEMBERS([struct statfs.f_type],,,
Packit 709fb3
    [$ac_includes_default
Packit 709fb3
     #include <sys/vfs.h>])
Packit 709fb3
])