/[autoconf]/autoconf/doc/autoconf.texi
ViewVC logotype

Diff of /autoconf/doc/autoconf.texi

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.753 by adl, Tue Aug 19 07:56:58 2003 UTC revision 1.754 by akim, Mon Aug 25 06:29:48 2003 UTC
# Line 4332  AC_CHECK_HEADERS([net/if.h], [], [], Line 4332  AC_CHECK_HEADERS([net/if.h], [], [],
4332  ])  ])
4333  @end example  @end example
4334    
4335    @item @file{netinet/if_ether.h}
4336    @hdrindex netinet/if_ether.h
4337    On Darwin, this file requires that @file{stdio.h} and
4338    @file{sys/socket.h} be included beforehand.  One should run:
4339    
4340    @example
4341    AC_CHECK_HEADERS([sys/socket.h])
4342    AC_CHECK_HEADERS([netinet/if_ether.h], [], [],
4343    [#include <stdio.h>
4344    #if STDC_HEADERS
4345    # include <stdlib.h>
4346    # include <stddef.h>
4347    #else
4348    # if HAVE_STDLIB_H
4349    #  include <stdlib.h>
4350    # endif
4351    #endif
4352    #if HAVE_SYS_SOCKET_H
4353    # include <sys/socket.h>
4354    #endif
4355    ])
4356    @end example
4357    
4358  @item @file{stdint.h}  @item @file{stdint.h}
4359  See above, item @file{inttypes.h} vs.@: @file{stdint.h}.  See above, item @file{inttypes.h} vs.@: @file{stdint.h}.
4360    

Legend:
Removed from v.1.753  
changed lines
  Added in v.1.754

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26