fstypename.m4 595 B

12345678910111213141516171819202122
  1. #serial 6
  2. dnl From Jim Meyering.
  3. dnl
  4. dnl See if struct statfs has the f_fstypename member.
  5. dnl If so, define HAVE_STRUCT_STATFS_F_FSTYPENAME.
  6. dnl
  7. # Copyright (C) 1998, 1999, 2001, 2004, 2006 Free Software Foundation, Inc.
  8. # This file is free software; the Free Software Foundation
  9. # gives unlimited permission to copy and/or distribute it,
  10. # with or without modifications, as long as this notice is preserved.
  11. AC_DEFUN([gl_FSTYPENAME],
  12. [
  13. AC_CHECK_MEMBERS([struct statfs.f_fstypename],,,
  14. [
  15. #include <sys/types.h>
  16. #include <sys/param.h>
  17. #include <sys/mount.h>
  18. ])
  19. ])