1 /* conf_post.h --- configure.ac includes this via AH_BOTTOM
3 Copyright (C) 1988, 1993-1994, 1999-2002, 2004-2014 Free Software
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
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.
30 /* Include any platform specific configuration file. */
31 #ifdef config_opsysfile
32 # include config_opsysfile
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
40 typedef unsigned int bool_bf
;
46 /* On AIX 3 this must be included before any other include file. */
49 # error "alloca not available on this machine"
53 /* When not using Clang, assume its attributes and features are absent. */
54 #ifndef __has_attribute
55 # define __has_attribute(a) false
58 # define __has_feature(a) false
61 /* True if addresses are being sanitized. */
62 #if defined __SANITIZE_ADDRESS__ || __has_feature (address_sanitizer)
63 # define ADDRESS_SANITIZER true
65 # define ADDRESS_SANITIZER false
70 #define malloc unexec_malloc
71 #define realloc unexec_realloc
72 #define free unexec_free
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
80 #endif /* DARWIN_OS */
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. */
90 /* We try to avoid checking for random and rint on hpux in
91 configure.ac, but some other configure test might check for them as
92 a dependency, so to be safe we also undefine them here.
107 You lose
; /* Emacs for DOS must be compiled with DJGPP */
109 #define _NAIVE_DOS_REGS
111 /* Start of gnulib-related stuff */
113 /* lib/ftoastr.c wants strtold, but DJGPP only has _strtold. DJGPP >
114 2.03 has it, but it also has _strtold as a stub that jumps to
115 strtold, so use _strtold in all versions. */
116 #define strtold _strtold
118 #if __DJGPP__ > 2 || __DJGPP_MINOR__ > 3
119 # define HAVE_LSTAT 1
123 /* The "portable" definition of _GL_INLINE on config.h does not work
124 with DJGPP GCC 3.4.4: it causes unresolved externals in sysdep.c,
125 although lib/execinfo.h is included and the inline functions there
128 # define _GL_EXECINFO_INLINE inline
130 /* End of gnulib-related stuff. */
132 #define emacs_raise(sig) msdos_fatal_signal (sig)
134 /* Define one of these for easier conditionals. */
135 #ifdef HAVE_X_WINDOWS
136 /* We need a little extra space, see ../../lisp/loadup.el and the
137 commentary below, in the non-X branch. The 140KB number was
138 measured on GNU/Linux and on MS-Windows. */
139 #define SYSTEM_PURESIZE_EXTRA (-170000+140000)
141 /* We need a little extra space, see ../../lisp/loadup.el.
142 As of 20091024, DOS-specific files use up 62KB of pure space. But
143 overall, we end up wasting 130KB of pure space, because
144 BASE_PURESIZE starts at 1.47MB, while we need only 1.3MB (including
145 non-DOS specific files and load history; the latter is about 55K,
146 but depends on the depth of the top-level Emacs directory in the
147 directory tree). Given the unknown policy of different DPMI
148 hosts regarding loading of untouched pages, I'm not going to risk
149 enlarging Emacs footprint by another 100+ KBytes. */
150 #define SYSTEM_PURESIZE_EXTRA (-170000+65000)
154 /* Mac OS X / GNUstep need a bit more pure memory. Of the existing knobs,
155 SYSTEM_PURESIZE_EXTRA seems like the least likely to cause problems. */
157 #if defined NS_IMPL_GNUSTEP
158 # define SYSTEM_PURESIZE_EXTRA 30000
159 #elif defined DARWIN_OS
160 # define SYSTEM_PURESIZE_EXTRA 200000
164 #if defined HAVE_NTGUI && !defined DebPrint
166 extern void _DebPrint (const char *fmt
, ...);
167 # define DebPrint(stuff) _DebPrint stuff
169 # define DebPrint(stuff)
173 #if defined CYGWIN && defined HAVE_NTGUI
174 # define NTGUI_UNICODE /* Cygwin runs only on UNICODE-supporting systems */
175 # define _WIN32_WINNT 0x500 /* Win2k */
178 #ifdef emacs /* Don't do this for lib-src. */
179 /* Tell regex.c to use a type compatible with Emacs. */
180 #define RE_TRANSLATE_TYPE Lisp_Object
181 #define RE_TRANSLATE(TBL, C) char_table_translate (TBL, C)
182 #define RE_TRANSLATE_P(TBL) (!EQ (TBL, make_number (0)))
188 #if __GNUC__ >= 3 /* On GCC 3.0 we might get a warning. */
189 #define NO_INLINE __attribute__((noinline))
195 ? __has_attribute (externally_visible) \
196 : (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 1)))
197 #define EXTERNALLY_VISIBLE __attribute__((externally_visible))
199 #define EXTERNALLY_VISIBLE
202 #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)
203 # define ATTRIBUTE_FORMAT(spec) __attribute__ ((__format__ spec))
205 # define ATTRIBUTE_FORMAT(spec) /* empty */
208 #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)
209 # define ATTRIBUTE_FORMAT_PRINTF(formatstring_parameter, first_argument) \
210 ATTRIBUTE_FORMAT ((__gnu_printf__, formatstring_parameter, first_argument))
212 # define ATTRIBUTE_FORMAT_PRINTF(formatstring_parameter, first_argument) \
213 ATTRIBUTE_FORMAT ((__printf__, formatstring_parameter, first_argument))
216 #define ATTRIBUTE_CONST _GL_ATTRIBUTE_CONST
218 /* Work around GCC bug 59600: when a function is inlined, the inlined
219 code may have its addresses sanitized even if the function has the
220 no_sanitize_address attribute. This bug is present in GCC 4.8.2
221 and clang 3.3, the latest releases as of December 2013, and the
222 only platforms known to support address sanitization. When the bug
223 is fixed the #if can be updated accordingly. */
224 #if ADDRESS_SANITIZER
225 # define ADDRESS_SANITIZER_WORKAROUND NO_INLINE
227 # define ADDRESS_SANITIZER_WORKAROUND
230 /* Attribute of functions whose code should not have addresses
233 #if (__has_attribute (no_sanitize_address) \
234 || 4 < __GNUC__ + (8 <= __GNUC_MINOR__))
235 # define ATTRIBUTE_NO_SANITIZE_ADDRESS \
236 __attribute__ ((no_sanitize_address)) ADDRESS_SANITIZER_WORKAROUND
237 #elif __has_attribute (no_address_safety_analysis)
238 # define ATTRIBUTE_NO_SANITIZE_ADDRESS \
239 __attribute__ ((no_address_safety_analysis)) ADDRESS_SANITIZER_WORKAROUND
241 # define ATTRIBUTE_NO_SANITIZE_ADDRESS
244 /* Some versions of GNU/Linux define noinline in their headers. */
249 /* Use Gnulib's extern-inline module for extern inline functions.
250 An include file foo.h should prepend FOO_INLINE to function
251 definitions, with the following overall pattern:
253 [#include any other .h files first.]
265 For every executable, exactly one file that includes the header
268 #define INLINE EXTERN_INLINE
270 before including config.h or any other .h file.
271 Other .c files should not define INLINE.
273 C99 compilers compile functions like 'incr' as C99-style extern
274 inline functions. Pre-C99 GCCs do something similar with
275 GNU-specific keywords. Pre-C99 non-GCC compilers use static
276 functions, which bloats the code but is good enough. */
279 # define INLINE _GL_INLINE
281 #define EXTERN_INLINE _GL_EXTERN_INLINE
282 #define INLINE_HEADER_BEGIN _GL_INLINE_HEADER_BEGIN
283 #define INLINE_HEADER_END _GL_INLINE_HEADER_END
285 /* To use the struct hack with N elements, declare the struct like this:
286 struct s { ...; t name[FLEXIBLE_ARRAY_MEMBER]; };
287 and allocate (offsetof (struct s, name) + N * sizeof (t)) bytes. */
288 #if 199901 <= __STDC_VERSION__
289 # define FLEXIBLE_ARRAY_MEMBER
290 #elif __GNUC__ && !defined __STRICT_ANSI__
291 # define FLEXIBLE_ARRAY_MEMBER 0
293 # define FLEXIBLE_ARRAY_MEMBER 1
296 /* Use this to suppress gcc's `...may be used before initialized' warnings. */
298 /* Use CODE only if lint checking is in effect. */
299 # define IF_LINT(Code) Code
301 # define IF_LINT(Code) /* empty */
304 /* conf_post.h ends here */