Serious building problem with BIND 8 !!!

Igmar Palsenberg maillist at chello.nl
Mon Sep 11 18:06:50 UTC 2000


On Fri, 8 Sep 2000, Greg wrote:

> Hi. I really need help on a problem I have encountered while
> compiling BIND 8 on RedHat Linux 6.2.
> 
> I created the dir /usr/src/bind, unpacked bind-src.tar.gz, bind-doc.tar.gz,
> and bind-contrib.tar.gz into it.
> Then I gave a: make -C src
> 
> Everything seems to go ok, until this happens:
> 
> make[2]: Entering directory `/usr/src/bind/src/lib/isc'
> if test ! -d threaded ; then mkdir threaded ; fi
> gcc  -O -g -I../../port/linux/include -I../../include  -D_REENTRANT -c
> eventlib.c \
>  -o threaded/eventlib.o
> eventlib.c: In function `__evGetNext':
> eventlib.c:296: structure has no member named `fds_bits'
> eventlib.c:297: structure has no member named `fds_bits'
> eventlib.c:298: structure has no member named `fds_bits'
> make[2]: *** [eventlib.o] Error 1
> make[2]: Leaving directory `/usr/src/bind/src/lib/isc'

Replace :

(u_long)ctx->rdLast.fds_bits[0],
(u_long)ctx->wrLast.fds_bits[0],
(u_long)ctx->exLast.fds_bits[0],

with :

__FDS_BITS(&ctx->rdLast)[0],
__FDS_BITS(&ctx->wrLast)[0],
__FDS_BITS(&ctx->exLast)[0],

in :

eventlib.c
ev_files.c



	Igmar




More information about the bind-users mailing list