diff options
| author | Steven Tamm | 2005-06-09 03:37:20 +0000 |
|---|---|---|
| committer | Steven Tamm | 2005-06-09 03:37:20 +0000 |
| commit | 427c5b1be2e6473c6792b375c8976c88e77570f7 (patch) | |
| tree | 3dd54b30058d4b0f2cdc032590295b2be7a5c1eb /src | |
| parent | 6c06bd88d56bf5b8b856aba8bb4e2c45cd4f0a18 (diff) | |
| download | emacs-427c5b1be2e6473c6792b375c8976c88e77570f7.tar.gz emacs-427c5b1be2e6473c6792b375c8976c88e77570f7.zip | |
unexmacosx.c (copy_data_segment): Copy __la_sym_ptr2 section
used by gcc4 on intel mac.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/unexmacosx.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 077b0da84b3..2d506df58cb 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2005-06-08 Steven Tamm <steventamm@mac.com> | ||
| 2 | |||
| 3 | * unexmacosx.c (copy_data_segment): Copy __la_sym_ptr2 section | ||
| 4 | used by gcc4 on intel mac. | ||
| 5 | |||
| 1 | 2005-06-09 Kim F. Storm <storm@cua.dk> | 6 | 2005-06-09 Kim F. Storm <storm@cua.dk> |
| 2 | 7 | ||
| 3 | * search.c (Fmatch_data): Add optional RESEAT arg. Unchain markers | 8 | * search.c (Fmatch_data): Add optional RESEAT arg. Unchain markers |
diff --git a/src/unexmacosx.c b/src/unexmacosx.c index e54dbea448c..1a2c211a09d 100644 --- a/src/unexmacosx.c +++ b/src/unexmacosx.c | |||
| @@ -695,6 +695,7 @@ copy_data_segment (struct load_command *lc) | |||
| 695 | } | 695 | } |
| 696 | else if (strncmp (sectp->sectname, "__la_symbol_ptr", 16) == 0 | 696 | else if (strncmp (sectp->sectname, "__la_symbol_ptr", 16) == 0 |
| 697 | || strncmp (sectp->sectname, "__nl_symbol_ptr", 16) == 0 | 697 | || strncmp (sectp->sectname, "__nl_symbol_ptr", 16) == 0 |
| 698 | || strncmp (sectp->sectname, "__la_sym_ptr2", 16) == 0 | ||
| 698 | || strncmp (sectp->sectname, "__dyld", 16) == 0 | 699 | || strncmp (sectp->sectname, "__dyld", 16) == 0 |
| 699 | || strncmp (sectp->sectname, "__const", 16) == 0 | 700 | || strncmp (sectp->sectname, "__const", 16) == 0 |
| 700 | || strncmp (sectp->sectname, "__cfstring", 16) == 0) | 701 | || strncmp (sectp->sectname, "__cfstring", 16) == 0) |