DragonFly BSD
DragonFly users List (threaded) for 2005-01
[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]

Re: /usr/include/ics/eventlib.h ?


From: YONETANI Tomokazu <qhwt+dfly@xxxxxxxxxx>
Date: Wed, 5 Jan 2005 14:38:48 +0900

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



[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]