aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYAMAMOTO Mitsuharu2009-08-28 22:50:11 +0000
committerYAMAMOTO Mitsuharu2009-08-28 22:50:11 +0000
commit890617cbfdfa8b4b01d9d06b243f58e15c0350c4 (patch)
tree4c6ecffa4825b513366142da6e87eee5007a73a1 /src
parent6bcd6333a4e6b9225c8d176fc94d215fc44fa198 (diff)
downloademacs-890617cbfdfa8b4b01d9d06b243f58e15c0350c4.tar.gz
emacs-890617cbfdfa8b4b01d9d06b243f58e15c0350c4.zip
[temacs] Undef HAVE_POSIX_MEMALIGN.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog10
-rw-r--r--src/s/darwin.h3
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 @@
12009-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
12009-08-28 Eli Zaretskii <eliz@gnu.org> 112009-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