From Ville Karaila.
+2003-08-25 Akim Demaille <akim@epita.fr>
+
+ * doc/autoconf.texi (Header Portability): netinet/if_ether.h.
+ From Ville Karaila.
+
2003-08-24 Akim Demaille <akim@epita.fr>
* configure.ac: Bump to 2.57c.
Tony Leneis tony@plaza.ds.adp.com
Uwe Seimet us@orbacus.com
Vance Shipley vances@motivity.ca
+Ville Karaila k151810@luukku.com
Viktor Dukhovni viktor@anaheim.esm.com
Vladimir Volovich vvv@vsu.ru
Volker Borchert bt@teknon.de
])
@end example
+@item @file{netinet/if_ether.h}
+@hdrindex netinet/if_ether.h
+On Darwin, this file requires that @file{stdio.h} and
+@file{sys/socket.h} be included beforehand. One should run:
+
+@example
+AC_CHECK_HEADERS([sys/socket.h])
+AC_CHECK_HEADERS([netinet/if_ether.h], [], [],
+[#include <stdio.h>
+#if STDC_HEADERS
+# include <stdlib.h>
+# include <stddef.h>
+#else
+# if HAVE_STDLIB_H
+# include <stdlib.h>
+# endif
+#endif
+#if HAVE_SYS_SOCKET_H
+# include <sys/socket.h>
+#endif
+])
+@end example
+
@item @file{stdint.h}
See above, item @file{inttypes.h} vs.@: @file{stdint.h}.