annotate m4/fstypename.m4 @ 14434:7624b26aea3d

sys_socket, netdb: Document problem with socklen_t. * doc/posix-headers/sys_socket.texi: Mention lack of socklen_t on some platforms. * doc/posix-headers/netdb.texi: Likewise.
author Bruno Haible <bruno@clisp.org>
date Sat, 19 Mar 2011 13:39:12 +0100
parents 97fc9a21a8fb
children 8250f2777afc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7247
c77c9dc7d8c6 * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
Paul Eggert <eggert@cs.ucla.edu>
parents: 5611
diff changeset
1 #serial 6
1390
Jim Meyering <jim@meyering.net>
parents:
diff changeset
2
Jim Meyering <jim@meyering.net>
parents:
diff changeset
3 dnl From Jim Meyering.
Jim Meyering <jim@meyering.net>
parents:
diff changeset
4 dnl
Jim Meyering <jim@meyering.net>
parents:
diff changeset
5 dnl See if struct statfs has the f_fstypename member.
7247
c77c9dc7d8c6 * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
Paul Eggert <eggert@cs.ucla.edu>
parents: 5611
diff changeset
6 dnl If so, define HAVE_STRUCT_STATFS_F_FSTYPENAME.
1390
Jim Meyering <jim@meyering.net>
parents:
diff changeset
7 dnl
Jim Meyering <jim@meyering.net>
parents:
diff changeset
8
14079
97fc9a21a8fb maint: update almost all copyright ranges to include 2011
Jim Meyering <meyering@redhat.com>
parents: 12559
diff changeset
9 # Copyright (C) 1998-1999, 2001, 2004, 2006, 2009-2011 Free Software
12559
c2cbabec01dd update nearly all FSF copyright year lists to include 2010
Jim Meyering <meyering@redhat.com>
parents: 12518
diff changeset
10 # Foundation, Inc.
5611
87c42e194f4a Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5016
diff changeset
11 # This file is free software; the Free Software Foundation
87c42e194f4a Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5016
diff changeset
12 # gives unlimited permission to copy and/or distribute it,
87c42e194f4a Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5016
diff changeset
13 # with or without modifications, as long as this notice is preserved.
87c42e194f4a Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5016
diff changeset
14
5016
7141ea4946af Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
Jim Meyering <jim@meyering.net>
parents: 3486
diff changeset
15 AC_DEFUN([gl_FSTYPENAME],
7247
c77c9dc7d8c6 * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
Paul Eggert <eggert@cs.ucla.edu>
parents: 5611
diff changeset
16 [
c77c9dc7d8c6 * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
Paul Eggert <eggert@cs.ucla.edu>
parents: 5611
diff changeset
17 AC_CHECK_MEMBERS([struct statfs.f_fstypename],,,
c77c9dc7d8c6 * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
Paul Eggert <eggert@cs.ucla.edu>
parents: 5611
diff changeset
18 [
c77c9dc7d8c6 * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
Paul Eggert <eggert@cs.ucla.edu>
parents: 5611
diff changeset
19 #include <sys/types.h>
c77c9dc7d8c6 * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
Paul Eggert <eggert@cs.ucla.edu>
parents: 5611
diff changeset
20 #include <sys/param.h>
c77c9dc7d8c6 * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
Paul Eggert <eggert@cs.ucla.edu>
parents: 5611
diff changeset
21 #include <sys/mount.h>
c77c9dc7d8c6 * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
Paul Eggert <eggert@cs.ucla.edu>
parents: 5611
diff changeset
22 ])
c77c9dc7d8c6 * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
Paul Eggert <eggert@cs.ucla.edu>
parents: 5611
diff changeset
23 ])