diff options
| author | Paul Eggert | 2012-05-22 09:20:27 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-05-22 09:20:27 -0700 |
| commit | 34374650303af0e59ab406b516b91f13d7eb28d3 (patch) | |
| tree | 85bf43c2209e27f9692b261c6cfbf109eb978378 /admin | |
| parent | a86e87a6ae7341c7b2581e84df8bdd51867b98a3 (diff) | |
| download | emacs-34374650303af0e59ab406b516b91f13d7eb28d3.tar.gz emacs-34374650303af0e59ab406b516b91f13d7eb28d3.zip | |
Remove src/m/*.
* configure.in: Remove all mention of src/m/*.
(machine, machfile, M_FILE, config_machfile, and_machfile): Remove.
All uses removed.
(BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
(BITS_PER_LONG_LONG): Move to src/lisp.h.
* lib/makefile.w32-in: Remove dependencies on
$(EMACS_ROOT)/src/m/intel386.h.
* make-dist: Don't make links to src/m.
* admin/CPP-DEFINES: Do not mention src/m/*.h.
(BITS_PER_EMACS_INT, BITS_PER_LONG, BITS_PER_CHAR)
(BITS_PER_SHORT, BITS_PER_INT): Remove.
* admin/MAINTAINERS: Remove src/m/.
* lib-src/makefile.w32-in: Remove dependencies on
$(EMACS_ROOT)/src/m/intel386.h.
* msdos/mainmake.v2 (TAGS tags): Don't look at $(CURDIR)/src/m/intel386.h.
* nt/config.nt: Do not include "m/intel386.h"; file was removed.
(BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG):
Move to src/lisp.h.
(EMACS_INT_MAX): New macro.
This directory predates autoconf and is no longer needed nowadays.
Move its few remaining bits of functionality to where they're needed.
* src/m/README, src/m/alpha.h, src/m/amdx86-64.h, src/m/ia64.h, src/m/ibmrs6000.h:
* src/m/ibms390x.h, src/m/intel386.h, src/m/m68k.h, src/m/macppc.h:
* src/m/sparc.h, src/m/template.h: Remove.
* src/Makefile.in (M_FILE): Remove. All uses removed.
* src/alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS):
* src/lisp.h (USE_LSB_TAG):
* src/mem-limits.h (EXCEEDS_LISP_PTR):
Use VAL_MAX, not VALBITS, in #if.
* src/lisp.h (EMACS_INT_MAX): New macro, useful in #if.
(EMACS_UINT): Define unconditionally now.
(BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
(BITS_PER_EMACS_INT): New constants, replacing
what used to be in config.h, but not useful in #if.
(GCTYPEBITS, VALBITS): Define unconditionally, since m/* files don't
define them any more.
(VAL_MAX): New macro.
(VALMASK): Use it.
* src/puresize.h (PURESIZE_RATIO): Use EMACS_INT_MAX, not
BITS_PER_EMACS_INT, in #if.
* src/s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
(BROKEN_SIGPOLL): Move here from m/ibmrs6000.h, which was removed.
* src/s/gnu-linux.h (ULIMIT_BREAK_VALUE) [__i386__]:
* src/s/ms-w32.h (DATA_START):
Move here from removed file m/intel386.h.
* src/s/gnu.h (NLIST_STRUCT): Remove undef; 'configure' does this.
* src/s/irix6-5.h (_LP64): Remove; lisp.h no longer needs this.
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/CPP-DEFINES | 7 | ||||
| -rw-r--r-- | admin/ChangeLog | 8 | ||||
| -rw-r--r-- | admin/MAINTAINERS | 2 |
3 files changed, 9 insertions, 8 deletions
diff --git a/admin/CPP-DEFINES b/admin/CPP-DEFINES index d736f2354f7..c03bf6156ab 100644 --- a/admin/CPP-DEFINES +++ b/admin/CPP-DEFINES | |||
| @@ -63,16 +63,11 @@ USER_FULL_NAME If defined, overrides the default pw->pw_gecos for getting at t | |||
| 63 | 63 | ||
| 64 | ** Replace, the definition is trivial: SWITCH_ENUM_CAST | 64 | ** Replace, the definition is trivial: SWITCH_ENUM_CAST |
| 65 | 65 | ||
| 66 | ** Defines from src/m/*.h and src/s/*.h. Some of these might not be used in the code anymore, so they can be removed. The HAVE_* definitions are probably handled by autoconf, so it might be possible to just remove them from src/[sm]/*.h. | 66 | ** Defines from src/s/*.h. Some of these might not be used in the code anymore, so they can be removed. The HAVE_* definitions are probably handled by autoconf, so it might be possible to just remove them from src/s/*.h. |
| 67 | 67 | ||
| 68 | 68 | ||
| 69 | AIX | 69 | AIX |
| 70 | AMPERSAND_FULL_NAME | 70 | AMPERSAND_FULL_NAME |
| 71 | BITS_PER_EMACS_INT | ||
| 72 | BITS_PER_LONG | ||
| 73 | BITS_PER_CHAR | ||
| 74 | BITS_PER_SHORT | ||
| 75 | BITS_PER_INT | ||
| 76 | BROKEN_DATAGRAM_SOCKETS | 71 | BROKEN_DATAGRAM_SOCKETS |
| 77 | BROKEN_FIONREAD | 72 | BROKEN_FIONREAD |
| 78 | BROKEN_GET_CURRENT_DIR_NAME | 73 | BROKEN_GET_CURRENT_DIR_NAME |
diff --git a/admin/ChangeLog b/admin/ChangeLog index 5ee31127006..c9e9d4a1acc 100644 --- a/admin/ChangeLog +++ b/admin/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2012-05-22 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Remove src/m/*. | ||
| 4 | * CPP-DEFINES: Do not mention src/m/*.h. | ||
| 5 | (BITS_PER_EMACS_INT, BITS_PER_LONG, BITS_PER_CHAR) | ||
| 6 | (BITS_PER_SHORT, BITS_PER_INT): Remove. | ||
| 7 | * MAINTAINERS: Remove src/m/. | ||
| 8 | |||
| 1 | 2012-05-21 Paul Eggert <eggert@cs.ucla.edu> | 9 | 2012-05-21 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 10 | ||
| 3 | Use full name for m4/gnulib-comp.m4. (Bug#11529) | 11 | Use full name for m4/gnulib-comp.m4. (Bug#11529) |
diff --git a/admin/MAINTAINERS b/admin/MAINTAINERS index bfac347eb15..86d319d65d5 100644 --- a/admin/MAINTAINERS +++ b/admin/MAINTAINERS | |||
| @@ -171,7 +171,6 @@ src/insdel.c | |||
| 171 | src/image.c | 171 | src/image.c |
| 172 | src/lastfile.c | 172 | src/lastfile.c |
| 173 | src/lread.c | 173 | src/lread.c |
| 174 | src/m/ | ||
| 175 | src/macros.c | 174 | src/macros.c |
| 176 | src/makefile.w32-in | 175 | src/makefile.w32-in |
| 177 | src/marker.c | 176 | src/marker.c |
| @@ -220,4 +219,3 @@ src/xmenu.c | |||
| 220 | src/xrdb.c | 219 | src/xrdb.c |
| 221 | src/xselect.c | 220 | src/xselect.c |
| 222 | src/xterm.c | 221 | src/xterm.c |
| 223 | |||