2006-09-07 19:12:47 +04:00
|
|
|
#serial 6
|
2006-06-17 19:39:07 +04:00
|
|
|
|
|
|
|
dnl From Jim Meyering.
|
|
|
|
dnl
|
|
|
|
dnl See if struct statfs has the f_fstypename member.
|
2006-09-07 19:12:47 +04:00
|
|
|
dnl If so, define HAVE_STRUCT_STATFS_F_FSTYPENAME.
|
2006-06-17 19:39:07 +04:00
|
|
|
dnl
|
|
|
|
|
2006-09-07 19:12:47 +04:00
|
|
|
# Copyright (C) 1998, 1999, 2001, 2004, 2006 Free Software Foundation, Inc.
|
2006-06-17 19:39:07 +04:00
|
|
|
# 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([gl_FSTYPENAME],
|
2006-09-07 19:12:47 +04:00
|
|
|
[
|
|
|
|
AC_CHECK_MEMBERS([struct statfs.f_fstypename],,,
|
|
|
|
[
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
])
|
|
|
|
])
|