Lars Ingebrigtsen writes: > Eli Zaretskii writes: > >> Yes. Or we could use something to single out glibc, if there is such >> a macro. >... > birdsite@airmail.cc, can you try the following trivial patch and see > whether that allows you to compile Emacs again? > > diff --git a/src/alloc.c b/src/alloc.c > index 8edcd06c84..4ea337ddba 100644 > --- a/src/alloc.c > +++ b/src/alloc.c > ... > -#ifdef GNU_LINUX > +#if defined GNU_LINUX && defined __GLIBC__ Thank you larsi! the patch works and the initial compilation is fine. The build log is attached below. Although now i'm getting a new error such as: LC_ALL=C ./temacs -batch -l loadup --temacs=pdump Loading loadup.el (source)... dump mode: pdump ... Loading files.el (source)... (require pcase) while preparing to dump make[1]: *** [Makefile:584: emacs.pdmp] Error 255 Thanks!