Subject: Re: configure changes?

Re: configure changes?

From: <codemstr_at_ptd.net>
Date: 2005-04-08

The problem seems to be caused by the following:
[
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.
#ifdef HAVE_ARPA_NAMESER_H
#include <arpa/nameser.h>
#endif
]

This code causes several header checks to fail on FreeBSD. I added:

#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif

above it then it works fine here. Perhaps give that change a try and see if
it still works for you?

Dominick Meglio
_______________________________________________
http://cool.haxx.se/mailman/listinfo/c-ares
Received on Fri Apr 8 01:48:47 2005