diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2010-06-03 15:16:02 -0700 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2010-06-03 15:16:02 -0700 |
commit | eb697db59773f60b5db4ad30a8011221385b90c5 (patch) | |
tree | cd93a7cd9de2ed6eb0952dd00b04d18ed627b644 /src/m | |
parent | aa3830c49727fa443a11eaab9dedb404349c95e1 (diff) | |
download | emacs-eb697db59773f60b5db4ad30a8011221385b90c5.tar.gz |
Move UNEXEC definition to autoconf.
* configure.in (unxec): Do not define and substitute.
(UNEXEC_OBJ): New output variable, replaces cpp UNEXEC.
* msdos/sed1v2.inp (UNEXEC_OBJ): Use UNEXEC_OBJ instead of unexec.
* src/s/usg5-4.h (UNEXEC): Remove, move to configure.in.
* src/s/sol2-10.h (UNEXEC):
* src/s/irix6-5.h (UNEXEC):
* src/s/hpux10-20.h (UNEXEC):
* src/s/gnu-linux.h (UNEXEC):
* src/s/darwin.h (UNEXEC):
* src/s/cygwin.h (UNEXEC):
* src/s/bsd-common.h (UNEXEC):
* src/s/aix4-2.h (UNEXEC):
* src/m/alpha.h (UNEXEC): Likewise.
* src/Makefile.in (UNEXEC_OBJ): Define using @UNEXEC_OBJ@.
Diffstat (limited to 'src/m')
-rw-r--r-- | src/m/alpha.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/m/alpha.h b/src/m/alpha.h index 04ad9eaaf8f..c57fd0d9821 100644 --- a/src/m/alpha.h +++ b/src/m/alpha.h @@ -62,8 +62,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ #ifdef __ELF__ -#undef UNEXEC -#define UNEXEC unexelf.o #if !defined(GNU_LINUX) && !defined(__NetBSD__) #define DATA_START 0x140000000 #endif @@ -78,9 +76,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ #define TEXT_START 0x120000000 #define DATA_START 0x140000000 -/* The program to be used for unexec. */ -#define UNEXEC unexalpha.o - #endif /* __ELF__ */ /* On the Alpha it's best to avoid including TERMIO since struct |