diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 10 | ||||
| -rw-r--r-- | src/s/darwin.h | 3 |
2 files changed, 13 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 24a02d8d72b..64aebb22725 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,13 @@ | |||
| 1 | 2009-08-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 2 | |||
| 3 | * unexmacosx.c (print_load_command_name) [LC_DYLD_INFO]: Add cases | ||
| 4 | LC_DYLD_INFO and LC_DYLD_INFO_ONLY. | ||
| 5 | (copy_data_segment): Also copy __program_vars section. | ||
| 6 | (copy_dyld_info) [LC_DYLD_INFO]: New function. | ||
| 7 | (dump_it) [LC_DYLD_INFO]: Use it. | ||
| 8 | |||
| 9 | * s/darwin.h [temacs]: Undef HAVE_POSIX_MEMALIGN. | ||
| 10 | |||
| 1 | 2009-08-28 Eli Zaretskii <eliz@gnu.org> | 11 | 2009-08-28 Eli Zaretskii <eliz@gnu.org> |
| 2 | 12 | ||
| 3 | * makefile.w32-in ($(BLD)/doc.$(O)): Depend on buildobj.h, not on | 13 | * makefile.w32-in ($(BLD)/doc.$(O)): Depend on buildobj.h, not on |
diff --git a/src/s/darwin.h b/src/s/darwin.h index da223e9a41c..40aa5831994 100644 --- a/src/s/darwin.h +++ b/src/s/darwin.h | |||
| @@ -171,6 +171,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 171 | #define malloc unexec_malloc | 171 | #define malloc unexec_malloc |
| 172 | #define realloc unexec_realloc | 172 | #define realloc unexec_realloc |
| 173 | #define free unexec_free | 173 | #define free unexec_free |
| 174 | /* Don't use posix_memalign because it is not compatible with | ||
| 175 | unexmacosx.c. */ | ||
| 176 | #undef HAVE_POSIX_MEMALIGN | ||
| 174 | #endif | 177 | #endif |
| 175 | 178 | ||
| 176 | /* The ncurses library has been moved out of the System framework in | 179 | /* The ncurses library has been moved out of the System framework in |