diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/conf_post.h | 2 | ||||
| -rw-r--r-- | src/emacs.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/conf_post.h b/src/conf_post.h index e146b9bbe8a..30c948e39af 100644 --- a/src/conf_post.h +++ b/src/conf_post.h @@ -94,7 +94,7 @@ typedef bool bool_bf; #endif #ifdef DARWIN_OS -#ifdef emacs +#if defined emacs && !defined CANNOT_DUMP #define malloc unexec_malloc #define realloc unexec_realloc #define free unexec_free diff --git a/src/emacs.c b/src/emacs.c index 1868961090d..2b01a37f5ab 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -137,7 +137,7 @@ static bool might_dump; #endif -#ifdef DARWIN_OS +#if defined DARWIN_OS && !defined CANNOT_DUMP extern void unexec_init_emacs_zone (void); #endif @@ -742,7 +742,7 @@ main (int argc, char **argv) #endif /* If using unexmacosx.c (set by s/darwin.h), we must do this. */ -#ifdef DARWIN_OS +#if defined DARWIN_OS && !defined CANNOT_DUMP if (!initialized) unexec_init_emacs_zone (); #endif |
