BIND_DB and BIND_EXCL_DB are defined as follows in /freevsd/src/vsd/modules/mod_bind/bind.h:
#ifdef HAVE_GDBM_H #define BIND_DB "/var/named/bind.db" #elif defined (HAVE_NDBM_H) #define BIND_DB "/var/named/bind" #endif #ifdef HAVE_GDBM_H #define BIND_EXCL_DB "/var/named/bind-excl.db" #elif defined (HAVE_NDBM_H) #define BIND_EXCL_DB "/var/named/bind-excl" #endif If you have neither GDBM or NDBM (tested for by the configure script) BIND_DB and BIND_EXCL_DB are not going to be defined and will produce the error you are seeing. Installing gdbm and executing your configure script again should solve this. Tim > -----Original Message----- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of George A. > Michalopoulos > Sent: 01 November 2001 20:50 > To: [EMAIL PROTECTED] > Subject: compiling sources.. part II > > > Hello all, > > after a brave upgrade of my system (Suse 7.2)(they include just > about everything under the sun don't they?), compiling now stops > here: > > gcc -I. -I.. -I../.. -I. -I./../../../libvsd -g -O2 -c domain.c > domain.c: In function `domain_delete': > domain.c:409: `BIND_EXCL_DB' undeclared (first use in this function) > domain.c:409: (Each undeclared identifier is reported only once > domain.c:409: for each function it appears in.) > domain.c:419: `BIND_DB' undeclared (first use in this function) > domain.c: In function `domain_add': > domain.c:588: `BIND_EXCL_DB' undeclared (first use in this function) > domain.c:596: `BIND_DB' undeclared (first use in this function) > domain.c: In function `domain_modify': > domain.c:1019: `BIND_EXCL_DB' undeclared (first use in this function) > make[2]: *** [domain.o] Error 1 > make[2]: Leaving directory > `/usr/local/src/freevsd-1.4.9-2/src/vsd/modules/mod_bind' > make[1]: *** [all-modules] Error 1 > make[1]: Leaving directory `/usr/local/src/freevsd-1.4.9-2/src/vsd' > make: *** [all-subdirs] Error 1 > > can anyone help me with this ? > > > -- > Best regards, > George > [EMAIL PROTECTED] > Tel: +30 31 0888448 > Fax: +30 31 0848770 > VideoPhone:+30 31 0888447 > > > I've set up my Wish Lists at Amazon.com and Amazon.co.uk. > If you're ever feeling generous and fancy splashing out on a > present for me, here's where to go to find something you know I'll love. > PS. Have I told you lately how much I admire and respect you? > Seems like a good time to do that. ;-) > > To view my Wish Lists, click on the links below. > http://www.amazon.com/exec/obidos/wishlist/257PYFNXCHPVH/ref=wl_em > _to?add-fav=1 > > ------------------------- The freeVSD Support List > -------------------------- > Subscribe: mailto:[EMAIL PROTECTED]?body=subscribe%20freevsd-support > Unsubscribe: mailto:[EMAIL PROTECTED]?body=unsubscribe%20freevsd-support Archives: http://freevsd.org/support/mail-archives/freevsd-support ---------------------------------------------------------------------------- - ------------------------- The freeVSD Support List -------------------------- Subscribe: mailto:[EMAIL PROTECTED]?body=subscribe%20freevsd-support Unsubscribe: mailto:[EMAIL PROTECTED]?body=unsubscribe%20freevsd-support Archives: http://freevsd.org/support/mail-archives/freevsd-support -----------------------------------------------------------------------------
