diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-07-19 10:33:06 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-07-19 10:33:06 -0700 |
commit | 590bd46743151a55ba68a7d211f82b2485c57d3a (patch) | |
tree | 5aeae1bbd40336943ada352e2d9fee2d71067af4 /src/unexelf.c | |
parent | f41628b25314bf3ab1129306a6ff414650fea915 (diff) |
Port to OpenBSD.
See http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00688.html
and the surrounding thread.
* minibuf.c (read_minibuf_noninteractive): Rewrite to use getchar
rather than fgets, and retry after EINTR. Otherwise, 'emacs
--batch -f byte-compile-file' fails on OpenBSD if an inactivity
timer goes off.
* s/openbsd.h (BROKEN_SIGIO): Define.
* unexelf.c (unexec) [__OpenBSD__]:
Don't update the .mdebug section of the Alpha COFF symbol table.
Diffstat (limited to 'src/unexelf.c')
-rw-r--r-- | src/unexelf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unexelf.c b/src/unexelf.c index 951e7c0eea..a169ffcb5c 100644 --- a/src/unexelf.c +++ b/src/unexelf.c @@ -1053,7 +1053,7 @@ temacs: memcpy (NEW_SECTION_H (nn).sh_offset + new_base, src, NEW_SECTION_H (nn).sh_size); -#ifdef __alpha__ +#if defined __alpha__ && !defined __OpenBSD__ /* Update Alpha COFF symbol table: */ if (strcmp (old_section_names + OLD_SECTION_H (n).sh_name, ".mdebug") == 0) @@ -1072,7 +1072,7 @@ temacs: symhdr->cbRfdOffset += new_data2_size; symhdr->cbExtOffset += new_data2_size; } -#endif /* __alpha__ */ +#endif /* __alpha__ && !__OpenBSD__ */ #if defined (_SYSTYPE_SYSV) if (NEW_SECTION_H (nn).sh_type == SHT_MIPS_DEBUG |