diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-08-15 13:25:18 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-08-15 13:25:23 +0200 |
commit | 55772baee1627571c0814cf2d666fb3b963ff591 (patch) | |
tree | 7f46846d6359e73d15d0e3f0c050b257361e05d6 /src | |
parent | 36964b2358f6a3a0c722b04cf5b8505f247c300c (diff) | |
download | emacs-55772baee1627571c0814cf2d666fb3b963ff591.tar.gz emacs-55772baee1627571c0814cf2d666fb3b963ff591.tar.bz2 emacs-55772baee1627571c0814cf2d666fb3b963ff591.zip |
Make Emacs compile with musl instead of glibc
* src/alloc.c: musl doesn't have malloc_info (bug#50058).
Diffstat (limited to 'src')
-rw-r--r-- | src/alloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c index 8edcd06c843..4ea337ddbaa 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -7318,7 +7318,7 @@ Frames, windows, buffers, and subprocesses count as vectors make_int (strings_consed)); } -#ifdef GNU_LINUX +#if defined GNU_LINUX && defined __GLIBC__ DEFUN ("malloc-info", Fmalloc_info, Smalloc_info, 0, 0, "", doc: /* Report malloc information to stderr. This function outputs to stderr an XML-formatted @@ -7678,7 +7678,7 @@ N should be nonnegative. */); defsubr (&Sgarbage_collect_maybe); defsubr (&Smemory_info); defsubr (&Smemory_use_counts); -#ifdef GNU_LINUX +#if defined GNU_LINUX && defined __GLIBC__ defsubr (&Smalloc_info); #endif defsubr (&Ssuspicious_object); |