aboutsummaryrefslogtreecommitdiffstats
path: root/src/m
diff options
context:
space:
mode:
authorGlenn Morris2010-06-29 19:48:54 -0700
committerGlenn Morris2010-06-29 19:48:54 -0700
commit6259c2ec7ae4b60f59d5101c8c544d15a90540a3 (patch)
treee0680ee34ce375d77f41226081a616a3f1f762e1 /src/m
parenta2f043d3d72cbbc0ad64fb271a9f0545791100ec (diff)
downloademacs-6259c2ec7ae4b60f59d5101c8c544d15a90540a3.tar.gz
emacs-6259c2ec7ae4b60f59d5101c8c544d15a90540a3.zip
Remove some cpp that is internal to configure.in.
* configure.in (C_OPTIMIZE_SWITCH, CANNOT_DUMP, SYSTEM_MALLOC): (USE_MMAP_FOR_BUFFERS, C_WARNING_SWITCH): Set with shell, not cpp. (LIBX): Remove, just use -lX11 in the one place this was used. (cannot_dump): Replace with CANNOT_DUMP. * src/Makefile.in (CANNOT_DUMP): Update for configure name change. * src/s/freebsd.h (USE_MMAP_FOR_BUFFERS): * src/s/irix6-5.h (USE_MMAP_FOR_BUFFERS): * src/s/darwin.h (SYSTEM_MALLOC): * src/s/sol2-10.h (SYSTEM_MALLOC): Move to configure. * src/m/alpha.h: Remove old comment. * src/s/aix4-2.h: Update comment. * src/s/template.h: Remove USE_MMAP_FOR_BUFFERS. * msdos/sed1v2.inp (CANNOT_DUMP): Update for configure name change. * admin/CPP-DEFINES: Remove USE_MMAP_FOR_BUFFERS, CANNOT_DUMP. * etc/DEBUG: Update SYSTEM_MALLOC and CANNOT_DUMP references. Some re-filling.
Diffstat (limited to 'src/m')
-rw-r--r--src/m/alpha.h13
-rw-r--r--src/m/template.h5
2 files changed, 0 insertions, 18 deletions
diff --git a/src/m/alpha.h b/src/m/alpha.h
index c57fd0d9821..a7e4fa6b07b 100644
--- a/src/m/alpha.h
+++ b/src/m/alpha.h
@@ -47,19 +47,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
47/* Convert that into an integer that is 100 for a load average of 1.0 */ 47/* Convert that into an integer that is 100 for a load average of 1.0 */
48#define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE) 48#define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE)
49 49
50/* GNU malloc and the relocating allocator do not work together
51 with X. [Who wrote that?] */
52
53/* May 1995: reportedly [Rainer Schoepf <schoepf@uni-mainz.de>] both the
54 system and the gnu malloc system work with "alpha-dec-osf3.0" and
55 "alpha-dec-osf3.2". */
56
57/* May 1995: it seems to me [Morten Welinder <terra@diku.dk>] that both
58 mallocs work with "alpha-dec-osf2.0", but I daren't break anything
59 right now. Feel free to play if you want. */
60
61/* #define SYSTEM_MALLOC */
62
63#ifdef __ELF__ 50#ifdef __ELF__
64 51
65#if !defined(GNU_LINUX) && !defined(__NetBSD__) 52#if !defined(GNU_LINUX) && !defined(__NetBSD__)
diff --git a/src/m/template.h b/src/m/template.h
index 3beac1a7808..0b149411a0a 100644
--- a/src/m/template.h
+++ b/src/m/template.h
@@ -39,11 +39,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
39/* Convert that into an integer that is 100 for a load average of 1.0 */ 39/* Convert that into an integer that is 100 for a load average of 1.0 */
40#define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE) 40#define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE)
41 41
42/* Define CANNOT_DUMP on machines where unexec does not work.
43 Then the function dump-emacs will not be defined
44 and temacs will do (load "loadup") automatically unless told otherwise. */
45#define CANNOT_DUMP
46
47/* Define VIRT_ADDR_VARIES if the virtual addresses of 42/* Define VIRT_ADDR_VARIES if the virtual addresses of
48 pure and impure space as loaded can vary, and even their 43 pure and impure space as loaded can vary, and even their
49 relative order cannot be relied on. 44 relative order cannot be relied on.