aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Caldwell2014-09-21 22:35:22 +0200
committerJan Djärv2014-09-21 22:35:22 +0200
commit63126683dbcf3ac507c3afd20ecbce88fb6e0fa4 (patch)
tree1d4ccd5041ed18eaaab057153371a273526cda53 /src
parentb761843bb07f1b50ed0468a25bfb9b073cdbb2ee (diff)
downloademacs-63126683dbcf3ac507c3afd20ecbce88fb6e0fa4.tar.gz
emacs-63126683dbcf3ac507c3afd20ecbce88fb6e0fa4.zip
* configure.ac: Increase headerpad_extra to 1000, update the comment
about load commands. * src/unexmacosx.c (dump_it): Improve error message. Fixes: debbugs:18505
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/unexmacosx.c4
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index ea4dde398a7..684de498522 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12014-09-21 David Caldwell <david@porkrind.org> (tiny change)
2
3 * unexmacosx.c (dump_it): Improve error message.
4
12014-09-18 Juri Linkov <juri@jurta.org> 52014-09-18 Juri Linkov <juri@jurta.org>
2 6
3 * image.c (imagemagick_load_image): Add delay to imagemagick metadata. 7 * image.c (imagemagick_load_image): Add delay to imagemagick metadata.
diff --git a/src/unexmacosx.c b/src/unexmacosx.c
index 8cd80a7a544..7d4762fdab2 100644
--- a/src/unexmacosx.c
+++ b/src/unexmacosx.c
@@ -1302,7 +1302,9 @@ dump_it (void)
1302 } 1302 }
1303 1303
1304 if (curr_header_offset > text_seg_lowest_offset) 1304 if (curr_header_offset > text_seg_lowest_offset)
1305 unexec_error ("not enough room for load commands for new __DATA segments"); 1305 unexec_error ("not enough room for load commands for new __DATA segments"
1306 " (increase headerpad_extra in configure.in to at least %lX)",
1307 num_unexec_regions * sizeof (struct segment_command));
1306 1308
1307 printf ("%ld unused bytes follow Mach-O header\n", 1309 printf ("%ld unused bytes follow Mach-O header\n",
1308 text_seg_lowest_offset - curr_header_offset); 1310 text_seg_lowest_offset - curr_header_offset);