comparison src/config.in @ 490:a54a07015253

*** empty log message ***
author Jim Blandy <jimb@redhat.com>
date Tue, 14 Jan 1992 07:14:12 +0000
parents fb3b02b10c8f
children 8b101799ff37
comparison
equal deleted inserted replaced
489:3d2d0362a496 490:a54a07015253
23 /* The configuration script links system.h to a s- file that describes 23 /* The configuration script links system.h to a s- file that describes
24 the system type you are using. 24 the system type you are using.
25 See the file ../share-lib/MACHINES for a list of systems and 25 See the file ../share-lib/MACHINES for a list of systems and
26 the names of the s- files to use for them. 26 the names of the s- files to use for them.
27 See s-template.h for documentation on writing s- files. */ 27 See s-template.h for documentation on writing s- files. */
28 #include "opsystem.h" 28 #include "@opsystem@"
29 29
30 /* The configuration script links machine.h to a m- file that 30 /* The configuration script links machine.h to a m- file that
31 describes the machine and system you use. 31 describes the machine and system you use.
32 See the file ../share-lib/MACHINES for a list of machines and 32 See the file ../share-lib/MACHINES for a list of machines and
33 the names of the m- files to use for them. 33 the names of the m- files to use for them.
34 See m-template.h for info on what m- files should define. */ 34 See m-template.h for info on what m- files should define. */
35 #include "machine.h" 35 #include "@machine@"
36 36
37 /* Load in the conversion definitions if this system 37 /* Load in the conversion definitions if this system
38 needs them and the source file being compiled has not 38 needs them and the source file being compiled has not
39 said to inhibit this. There should be no need for you 39 said to inhibit this. There should be no need for you
40 to alter these lines. */ 40 to alter these lines. */
103 103
104 #ifndef HIGHPRI 104 #ifndef HIGHPRI
105 /* #define HIGHPRI */ 105 /* #define HIGHPRI */
106 #endif 106 #endif
107 107
108 /* support `getenv' and `setenv' in Emacs (unix only) */
109
110 #ifndef MAINTAIN_ENVIRONMENT
111 /* #define MAINTAIN_ENVIRONMENT */
112 #endif
113
114 /* Define LISP_FLOAT_TYPE if you want emacs to support floating-point 108 /* Define LISP_FLOAT_TYPE if you want emacs to support floating-point
115 numbers. */ 109 numbers. */
116 110
117 #ifndef LISP_FLOAT_TYPE 111 #ifndef LISP_FLOAT_TYPE
118 /* #define LISP_FLOAT_TYPE */ 112 /* #define LISP_FLOAT_TYPE */
168 #ifdef GLYPH_16_BIT 162 #ifdef GLYPH_16_BIT
169 #define GLYPH unsigned short 163 #define GLYPH unsigned short
170 #else 164 #else
171 #define GLYPH unsigned char 165 #define GLYPH unsigned char
172 #endif 166 #endif
167
168 /* Define the return type of signal handlers if the s-xxx file
169 did not already do so. */
170 #ifndef SIGTYPE
171 #ifdef __STDC__
172 #define SIGTYPE void
173 #else
174 #define SIGTYPE int
175 #endif
176 #endif