Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
157e99e4
Commit
157e99e4
authored
Jun 26, 2012
by
John Wiegley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
unexmacosx.c (copy_data_segment): Added two section names used on Mac
OS X Lion: __mod_init_func and __mod_term_func.
parent
ed6b3510
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
src/ChangeLog
src/ChangeLog
+8
-0
src/unexmacosx.c
src/unexmacosx.c
+2
-0
No files found.
src/ChangeLog
View file @
157e99e4
2012-06-26 John Wiegley <johnw@newartisans.com>
* unexmacosx.c (copy_data_segment): Added two section names used
on Mac OS X Lion: __mod_init_func and __mod_term_func.
* alloc.c (mark_memory): Do not check with -faddress-sanitizer
when building with Clang.
...
...
@@ -168,6 +171,11 @@
when time_t is unsigned and as wide as intmax_t.
See <http://bugs.gnu.org/9000#51>.
2012-06-26 Andreas Schwab <schwab@linux-m68k.org>
* gnutls.c (emacs_gnutls_handshake): Only retry if
GNUTLS_E_INTERRUPTED.
2012-06-23 Eli Zaretskii <eliz@gnu.org>
* dispnew.c (sit_for, Fsleep_for):
...
...
src/unexmacosx.c
View file @
157e99e4
...
...
@@ -846,6 +846,8 @@ copy_data_segment (struct load_command *lc)
||
strncmp
(
sectp
->
sectname
,
"__cfstring"
,
16
)
==
0
||
strncmp
(
sectp
->
sectname
,
"__gcc_except_tab"
,
16
)
==
0
||
strncmp
(
sectp
->
sectname
,
"__program_vars"
,
16
)
==
0
||
strncmp
(
sectp
->
sectname
,
"__mod_init_func"
,
16
)
==
0
||
strncmp
(
sectp
->
sectname
,
"__mod_term_func"
,
16
)
==
0
||
strncmp
(
sectp
->
sectname
,
"__objc_"
,
7
)
==
0
)
{
if
(
!
unexec_copy
(
sectp
->
offset
,
old_file_offset
,
sectp
->
size
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment