summaryrefslogtreecommitdiff
path: root/src/unexec.c
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2010-03-19 18:03:39 -0700
committerDan Nicolaescu <dann@ics.uci.edu>2010-03-19 18:03:39 -0700
commit605f35cdaa7bdd248b528173f060d4ffae1a77a2 (patch)
tree1db4eb3857621dd7e17cf16db22e2d0196971dde /src/unexec.c
parentaed71cf417ed73a53e1931d94d109070b3ed1041 (diff)
downloademacs-605f35cdaa7bdd248b528173f060d4ffae1a77a2.tar.gz
emacs-605f35cdaa7bdd248b528173f060d4ffae1a77a2.tar.bz2
emacs-605f35cdaa7bdd248b528173f060d4ffae1a77a2.zip
Remove non-working support for lynxos 3.0.
* s/lynxos.h: Remove file. * unexec.c (unexec, adjust_lnnoptrs): Do not depend on COFF_BSD_SYMBOLS, nothing defines it anymore. * os.texi (System Environment): Do not mention lynxos. * configure.in: Remove non-working lynxos port.
Diffstat (limited to 'src/unexec.c')
-rw-r--r--src/unexec.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/unexec.c b/src/unexec.c
index d1921069af7..a1bb5460d3c 100644
--- a/src/unexec.c
+++ b/src/unexec.c
@@ -630,7 +630,6 @@ mark_x (name)
PERROR (name);
}
-#ifndef COFF_BSD_SYMBOLS
/*
* If the COFF file contains a symbol table and a line number section,
@@ -699,8 +698,6 @@ adjust_lnnoptrs (writedesc, readdesc, new_name)
return 0;
}
-#endif /* COFF_BSD_SYMBOLS */
-
/* ****************************************************************
* unexec
*
@@ -724,9 +721,7 @@ unexec (new_name, a_name, data_start, bss_start, entry_address)
if (make_hdr (new, a_out, data_start, bss_start, entry_address, a_name, new_name) < 0
|| copy_text_and_data (new, a_out) < 0
|| copy_sym (new, a_out, a_name, new_name) < 0
-#ifndef COFF_BSD_SYMBOLS
|| adjust_lnnoptrs (new, a_out, new_name) < 0
-#endif
)
{
close (new);