Always map new memory for buffers after dumping.
[bpt/emacs.git] / src / conf_post.h
CommitLineData
b429a4ee
GM
1/* conf_post.h --- configure.ac includes this via AH_BOTTOM
2
ba318903 3Copyright (C) 1988, 1993-1994, 1999-2002, 2004-2014 Free Software
ab422c4d 4Foundation, Inc.
b429a4ee
GM
5
6This file is part of GNU Emacs.
7
8GNU Emacs is free software: you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation, either version 3 of the License, or
11(at your option) any later version.
12
13GNU Emacs is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
19along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20
21/* Commentary:
22
23 Rather than writing this code directly in AH_BOTTOM, we include it
24 via this file. This is so that it does not get processed by
25 autoheader. Eg, any undefs here would otherwise be commented out.
26*/
27
28/* Code: */
29
476b1b2d
GM
30/* Include any platform specific configuration file. */
31#ifdef config_opsysfile
32# include config_opsysfile
33#endif
34
96c06863
PE
35#include <stdbool.h>
36
30143e3d
JD
37/* The pre-C99 <stdbool.h> emulation doesn't work for bool bitfields.
38 Nor does compiling Objective-C with standard GCC. */
39#if __STDC_VERSION__ < 199901 || NS_IMPL_GNUSTEP
96c06863
PE
40typedef unsigned int bool_bf;
41#else
42typedef bool bool_bf;
43#endif
44
476b1b2d 45#ifndef WINDOWSNT
b429a4ee
GM
46/* On AIX 3 this must be included before any other include file. */
47#include <alloca.h>
48#if ! HAVE_ALLOCA
49# error "alloca not available on this machine"
50#endif
476b1b2d 51#endif
b429a4ee 52
e76119d7 53/* When not using Clang, assume its attributes and features are absent. */
7456e13f 54#ifndef __has_attribute
e76119d7
PE
55# define __has_attribute(a) false
56#endif
57#ifndef __has_feature
58# define __has_feature(a) false
59#endif
60
61/* True if addresses are being sanitized. */
62#if defined __SANITIZE_ADDRESS__ || __has_feature (address_sanitizer)
63# define ADDRESS_SANITIZER true
64#else
65# define ADDRESS_SANITIZER false
7456e13f
PE
66#endif
67
6a381852
GM
68#ifdef DARWIN_OS
69#ifdef emacs
70#define malloc unexec_malloc
71#define realloc unexec_realloc
72#define free unexec_free
6a381852
GM
73#endif
74/* The following solves the problem that Emacs hangs when evaluating
75 (make-comint "test0" "/nodir/nofile" nil "") when /nodir/nofile
76 does not exist. Also, setsid is not allowed in the vfork child's
77 context as of Darwin 9/Mac OS X 10.5. */
78#undef HAVE_WORKING_VFORK
79#define vfork fork
80#endif /* DARWIN_OS */
81
aac1c9ac
GM
82/* We have to go this route, rather than the old hpux9 approach of
83 renaming the functions via macros. The system's stdlib.h has fully
84 prototyped declarations, which yields a conflicting definition of
85 srand48; it tries to redeclare what was once srandom to be srand48.
86 So we go with HAVE_LRAND48 being defined. */
87#ifdef HPUX
88#undef srandom
89#undef random
aac1c9ac
GM
90#undef HAVE_RANDOM
91#undef HAVE_RINT
92#endif /* HPUX */
93
bb2e3a6e
GM
94#ifdef IRIX6_5
95#ifdef emacs
96char *_getpty();
97#endif
13a5993b
PE
98#define INET6 /* Needed for struct sockaddr_in6. */
99#undef HAVE_GETADDRINFO /* IRIX has getaddrinfo but not struct addrinfo. */
bb2e3a6e
GM
100#endif /* IRIX6_5 */
101
fe3cc771
GM
102#ifdef MSDOS
103#ifndef __DJGPP__
104You lose; /* Emacs for DOS must be compiled with DJGPP */
105#endif
106#define _NAIVE_DOS_REGS
107
108/* Start of gnulib-related stuff */
109
110/* lib/ftoastr.c wants strtold, but DJGPP only has _strtold. DJGPP >
111 2.03 has it, but it also has _strtold as a stub that jumps to
112 strtold, so use _strtold in all versions. */
113#define strtold _strtold
114
115#if __DJGPP__ > 2 || __DJGPP_MINOR__ > 3
116# define HAVE_LSTAT 1
117#else
118# define lstat stat
119#endif
bf6b4923
EZ
120
121/* We must intercept 'opendir' calls to stash away the directory name,
4fa20d8f 122 so we could reuse it in readlinkat; see msdos.c. */
bf6b4923
EZ
123#define opendir sys_opendir
124
b3cf17f6
EZ
125/* The "portable" definition of _GL_INLINE on config.h does not work
126 with DJGPP GCC 3.4.4: it causes unresolved externals in sysdep.c,
127 although lib/execinfo.h is included and the inline functions there
128 are visible. */
129#if __GNUC__ < 4
130# define _GL_EXECINFO_INLINE inline
131#endif
fe3cc771
GM
132/* End of gnulib-related stuff. */
133
b3cf17f6
EZ
134#define emacs_raise(sig) msdos_fatal_signal (sig)
135
bf6b4923
EZ
136/* DATA_START is needed by vm-limit.c and unexcoff.c. */
137#define DATA_START (&etext + 1)
138
fe3cc771
GM
139/* Define one of these for easier conditionals. */
140#ifdef HAVE_X_WINDOWS
141/* We need a little extra space, see ../../lisp/loadup.el and the
142 commentary below, in the non-X branch. The 140KB number was
143 measured on GNU/Linux and on MS-Windows. */
144#define SYSTEM_PURESIZE_EXTRA (-170000+140000)
145#else
146/* We need a little extra space, see ../../lisp/loadup.el.
147 As of 20091024, DOS-specific files use up 62KB of pure space. But
148 overall, we end up wasting 130KB of pure space, because
149 BASE_PURESIZE starts at 1.47MB, while we need only 1.3MB (including
150 non-DOS specific files and load history; the latter is about 55K,
151 but depends on the depth of the top-level Emacs directory in the
152 directory tree). Given the unknown policy of different DPMI
153 hosts regarding loading of untouched pages, I'm not going to risk
154 enlarging Emacs footprint by another 100+ KBytes. */
bf6b4923 155#define SYSTEM_PURESIZE_EXTRA (-170000+90000)
fe3cc771 156#endif
2e415bb7 157#endif /* MSDOS */
fe3cc771 158
b429a4ee
GM
159/* Mac OS X / GNUstep need a bit more pure memory. Of the existing knobs,
160 SYSTEM_PURESIZE_EXTRA seems like the least likely to cause problems. */
161#ifdef HAVE_NS
162#if defined NS_IMPL_GNUSTEP
163# define SYSTEM_PURESIZE_EXTRA 30000
164#elif defined DARWIN_OS
165# define SYSTEM_PURESIZE_EXTRA 200000
166#endif
167#endif
168
9c67d3ba
KB
169#ifdef CYGWIN
170#define SYSTEM_PURESIZE_EXTRA 10000
171#endif
172
a9e7a9d5
PE
173#if defined HAVE_NTGUI && !defined DebPrint
174# ifdef EMACSDEBUG
0fda9b75
DC
175extern void _DebPrint (const char *fmt, ...);
176# define DebPrint(stuff) _DebPrint stuff
177# else
178# define DebPrint(stuff)
a9e7a9d5
PE
179# endif
180#endif
0fda9b75 181
a9e7a9d5
PE
182#if defined CYGWIN && defined HAVE_NTGUI
183# define NTGUI_UNICODE /* Cygwin runs only on UNICODE-supporting systems */
184# define _WIN32_WINNT 0x500 /* Win2k */
185#endif
0fda9b75 186
b429a4ee
GM
187#ifdef emacs /* Don't do this for lib-src. */
188/* Tell regex.c to use a type compatible with Emacs. */
189#define RE_TRANSLATE_TYPE Lisp_Object
e3ccf108 190#define RE_TRANSLATE(TBL, C) char_table_translate (TBL, C)
b429a4ee 191#define RE_TRANSLATE_P(TBL) (!EQ (TBL, make_number (0)))
b429a4ee
GM
192#endif
193
194#include <string.h>
195#include <stdlib.h>
196
197#if __GNUC__ >= 3 /* On GCC 3.0 we might get a warning. */
198#define NO_INLINE __attribute__((noinline))
199#else
200#define NO_INLINE
201#endif
202
7456e13f
PE
203#if (__clang__ \
204 ? __has_attribute (externally_visible) \
205 : (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 1)))
b429a4ee
GM
206#define EXTERNALLY_VISIBLE __attribute__((externally_visible))
207#else
208#define EXTERNALLY_VISIBLE
209#endif
210
211#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)
212# define ATTRIBUTE_FORMAT(spec) __attribute__ ((__format__ spec))
213#else
214# define ATTRIBUTE_FORMAT(spec) /* empty */
215#endif
216
217#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)
218# define ATTRIBUTE_FORMAT_PRINTF(formatstring_parameter, first_argument) \
219 ATTRIBUTE_FORMAT ((__gnu_printf__, formatstring_parameter, first_argument))
220#else
221# define ATTRIBUTE_FORMAT_PRINTF(formatstring_parameter, first_argument) \
222 ATTRIBUTE_FORMAT ((__printf__, formatstring_parameter, first_argument))
223#endif
224
225#define ATTRIBUTE_CONST _GL_ATTRIBUTE_CONST
226
e76119d7
PE
227/* Work around GCC bug 59600: when a function is inlined, the inlined
228 code may have its addresses sanitized even if the function has the
417c9bcb
PE
229 no_sanitize_address attribute. This bug is fixed in GCC 4.9.0 and
230 clang 3.4. */
231#if (! ADDRESS_SANITIZER \
232 || ((4 < __GNUC__ + (9 <= __GNUC_MINOR__)) \
233 || 3 < __clang_major__ + (4 <= __clang_minor__)))
234# define ADDRESS_SANITIZER_WORKAROUND /* No workaround needed. */
e76119d7 235#else
417c9bcb 236# define ADDRESS_SANITIZER_WORKAROUND NO_INLINE
e76119d7
PE
237#endif
238
239/* Attribute of functions whose code should not have addresses
240 sanitized. */
241
242#if (__has_attribute (no_sanitize_address) \
243 || 4 < __GNUC__ + (8 <= __GNUC_MINOR__))
244# define ATTRIBUTE_NO_SANITIZE_ADDRESS \
245 __attribute__ ((no_sanitize_address)) ADDRESS_SANITIZER_WORKAROUND
246#elif __has_attribute (no_address_safety_analysis)
247# define ATTRIBUTE_NO_SANITIZE_ADDRESS \
248 __attribute__ ((no_address_safety_analysis)) ADDRESS_SANITIZER_WORKAROUND
249#else
250# define ATTRIBUTE_NO_SANITIZE_ADDRESS
251#endif
252
b429a4ee
GM
253/* Some versions of GNU/Linux define noinline in their headers. */
254#ifdef noinline
255#undef noinline
256#endif
257
0d6224d4
PE
258/* Use Gnulib's extern-inline module for extern inline functions.
259 An include file foo.h should prepend FOO_INLINE to function
260 definitions, with the following overall pattern:
261
262 [#include any other .h files first.]
263 ...
264 INLINE_HEADER_BEGIN
0d6224d4 265 ...
00382e8b 266 INLINE int
0d6224d4
PE
267 incr (int i)
268 {
269 return i + 1;
270 }
271 ...
272 INLINE_HEADER_END
273
00382e8b
PE
274 For every executable, exactly one file that includes the header
275 should do this:
0d6224d4 276
00382e8b 277 #define INLINE EXTERN_INLINE
0d6224d4 278
00382e8b
PE
279 before including config.h or any other .h file.
280 Other .c files should not define INLINE.
0d6224d4
PE
281
282 C99 compilers compile functions like 'incr' as C99-style extern
283 inline functions. Pre-C99 GCCs do something similar with
284 GNU-specific keywords. Pre-C99 non-GCC compilers use static
285 functions, which bloats the code but is good enough. */
286
00382e8b
PE
287#ifndef INLINE
288# define INLINE _GL_INLINE
289#endif
f162bcc3
PE
290#define EXTERN_INLINE _GL_EXTERN_INLINE
291#define INLINE_HEADER_BEGIN _GL_INLINE_HEADER_BEGIN
292#define INLINE_HEADER_END _GL_INLINE_HEADER_END
293
fbe9e0b9
PE
294/* To use the struct hack with N elements, declare the struct like this:
295 struct s { ...; t name[FLEXIBLE_ARRAY_MEMBER]; };
296 and allocate (offsetof (struct s, name) + N * sizeof (t)) bytes. */
297#if 199901 <= __STDC_VERSION__
298# define FLEXIBLE_ARRAY_MEMBER
299#elif __GNUC__ && !defined __STRICT_ANSI__
300# define FLEXIBLE_ARRAY_MEMBER 0
301#else
302# define FLEXIBLE_ARRAY_MEMBER 1
303#endif
304
25e65510
GM
305/* Use this to suppress gcc's `...may be used before initialized' warnings. */
306#ifdef lint
307/* Use CODE only if lint checking is in effect. */
308# define IF_LINT(Code) Code
25e65510
GM
309#else
310# define IF_LINT(Code) /* empty */
25e65510
GM
311#endif
312
b429a4ee 313/* conf_post.h ends here */