/usr/include/ics/eventlib.h ?
YONETANI Tomokazu
qhwt+dfly at les.ath.cx
Tue Jan 4 21:40:30 PST 2005
Hi.
On Tue, Jan 04, 2005 at 05:58:02PM -0800, walt wrote:
> When compiling the security/libassuan port, (depending
> on the gcc version) you may be missing this file:
>
> #if __FreeBSD_version < 503001
> #include <isc/eventlib.h>
>
> The file is here:
>
> /usr/src/contrib/bind-9.2.4rc7/lib/bind/include/isc/eventlib.h
>
> but it is never installed because the responsible Makefile
> is one of those files which appears in README.DELETED.
>
> So -- I dunno whether DFly needs this header, or if the
> assuan port is broken for gcc2 -- it's one or the other.
It's broken only for gcc2 because the line is inside #ifdef __FreeBSD__:
#ifdef __FreeBSD__
#include <sys/param.h>
#if __FreeBSD_version < 503001
#include <isc/eventlib.h>
#endif
#endif
And the patch files/patch-assuan-domain-connect.c should go away
because
A) the recent DragonFly comes with bind9
B) the recent versions of libassuan don't need the header file anyway
More information about the Users
mailing list