]> code.delx.au - gnu-emacs/blob - src/conf_post.h
Move AMPERSAND_FULL_NAME, subprocesses from conf_post.h to configure.ac
[gnu-emacs] / src / conf_post.h
1 /* conf_post.h --- configure.ac includes this via AH_BOTTOM
2
3 Copyright (C) 1988, 1993-1994, 1999-2002, 2004-2012
4 Free Software Foundation, Inc.
5
6 This file is part of GNU Emacs.
7
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.
12
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.
17
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/>. */
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
30 /* On AIX 3 this must be included before any other include file. */
31 #include <alloca.h>
32 #if ! HAVE_ALLOCA
33 # error "alloca not available on this machine"
34 #endif
35
36 #ifdef SIGNAL_H_AHB
37 #undef SIGNAL_H_AHB
38 #include <signal.h>
39 #endif
40
41 /* This silences a few compilation warnings on FreeBSD. */
42 #ifdef BSD_SYSTEM_AHB
43 #undef BSD_SYSTEM_AHB
44 #undef BSD_SYSTEM
45 #if __FreeBSD__ == 1
46 #define BSD_SYSTEM 199103
47 #elif __FreeBSD__ == 2
48 #define BSD_SYSTEM 199306
49 #elif __FreeBSD__ >= 3
50 #define BSD_SYSTEM 199506
51 #endif
52 #endif
53
54 #ifdef DARWIN_OS
55 #ifdef emacs
56 #define malloc unexec_malloc
57 #define realloc unexec_realloc
58 #define free unexec_free
59 /* Don't use posix_memalign because it is not compatible with unexmacosx.c. */
60 #undef HAVE_POSIX_MEMALIGN
61 #endif
62 /* The following solves the problem that Emacs hangs when evaluating
63 (make-comint "test0" "/nodir/nofile" nil "") when /nodir/nofile
64 does not exist. Also, setsid is not allowed in the vfork child's
65 context as of Darwin 9/Mac OS X 10.5. */
66 #undef HAVE_WORKING_VFORK
67 #define vfork fork
68 #endif /* DARWIN_OS */
69
70 /* We have to go this route, rather than the old hpux9 approach of
71 renaming the functions via macros. The system's stdlib.h has fully
72 prototyped declarations, which yields a conflicting definition of
73 srand48; it tries to redeclare what was once srandom to be srand48.
74 So we go with HAVE_LRAND48 being defined. Note we also undef
75 HAVE_RANDOM via configure. */
76 #ifdef HPUX
77 #undef srandom
78 #undef random
79 #endif
80
81 #ifdef IRIX6_5
82 #ifdef emacs
83 char *_getpty();
84 #endif
85
86 #undef SA_RESTART /* not the same as defining BROKEN_SA_RESTART */
87 #endif /* IRIX6_5 */
88
89 #ifdef USG5_4
90 /* Get FIONREAD from <sys/filio.h>. Get <sys/ttold.h> to get struct tchars.
91 But get <termio.h> first to make sure ttold.h doesn't interfere. */
92 #include <sys/wait.h>
93
94 #ifdef emacs
95 #include <sys/filio.h>
96 #include <termio.h>
97 #include <sys/ttold.h>
98 #include <signal.h>
99 #include <sys/stream.h>
100 #include <sys/stropts.h>
101 #include <sys/termios.h>
102 #endif
103 #endif /* USG5_4 */
104
105 /* Include the os dependent file. */
106 #ifdef config_opsysfile
107 # include config_opsysfile
108 #endif
109
110 /* Mac OS X / GNUstep need a bit more pure memory. Of the existing knobs,
111 SYSTEM_PURESIZE_EXTRA seems like the least likely to cause problems. */
112 #ifdef HAVE_NS
113 #if defined NS_IMPL_GNUSTEP
114 # define SYSTEM_PURESIZE_EXTRA 30000
115 #elif defined DARWIN_OS
116 # define SYSTEM_PURESIZE_EXTRA 200000
117 #endif
118 #endif
119
120 #ifdef emacs /* Don't do this for lib-src. */
121 /* Tell regex.c to use a type compatible with Emacs. */
122 #define RE_TRANSLATE_TYPE Lisp_Object
123 #define RE_TRANSLATE(TBL, C) CHAR_TABLE_TRANSLATE (TBL, C)
124 #ifdef make_number
125 /* If make_number is a macro, use it. */
126 #define RE_TRANSLATE_P(TBL) (!EQ (TBL, make_number (0)))
127 #else
128 /* If make_number is a function, avoid it. */
129 #define RE_TRANSLATE_P(TBL) (!(INTEGERP (TBL) && XINT (TBL) == 0))
130 #endif
131 #endif
132
133 #include <string.h>
134 #include <stdlib.h>
135
136 #if __GNUC__ >= 3 /* On GCC 3.0 we might get a warning. */
137 #define NO_INLINE __attribute__((noinline))
138 #else
139 #define NO_INLINE
140 #endif
141
142 #if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 1))
143 #define EXTERNALLY_VISIBLE __attribute__((externally_visible))
144 #else
145 #define EXTERNALLY_VISIBLE
146 #endif
147
148 #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)
149 # define ATTRIBUTE_FORMAT(spec) __attribute__ ((__format__ spec))
150 #else
151 # define ATTRIBUTE_FORMAT(spec) /* empty */
152 #endif
153
154 #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)
155 # define ATTRIBUTE_FORMAT_PRINTF(formatstring_parameter, first_argument) \
156 ATTRIBUTE_FORMAT ((__gnu_printf__, formatstring_parameter, first_argument))
157 #else
158 # define ATTRIBUTE_FORMAT_PRINTF(formatstring_parameter, first_argument) \
159 ATTRIBUTE_FORMAT ((__printf__, formatstring_parameter, first_argument))
160 #endif
161
162 #define ATTRIBUTE_CONST _GL_ATTRIBUTE_CONST
163
164 /* Some versions of GNU/Linux define noinline in their headers. */
165 #ifdef noinline
166 #undef noinline
167 #endif
168
169 /* conf_post.h ends here */