Skip to content
Snippets Groups Projects
Commit 7ae3f0e7 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

include sys/types.h too when checking for headers as otherwise this breaks

on Solaris and FreeBSD. At least.
parent 9afaa51e
No related branches found
No related tags found
No related merge requests found
......@@ -71,6 +71,9 @@ AC_CHECK_HEADERS(
arpa/nameser_compat.h \
arpa/inet.h, , ,
[
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
dnl We do this default-include simply to make sure that the nameser_compat.h
dnl header *REALLY* can be include after the new nameser.h. It seems AIX 5.1
dnl (and others?) is not designed to allow this.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment