[gmail] Re: Segmentation Fault calling /sbin/syslogd
Denis Vlasenko
vda.linux at googlemail.com
Tue Jan 23 13:35:09 PST 2007
On Tuesday 23 January 2007 22:11, Marc Leeman wrote:
> > > Here's the output of "strace -tt -o strace.og syslogd -n". It complains
> > > about a missing "/dev/log". I'm porting things from BB 1.0 to the new
> > > version and never cared about having such a device.
> >
> > strace says that you are using glibc. Which version
> > (values of __GLIBC__ and __GLIBC_MINOR__ defines?) - because glibc 2.4
> > works for me just fine.
>
> I still need to reconfigure my embedded target system for a strace,
> but I'm using uclibc 0.9.28 (eagerly wating for 0.9.29 though) on powerpc.
Aha! Try replacing
#ifdef __GLIBC__
by
#if definen(__GLIBC__) && !defined(__UCLIBC__)
Works now?
--
vda
More information about the busybox
mailing list