Peter, Thanks. Your suggestion was just the trick. -timm > -----Original Message----- > From: Peter Whaite [mailto:[EMAIL PROTECTED]] > Sent: Thursday, September 16, 1999 12:23 PM > To: [EMAIL PROTECTED] > Subject: Re: compilation issue (rev 0.99 ) > > > > "Tim MacDonald" said: > > > > If you have a moment, here's the problem: > > > > [root@foobar diald-0.99]# make depend > > cc -E -M *.c > .depend > > proxy_tap.c:20: linux/netlink.h: No such file or directory > > make: *** [depend] Error 1 > > [root@timmip diald-0.99]# > > I've been there! > > The address family AF_NETLINK is defined by 2.0.35 but is not > supported by the > kernel. The code in proxy_tap.c and proxy.c that uses netlink is > conditional > on AF_NETLINK. Put this after the last #include in diald.h... > > /* AF_NETLINK should be undef on 2.0.* kernels but it is not */ > #include <linux/config.h> > #ifndef CONFIG_NETLINK > #undef AF_NETLINK > #endif > > The next problem I had was the buggy setenv provided by > /usr/lib/libwrap.a. > To get rid of it run the 'fixwrappers' script as root. > > After that every thing worked just fine. > > --- > peta > - To unsubscribe from this list: send the line "unsubscribe linux-diald" in the body of a message to [EMAIL PROTECTED]