Remove deprecated optional argument of make-face.
[bpt/emacs.git] / msdos / autogen / config.in
CommitLineData
27505cf5 1/* src/config.in. Generated from configure.ac by autoheader. */
1c9952f8 2
6bae0ccf 3/* GNU Emacs site configuration template file.
125c3718 4
ba318903
PE
5Copyright (C) 1988, 1993-1994, 1999-2002, 2004-2014 Free Software
6Foundation, Inc.
6c4f352f
JB
7
8This file is part of GNU Emacs.
9
8275fb5a 10GNU Emacs is free software: you can redistribute it and/or modify
eb963e25 11it under the terms of the GNU General Public License as published by
8275fb5a
GM
12the Free Software Foundation, either version 3 of the License, or
13(at your option) any later version.
eb963e25 14
6c4f352f 15GNU Emacs is distributed in the hope that it will be useful,
eb963e25
RS
16but WITHOUT ANY WARRANTY; without even the implied warranty of
17MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18GNU General Public License for more details.
19
1c9952f8 20You should have received a copy of the GNU General Public License
8275fb5a 21along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
1c9952f8
AS
22
23
22044edf 24/* No code in Emacs #includes config.h twice, but some bits of code
177c0ea7 25 intended to work with other packages as well (like gmalloc.c)
1c9952f8
AS
26 think they can include it as many times as they like. */
27#ifndef EMACS_CONFIG_H
28#define EMACS_CONFIG_H
29
30
671d409f
AS
31/* Define if building universal (internal helper macro) */
32#undef AC_APPLE_UNIVERSAL_BUILD
33
8ad96b1d
GM
34/* Define to use the convention that & in the full name stands for the login
35 id. */
36#undef AMPERSAND_FULL_NAME
37
5f90be1b
PE
38/* Define to the number of bits in type 'ptrdiff_t'. */
39#undef BITSIZEOF_PTRDIFF_T
40
41/* Define to the number of bits in type 'sig_atomic_t'. */
42#undef BITSIZEOF_SIG_ATOMIC_T
43
44/* Define to the number of bits in type 'size_t'. */
45#undef BITSIZEOF_SIZE_T
46
47/* Define to the number of bits in type 'wchar_t'. */
48#undef BITSIZEOF_WCHAR_T
49
50/* Define to the number of bits in type 'wint_t'. */
51#undef BITSIZEOF_WINT_T
52
dd0d840e
GM
53/* Define if get_current_dir_name should not be used. */
54#undef BROKEN_GET_CURRENT_DIR_NAME
55
56/* Define on FreeBSD to work around an issue when reading from a PTY. */
57#undef BROKEN_PTY_READ_AFTER_EAGAIN
58
e7586c7a
GM
59/* Define if Emacs cannot be dumped on your system. */
60#undef CANNOT_DUMP
61
afd07e01
GM
62/* Define this to enable compile time checks for the Lisp_Object data type. */
63#undef CHECK_LISP_OBJECT_TYPE
64
7e723570
GM
65/* Define if you want lock files to be written, so that Emacs can tell
66 instantly when you try to modify a file that someone else has modified in
67 his/her Emacs. */
68#undef CLASH_DETECTION
69
bb7dce39
GM
70/* Short copyright string for this version of Emacs. */
71#undef COPYRIGHT
72
0eb775a3
GM
73/* Define to one of '_getb67', 'GETB67', 'getb67' for Cray-2 and Cray-YMP
74 systems. This function is required for 'alloca.c' support on those systems.
1c9952f8
AS
75 */
76#undef CRAY_STACKSEG_END
77
d3127c14
GM
78/* Define if the system is Cygwin. */
79#undef CYGWIN
80
0eb775a3 81/* Define to 1 if using 'alloca.c'. */
1c9952f8
AS
82#undef C_ALLOCA
83
d3127c14
GM
84/* Define if the system is Darwin. */
85#undef DARWIN_OS
86
02bd7257
GM
87/* Extra bits to be or'd in with any pointers stored in a Lisp_Object. */
88#undef DATA_SEG_BITS
89
7e723570
GM
90/* Name of the default sound device. */
91#undef DEFAULT_SOUND_DEVICE
92
1c9952f8
AS
93/* Define to 1 for DGUX with <sys/dg_sys_info.h>. */
94#undef DGUX
95
9ff736dc
GM
96/* Character that separates directories in a file name. */
97#undef DIRECTORY_SEP
98
7e723570
GM
99/* Define if process.c does not need to close a pty to make it a controlling
100 terminal (it is already a controlling terminal of the subprocess, because
101 we did ioctl TIOCSCTTY). */
102#undef DONT_REOPEN_PTY
103
7cd2ed2c
GM
104/* Define if the system is MS DOS or MS Windows. */
105#undef DOS_NT
106
1c9952f8
AS
107/* Define to 1 if you are using the GNU C Library. */
108#undef DOUG_LEA_MALLOC
109
7c61eaab
GM
110/* Define to 1 to enable w32 debug facilities. */
111#undef EMACSDEBUG
112
1c9952f8
AS
113/* Define to the canonical Emacs configuration name. */
114#undef EMACS_CONFIGURATION
115
116/* Define to the options passed to configure. */
117#undef EMACS_CONFIG_OPTIONS
118
7ee3791f
GM
119/* Define to 1 if expensive run-time data type and consistency checks are
120 enabled. */
29771094
DN
121#undef ENABLE_CHECKING
122
0cdca42a
GM
123/* Define this to 1 if F_DUPFD behavior does not match POSIX */
124#undef FCNTL_DUPFD_BUGGY
125
dd0d840e
GM
126/* Letter to use in finding device name of first PTY, if PTYs are supported.
127 */
128#undef FIRST_PTY_LETTER
129
ad4c8083
GM
130/* Without the following workaround, Emacs runs slowly on OS X 10.8.
131 The workaround disables some useful run-time checking, so it
132 should be conditional to the platforms with the performance bug.
133 Perhaps Apple will fix this some day; also see m4/extern-inline.m4. */
134#if defined __APPLE__ && defined __GNUC__
135# ifndef _DONT_USE_CTYPE_INLINE_
136# define _DONT_USE_CTYPE_INLINE_
137# endif
138# ifndef _FORTIFY_SOURCE
139# define _FORTIFY_SOURCE 0
140# endif
141#endif
142
143
403e1769
GM
144/* Enable compile-time and run-time bounds-checking, and some warnings,
145 without upsetting glibc 2.15+. */
4e79d09a 146 #if !defined _FORTIFY_SOURCE && defined __OPTIMIZE__ && __OPTIMIZE__
403e1769
GM
147 # define _FORTIFY_SOURCE 2
148 #endif
0f55a32e 149
403e1769 150
f199cab1
GM
151/* Define to 1 if futimesat mishandles a NULL file name. */
152#undef FUTIMESAT_NULL_BUG
153
29771094
DN
154/* Define this to check for errors in cons list. */
155#undef GC_CHECK_CONS_LIST
156
157/* Define this temporarily to hunt a bug. If defined, the size of strings is
158 redundantly recorded in sdata structures so that it can be compared to the
159 sizes recorded in Lisp strings. */
160#undef GC_CHECK_STRING_BYTES
161
162/* Define this to check the string free list. */
163#undef GC_CHECK_STRING_FREE_LIST
164
165/* Define this to check for short string overrun. */
166#undef GC_CHECK_STRING_OVERRUN
167
c9ca3f76
GM
168/* Mark a secondary stack, like the register stack on the ia64. */
169#undef GC_MARK_SECONDARY_STACK
170
c9ca3f76
GM
171/* Define if setjmp is known to save all registers relevant for conservative
172 garbage collection in the jmp_buf. */
173#undef GC_SETJMP_WORKS
174
710f5812
GM
175/* Define to the type of elements in the array set by `getgroups'. Usually
176 this is either `int' or `gid_t'. */
177#undef GETGROUPS_T
178
179/* Define this to 1 if getgroups(0,NULL) does not return the number of groups.
180 */
181#undef GETGROUPS_ZERO_BUG
182
f199cab1
GM
183/* Define if gettimeofday clobbers the localtime buffer. */
184#undef GETTIMEOFDAY_CLOBBERS_LOCALTIME
185
186/* Define this to 'void' or 'struct timezone' to match the system's
187 declaration of the second argument to gettimeofday. */
188#undef GETTIMEOFDAY_TIMEZONE
189
7ee3791f
GM
190/* Define this to enable glyphs debugging code. */
191#undef GLYPH_DEBUG
192
3bf26e96
GM
193/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
194 whether the gnulib module close-stream shall be considered present. */
195#undef GNULIB_CLOSE_STREAM
196
710f5812
GM
197/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
198 whether the gnulib module faccessat shall be considered present. */
199#undef GNULIB_FACCESSAT
200
d7ad186c
GM
201/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
202 whether the gnulib module fdopendir shall be considered present. */
203#undef GNULIB_FDOPENDIR
204
f199cab1
GM
205/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
206 whether the gnulib module fscanf shall be considered present. */
207#undef GNULIB_FSCANF
1c9952f8 208
e412eb97
GM
209/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
210 whether the gnulib module mkostemp shall be considered present. */
211#undef GNULIB_MKOSTEMP
212
a6b92a4a
GM
213/* enable some gnulib portability checks */
214#undef GNULIB_PORTCHECK
215
f199cab1
GM
216/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
217 whether the gnulib module scanf shall be considered present. */
218#undef GNULIB_SCANF
219
d3127c14
GM
220/* Define if ths system is compatible with GNU/Linux. */
221#undef GNU_LINUX
222
1c9952f8
AS
223/* Define to 1 if you want to use the GNU memory allocator. */
224#undef GNU_MALLOC
225
dd0d840e 226/* Define to set the G_SLICE environment variable to "always-malloc" at
32c8eae2 227 startup. */
dd0d840e
GM
228#undef G_SLICE_ALWAYS_MALLOC
229
0cdca42a
GM
230/* Define to 1 if you have the `accept4' function. */
231#undef HAVE_ACCEPT4
232
710f5812
GM
233/* Define to 1 if you have the `access' function. */
234#undef HAVE_ACCESS
235
3a019ab4
GM
236/* Define to 1 if you have the `aclsort' function. */
237#undef HAVE_ACLSORT
238
239/* Define to 1 if you have the <aclv.h> header file. */
240#undef HAVE_ACLV_H
241
242/* Define to 1 if you have the `aclx_get' function. */
243#undef HAVE_ACLX_GET
244
245/* Define to 1 if you have the `acl_copy_ext_native' function. */
246#undef HAVE_ACL_COPY_EXT_NATIVE
247
248/* Define to 1 if you have the `acl_create_entry_np' function. */
249#undef HAVE_ACL_CREATE_ENTRY_NP
250
251/* Define to 1 if you have the `acl_delete_def_file' function. */
252#undef HAVE_ACL_DELETE_DEF_FILE
253
254/* Define to 1 if you have the `acl_delete_fd_np' function. */
255#undef HAVE_ACL_DELETE_FD_NP
256
257/* Define to 1 if you have the `acl_delete_file_np' function. */
258#undef HAVE_ACL_DELETE_FILE_NP
259
260/* Define to 1 if you have the `acl_entries' function. */
261#undef HAVE_ACL_ENTRIES
262
263/* Define to 1 if you have the `acl_extended_file' function. */
264#undef HAVE_ACL_EXTENDED_FILE
265
266/* Define to 1 if the constant ACL_FIRST_ENTRY exists. */
267#undef HAVE_ACL_FIRST_ENTRY
268
269/* Define to 1 if you have the `acl_free' function. */
270#undef HAVE_ACL_FREE
271
272/* Define to 1 if you have the `acl_free_text' function. */
273#undef HAVE_ACL_FREE_TEXT
274
275/* Define to 1 if you have the `acl_from_mode' function. */
276#undef HAVE_ACL_FROM_MODE
277
278/* Define to 1 if you have the `acl_from_text' function. */
279#undef HAVE_ACL_FROM_TEXT
280
281/* Define to 1 if you have the `acl_get_fd' function. */
282#undef HAVE_ACL_GET_FD
283
284/* Define to 1 if you have the `acl_get_file' function. */
285#undef HAVE_ACL_GET_FILE
286
287/* Define to 1 if you have the <acl/libacl.h> header file. */
288#undef HAVE_ACL_LIBACL_H
289
290/* Define to 1 if you have the `acl_set_fd' function. */
291#undef HAVE_ACL_SET_FD
292
293/* Define to 1 if you have the `acl_set_file' function. */
294#undef HAVE_ACL_SET_FILE
295
296/* Define to 1 if you have the `acl_to_short_text' function. */
297#undef HAVE_ACL_TO_SHORT_TEXT
298
299/* Define to 1 if you have the `acl_trivial' function. */
300#undef HAVE_ACL_TRIVIAL
301
302/* Define to 1 if the ACL type ACL_TYPE_EXTENDED exists. */
303#undef HAVE_ACL_TYPE_EXTENDED
304
4fc2b746
GM
305/* Define to 1 if you have 'alloca' after including <alloca.h>, a header that
306 may be supplied by this distribution. */
1c9952f8
AS
307#undef HAVE_ALLOCA
308
309/* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
310 */
311#undef HAVE_ALLOCA_H
312
51d13991
JD
313/* Define to 1 if ALSA is available. */
314#undef HAVE_ALSA
315
eafe4c87
GM
316/* Define to 1 if you have the <byteswap.h> header file. */
317#undef HAVE_BYTESWAP_H
318
a451f14b
PE
319/* Define to 1 if strtold conforms to C99. */
320#undef HAVE_C99_STRTOLD
321
2d3c36ae
SM
322/* Define to 1 if you have the `cfmakeraw' function. */
323#undef HAVE_CFMAKERAW
324
325/* Define to 1 if you have the `cfsetspeed' function. */
326#undef HAVE_CFSETSPEED
327
f199cab1
GM
328/* Define to 1 if you have the `clock_gettime' function. */
329#undef HAVE_CLOCK_GETTIME
330
331/* Define to 1 if you have the `clock_settime' function. */
332#undef HAVE_CLOCK_SETTIME
333
1c9952f8
AS
334/* Define to 1 if you have the <coff.h> header file. */
335#undef HAVE_COFF_H
336
337/* Define to 1 if you have the <com_err.h> header file. */
338#undef HAVE_COM_ERR_H
339
15e12598
VB
340/* Define to 1 if you have the `copysign' function. */
341#undef HAVE_COPYSIGN
690615f7 342
ce9ae7ca
GM
343/* Define to 1 if data_start is the address of the start of the main data
344 segment. */
345#undef HAVE_DATA_START
346
07562bde
GM
347/* Define to 1 if using D-Bus. */
348#undef HAVE_DBUS
349
e3a3e213
MA
350/* Define to 1 if you have the `dbus_type_is_valid' function. */
351#undef HAVE_DBUS_TYPE_IS_VALID
352
ca0294bb
GM
353/* Define to 1 if you have the `dbus_validate_bus_name' function. */
354#undef HAVE_DBUS_VALIDATE_BUS_NAME
355
356/* Define to 1 if you have the `dbus_validate_interface' function. */
357#undef HAVE_DBUS_VALIDATE_INTERFACE
358
359/* Define to 1 if you have the `dbus_validate_member' function. */
360#undef HAVE_DBUS_VALIDATE_MEMBER
361
362/* Define to 1 if you have the `dbus_validate_path' function. */
363#undef HAVE_DBUS_VALIDATE_PATH
364
244f96fc
MA
365/* Define to 1 if you have the `dbus_watch_get_unix_fd' function. */
366#undef HAVE_DBUS_WATCH_GET_UNIX_FD
367
2393bc74
GM
368/* Define to 1 if you have the declaration of `alarm', and to 0 if you don't.
369 */
370#undef HAVE_DECL_ALARM
371
2407788f
GM
372/* Define to 1 if you have the declaration of `fdatasync', and to 0 if you
373 don't. */
374#undef HAVE_DECL_FDATASYNC
375
d7ad186c
GM
376/* Define to 1 if you have the declaration of `fdopendir', and to 0 if you
377 don't. */
378#undef HAVE_DECL_FDOPENDIR
379
e275c824
PE
380/* Define to 1 if you have the declaration of `getenv', and to 0 if you don't.
381 */
382#undef HAVE_DECL_GETENV
383
1fd182f0
PE
384/* Define to 1 if you have the declaration of `localtime_r', and to 0 if you
385 don't. */
386#undef HAVE_DECL_LOCALTIME_R
387
283c7aed
GM
388/* Define to 1 if you have the declaration of `memrchr', and to 0 if you
389 don't. */
390#undef HAVE_DECL_MEMRCHR
391
cfd812fa
PE
392/* Define to 1 if you have the declaration of `strmode', and to 0 if you
393 don't. */
394#undef HAVE_DECL_STRMODE
395
3e0be4ab
GM
396/* Define to 1 if you have the declaration of `strtoimax', and to 0 if you
397 don't. */
398#undef HAVE_DECL_STRTOIMAX
399
400/* Define to 1 if you have the declaration of `strtoll', and to 0 if you
401 don't. */
402#undef HAVE_DECL_STRTOLL
403
4fda9c95
GM
404/* Define to 1 if you have the declaration of `strtoull', and to 0 if you
405 don't. */
406#undef HAVE_DECL_STRTOULL
407
408/* Define to 1 if you have the declaration of `strtoumax', and to 0 if you
409 don't. */
410#undef HAVE_DECL_STRTOUMAX
411
44f75c4f
MB
412/* Define to 1 if you have the declaration of `sys_siglist', and to 0 if you
413 don't. */
414#undef HAVE_DECL_SYS_SIGLIST
415
ed1281ec
EZ
416/* Define to 1 if you have the declaration of `tzname', and to 0 if you don't.
417 */
418#undef HAVE_DECL_TZNAME
419
b5591ebb
GM
420/* Define to 1 if you have the declaration of `unsetenv', and to 0 if you
421 don't. */
422#undef HAVE_DECL_UNSETENV
423
2393bc74
GM
424/* Define to 1 if you have the declaration of `_putenv', and to 0 if you
425 don't. */
426#undef HAVE_DECL__PUTENV
427
44f75c4f
MB
428/* Define to 1 if you have the declaration of `__sys_siglist', and to 0 if you
429 don't. */
430#undef HAVE_DECL___SYS_SIGLIST
431
25ca0bca
AS
432/* Define to 1 if you have the `difftime' function. */
433#undef HAVE_DIFFTIME
434
d7ad186c
GM
435/* Define to 1 if you have the <dirent.h> header file. */
436#undef HAVE_DIRENT_H
437
369e19fc 438/* Define to 1 if you have the 'dup2' function. */
1c9952f8
AS
439#undef HAVE_DUP2
440
710f5812
GM
441/* Define to 1 if you have the `eaccess' function. */
442#undef HAVE_EACCESS
443
d1721cc7
GM
444/* Define to 1 if you have the `endgrent' function. */
445#undef HAVE_ENDGRENT
446
447/* Define to 1 if you have the `endpwent' function. */
448#undef HAVE_ENDPWENT
449
93131e11
GM
450/* Define if you have the declaration of environ. */
451#undef HAVE_ENVIRON_DECL
452
1c9952f8
AS
453/* Define to 1 if you have the `euidaccess' function. */
454#undef HAVE_EUIDACCESS
455
8966cbff
GM
456/* Define to 1 if you have the <execinfo.h> header file. */
457#undef HAVE_EXECINFO_H
458
710f5812
GM
459/* Define to 1 if you have the `faccessat' function. */
460#undef HAVE_FACCESSAT
461
3a019ab4
GM
462/* Define to 1 if you have the `facl' function. */
463#undef HAVE_FACL
464
0cdca42a
GM
465/* Define to 1 if you have the `fcntl' function. */
466#undef HAVE_FCNTL
467
2407788f
GM
468/* Define to 1 if you have the `fdatasync' function. */
469#undef HAVE_FDATASYNC
470
d7ad186c
GM
471/* Define to 1 if you have the `fdopendir' function. */
472#undef HAVE_FDOPENDIR
473
1c9952f8
AS
474/* Define to 1 if you have the `fork' function. */
475#undef HAVE_FORK
476
7417b37c
GM
477/* Define to 1 if you have the `freeifaddrs' function. */
478#undef HAVE_FREEIFADDRS
479
a27152d1 480/* Define to 1 if using the freetype and fontconfig libraries. */
45a4b03e
KH
481#undef HAVE_FREETYPE
482
1c9952f8
AS
483/* Define to 1 if fseeko (and presumably ftello) exists and is declared. */
484#undef HAVE_FSEEKO
485
d7ad186c
GM
486/* Define to 1 if you have the `fstatat' function. */
487#undef HAVE_FSTATAT
488
22044edf
DL
489/* Define to 1 if you have the `fsync' function. */
490#undef HAVE_FSYNC
491
f199cab1
GM
492/* Define to 1 if you have the `futimens' function. */
493#undef HAVE_FUTIMENS
494
495/* Define to 1 if you have the `futimes' function. */
496#undef HAVE_FUTIMES
497
498/* Define to 1 if you have the `futimesat' function. */
499#undef HAVE_FUTIMESAT
500
1c9952f8
AS
501/* Define to 1 if you have the `gai_strerror' function. */
502#undef HAVE_GAI_STRERROR
503
637fa988
JD
504/* Define to 1 if using GConf. */
505#undef HAVE_GCONF
506
3a019ab4
GM
507/* Define to 1 if you have the `getacl' function. */
508#undef HAVE_GETACL
509
1c9952f8
AS
510/* Define to 1 if you have the `getaddrinfo' function. */
511#undef HAVE_GETADDRINFO
512
1c9952f8
AS
513/* Define to 1 if you have the `getdelim' function. */
514#undef HAVE_GETDELIM
515
0cdca42a
GM
516/* Define to 1 if you have the `getdtablesize' function. */
517#undef HAVE_GETDTABLESIZE
518
d1721cc7
GM
519/* Define to 1 if you have the `getgrent' function. */
520#undef HAVE_GETGRENT
521
710f5812
GM
522/* Define to 1 if your system has a working `getgroups' function. */
523#undef HAVE_GETGROUPS
524
1c9952f8
AS
525/* Define to 1 if you have the `gethostname' function. */
526#undef HAVE_GETHOSTNAME
527
7417b37c
GM
528/* Define to 1 if you have the `getifaddrs' function. */
529#undef HAVE_GETIFADDRS
530
1c9952f8
AS
531/* Define to 1 if you have the `getline' function. */
532#undef HAVE_GETLINE
533
52dbaac8
PE
534/* Define to 1 if you have the <getopt.h> header file. */
535#undef HAVE_GETOPT_H
536
537/* Define to 1 if you have the `getopt_long_only' function. */
538#undef HAVE_GETOPT_LONG_ONLY
539
1c9952f8
AS
540/* Define to 1 if you have the `getpagesize' function. */
541#undef HAVE_GETPAGESIZE
542
543/* Define to 1 if you have the `getpeername' function. */
544#undef HAVE_GETPEERNAME
545
546/* Define to 1 if you have the `getpt' function. */
547#undef HAVE_GETPT
548
d1721cc7
GM
549/* Define to 1 if you have the `getpwent' function. */
550#undef HAVE_GETPWENT
551
9d9a7716
DN
552/* Define to 1 if you have the `getrlimit' function. */
553#undef HAVE_GETRLIMIT
554
ea92fc9f
EZ
555/* Define to 1 if you have the `getrusage' function. */
556#undef HAVE_GETRUSAGE
557
1c9952f8
AS
558/* Define to 1 if you have the `getsockname' function. */
559#undef HAVE_GETSOCKNAME
560
1c9952f8
AS
561/* Define to 1 if you have the `gettimeofday' function. */
562#undef HAVE_GETTIMEOFDAY
563
e2fcf543
EZ
564/* Define to 1 if you have the `get_current_dir_name' function. */
565#undef HAVE_GET_CURRENT_DIR_NAME
566
0f55a32e 567/* Define to 1 if using GFile. */
c9628c79
MA
568#undef HAVE_GFILENOTIFY
569
f70b938a 570/* Define to 1 if you have a gif (or ungif) library. */
1c9952f8
AS
571#undef HAVE_GIF
572
0f55a32e
GM
573/* Define to 1 if GLib is linked in. */
574#undef HAVE_GLIB
575
613c83fc 576/* Define if using GnuTLS. */
8af55556
TZ
577#undef HAVE_GNUTLS
578
18f19af2
GM
579/* Define if using GnuTLS v3. */
580#undef HAVE_GNUTLS3
581
7e5a23bd
NR
582/* Define to 1 if you have the gpm library (-lgpm). */
583#undef HAVE_GPM
a7c03edb 584
1c9952f8
AS
585/* Define to 1 if you have the `grantpt' function. */
586#undef HAVE_GRANTPT
587
f527bd02
GM
588/* Define to 1 if using GSettings. */
589#undef HAVE_GSETTINGS
590
0afb4571
J
591/* Define to 1 if using GTK 3 or later. */
592#undef HAVE_GTK3
593
e547b051
J
594/* Define to 1 if you have the `gtk_adjustment_get_page_size' function. */
595#undef HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE
596
e547b051
J
597/* Define to 1 if you have the `gtk_dialog_get_action_area' function. */
598#undef HAVE_GTK_DIALOG_GET_ACTION_AREA
2a00cdb4
JD
599
600/* Define to 1 if you have the `gtk_file_selection_new' function. */
601#undef HAVE_GTK_FILE_SELECTION_NEW
602
4efe5ef9
GM
603/* Define to 1 if you have the `gtk_handle_box_new' function. */
604#undef HAVE_GTK_HANDLE_BOX_NEW
605
e547b051
J
606/* Define to 1 if you have the `gtk_orientable_set_orientation' function. */
607#undef HAVE_GTK_ORIENTABLE_SET_ORIENTATION
608
4efe5ef9
GM
609/* Define to 1 if you have the `gtk_tearoff_menu_item_new' function. */
610#undef HAVE_GTK_TEAROFF_MENU_ITEM_NEW
611
e547b051
J
612/* Define to 1 if you have the `gtk_widget_get_mapped' function. */
613#undef HAVE_GTK_WIDGET_GET_MAPPED
614
615/* Define to 1 if you have the `gtk_widget_get_sensitive' function. */
616#undef HAVE_GTK_WIDGET_GET_SENSITIVE
617
618/* Define to 1 if you have the `gtk_widget_get_window' function. */
619#undef HAVE_GTK_WIDGET_GET_WINDOW
620
621/* Define to 1 if you have the `gtk_widget_set_has_window' function. */
622#undef HAVE_GTK_WIDGET_SET_HAS_WINDOW
a32e9bfd 623
e15c184e
GM
624/* Define to 1 if you have the `gtk_window_set_has_resize_grip' function. */
625#undef HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP
626
1c9952f8
AS
627/* Define to 1 if netdb.h declares h_errno. */
628#undef HAVE_H_ERRNO
629
7417b37c
GM
630/* Define to 1 if you have the <ifaddrs.h> header file. */
631#undef HAVE_IFADDRS_H
632
ce07fa9a
JV
633/* Define to 1 if using imagemagick. */
634#undef HAVE_IMAGEMAGICK
635
1c9952f8
AS
636/* Define to 1 if you have inet sockets. */
637#undef HAVE_INET_SOCKETS
638
b5eb356a
GM
639/* Define to 1 to use inotify. */
640#undef HAVE_INOTIFY
641
1c9952f8
AS
642/* Define to 1 if you have the <inttypes.h> header file. */
643#undef HAVE_INTTYPES_H
644
e412eb97
GM
645/* Define to 1 if you have the `issetugid' function. */
646#undef HAVE_ISSETUGID
647
1c9952f8
AS
648/* Define to 1 if you have the jpeg library (-ljpeg). */
649#undef HAVE_JPEG
650
1c9952f8
AS
651/* Define to 1 if you have the <kerberosIV/krb.h> header file. */
652#undef HAVE_KERBEROSIV_KRB_H
653
1c9952f8
AS
654/* Define to 1 if you have the <kerberos/krb.h> header file. */
655#undef HAVE_KERBEROS_KRB_H
656
3085237c 657/* Define to 1 if `e_text' is a member of `krb5_error'. */
5c17fc1d
AS
658#undef HAVE_KRB5_ERROR_E_TEXT
659
3085237c 660/* Define to 1 if `text' is a member of `krb5_error'. */
5c17fc1d
AS
661#undef HAVE_KRB5_ERROR_TEXT
662
1c9952f8
AS
663/* Define to 1 if you have the <krb5.h> header file. */
664#undef HAVE_KRB5_H
665
666/* Define to 1 if you have the <krb.h> header file. */
667#undef HAVE_KRB_H
668
8f417b3b
AS
669/* Define if you have <langinfo.h> and nl_langinfo(CODESET). */
670#undef HAVE_LANGINFO_CODESET
671
1c9952f8
AS
672/* Define to 1 if you have the `dgc' library (-ldgc). */
673#undef HAVE_LIBDGC
674
675/* Define to 1 if you have the `dnet' library (-ldnet). */
676#undef HAVE_LIBDNET
677
710f5812
GM
678/* Define to 1 if you have the <libgen.h> header file. */
679#undef HAVE_LIBGEN_H
680
1c9952f8
AS
681/* Define to 1 if you have the `kstat' library (-lkstat). */
682#undef HAVE_LIBKSTAT
683
684/* Define to 1 if you have the `lockfile' library (-llockfile). */
685#undef HAVE_LIBLOCKFILE
686
687/* Define to 1 if you have the `m' library (-lm). */
688#undef HAVE_LIBM
689
690/* Define to 1 if you have the `mail' library (-lmail). */
691#undef HAVE_LIBMAIL
692
a27152d1 693/* Define to 1 if using libotf. */
45a4b03e
KH
694#undef HAVE_LIBOTF
695
79ab4b7f
PE
696/* Define to 1 if you have the `perfstat' library (-lperfstat). */
697#undef HAVE_LIBPERFSTAT
698
690615f7
DL
699/* Define to 1 if you have the <libpng/png.h> header file. */
700#undef HAVE_LIBPNG_PNG_H
701
1c9952f8
AS
702/* Define to 1 if you have the `pthreads' library (-lpthreads). */
703#undef HAVE_LIBPTHREADS
704
022c122a
GM
705/* Define to 1 if using SELinux. */
706#undef HAVE_LIBSELINUX
707
1c9952f8
AS
708/* Define to 1 if you have the `Xext' library (-lXext). */
709#undef HAVE_LIBXEXT
710
613c83fc
GM
711/* Define to 1 if you have the libxml library (-lxml2). */
712#undef HAVE_LIBXML2
713
1c9952f8
AS
714/* Define to 1 if you have the `Xmu' library (-lXmu). */
715#undef HAVE_LIBXMU
716
1fd182f0
PE
717/* Define to 1 if you have the `localtime_r' function. */
718#undef HAVE_LOCALTIME_R
719
4628c0bf
GM
720/* Define to 1 if you have the `log2' function. */
721#undef HAVE_LOG2
722
1c9952f8
AS
723/* Define to 1 if you support file names longer than 14 characters. */
724#undef HAVE_LONG_FILE_NAMES
725
0eb775a3 726/* Define to 1 if the system has the type 'long long int'. */
5f90be1b
PE
727#undef HAVE_LONG_LONG_INT
728
1c9952f8
AS
729/* Define to 1 if you have the `lrand48' function. */
730#undef HAVE_LRAND48
731
f68c809d
PE
732/* Define to 1 if you have the `lstat' function. */
733#undef HAVE_LSTAT
734
f199cab1
GM
735/* Define to 1 if you have the `lutimes' function. */
736#undef HAVE_LUTIMES
737
a27152d1 738/* Define to 1 if using libm17n-flt. */
d8d1da59
KH
739#undef HAVE_M17N_FLT
740
1c9952f8
AS
741/* Define to 1 if you have the <machine/soundcard.h> header file. */
742#undef HAVE_MACHINE_SOUNDCARD_H
743
744/* Define to 1 if you have the <mach/mach.h> header file. */
745#undef HAVE_MACH_MACH_H
746
431dab04
JV
747/* Define to 1 if you have the `MagickExportImagePixels' function. */
748#undef HAVE_MAGICKEXPORTIMAGEPIXELS
749
15f79fcd
GM
750/* Define to 1 if you have the `MagickMergeImageLayers' function. */
751#undef HAVE_MAGICKMERGEIMAGELAYERS
752
1c9952f8
AS
753/* Define to 1 if you have the <maillock.h> header file. */
754#undef HAVE_MAILLOCK_H
755
f7f3a65f
ST
756/* Define to 1 if you have the <malloc/malloc.h> header file. */
757#undef HAVE_MALLOC_MALLOC_H
758
973a76b1
DL
759/* Define to 1 if <wchar.h> declares mbstate_t. */
760#undef HAVE_MBSTATE_T
761
1c9952f8
AS
762/* Define to 1 if you have the <memory.h> header file. */
763#undef HAVE_MEMORY_H
764
283c7aed
GM
765/* Define to 1 if you have the `memrchr' function. */
766#undef HAVE_MEMRCHR
767
95273451
GM
768/* Define to 1 if you have mouse menus. (This is supported in all
769 configurations, but the option to specify it remains.) */
1c9952f8
AS
770#undef HAVE_MENUS
771
0cdca42a
GM
772/* Define to 1 if you have the `mkostemp' function. */
773#undef HAVE_MKOSTEMP
774
1c9952f8
AS
775/* Define to 1 if you have a working `mmap' system call. */
776#undef HAVE_MMAP
777
f199cab1
GM
778/* Define to 1 if you have the `nanotime' function. */
779#undef HAVE_NANOTIME
780
7417b37c
GM
781/* Define to 1 if you have the <net/if_dl.h> header file. */
782#undef HAVE_NET_IF_DL_H
783
2d2b6695
KS
784/* Define to 1 if you have the <net/if.h> header file. */
785#undef HAVE_NET_IF_H
786
1c9952f8
AS
787/* Define to 1 if you have the <nlist.h> header file. */
788#undef HAVE_NLIST_H
789
edfda783
AR
790/* Define to 1 if you are using the NeXTstep API, either GNUstep or Cocoa on
791 Mac OS X. */
792#undef HAVE_NS
793
bf05ed1f 794/* Define to use native MS Windows GUI. */
5c0255d9
GM
795#undef HAVE_NTGUI
796
3f2d84c7
CY
797/* Define to 1 if libotf has OTF_get_variation_glyphs. */
798#undef HAVE_OTF_GET_VARIATION_GLYPHS
799
dede2792
JD
800/* Define to 1 if personality LINUX32 can be set. */
801#undef HAVE_PERSONALITY_LINUX32
802
0cdca42a
GM
803/* Define to 1 if you have the `pipe2' function. */
804#undef HAVE_PIPE2
805
1c9952f8
AS
806/* Define to 1 if you have the png library (-lpng). */
807#undef HAVE_PNG
808
690615f7
DL
809/* Define to 1 if you have the <png.h> header file. */
810#undef HAVE_PNG_H
811
812/* Define to 1 if you have the `posix_memalign' function. */
813#undef HAVE_POSIX_MEMALIGN
814
1146da8d
GM
815/* Define to 1 if you have the `posix_openpt' function. */
816#undef HAVE_POSIX_OPENPT
817
4717915f
GM
818/* Define if you have the /proc filesystem. */
819#undef HAVE_PROCFS
820
f199cab1
GM
821/* Define to 1 if you have the `pselect' function. */
822#undef HAVE_PSELECT
823
1c9952f8
AS
824/* Define to 1 if you have the `pstat_getdynamic' function. */
825#undef HAVE_PSTAT_GETDYNAMIC
826
1abfdc54
GM
827/* Define to 1 if you have pthread (-lpthread). */
828#undef HAVE_PTHREAD
829
9a38524c
JD
830/* Define to 1 if you have the <pthread.h> header file. */
831#undef HAVE_PTHREAD_H
832
369e19fc 833/* Define to 1 if the pthread_sigmask function can be used (despite bugs). */
3e0be4ab
GM
834#undef HAVE_PTHREAD_SIGMASK
835
dd0d840e
GM
836/* Define if the system supports pty devices. */
837#undef HAVE_PTYS
838
6bae0ccf
DL
839/* Define to 1 if you have the <pty.h> header file. */
840#undef HAVE_PTY_H
841
4086de3d
TTN
842/* Define to 1 if you have the <pwd.h> header file. */
843#undef HAVE_PWD_H
844
1c9952f8
AS
845/* Define to 1 if you have the `random' function. */
846#undef HAVE_RANDOM
847
ae0d7250
PE
848/* Define to 1 if you have the `readlink' function. */
849#undef HAVE_READLINK
850
6c051bab
GM
851/* Define to 1 if you have the `readlinkat' function. */
852#undef HAVE_READLINKAT
853
1c9952f8
AS
854/* Define to 1 if you have the `recvfrom' function. */
855#undef HAVE_RECVFROM
856
5d9c8a34 857/* Define to 1 if res_init is available. */
1c9952f8
AS
858#undef HAVE_RES_INIT
859
1c9952f8
AS
860/* Define to 1 if you have the `rint' function. */
861#undef HAVE_RINT
862
f68c9a7b
GM
863/* Define to 1 if using librsvg. */
864#undef HAVE_RSVG
865
e412eb97
GM
866/* Define to 1 if you have the `secure_getenv' function. */
867#undef HAVE_SECURE_GETENV
868
1c9952f8
AS
869/* Define to 1 if you have the `select' function. */
870#undef HAVE_SELECT
871
872/* Define to 1 if you have the `sendto' function. */
873#undef HAVE_SENDTO
874
8a3fafec
GM
875/* Define to 1 if you have the `setdtablesize' function. */
876#undef HAVE_SETDTABLESIZE
877
1c9952f8
AS
878/* Define to 1 if you have the `setitimer' function. */
879#undef HAVE_SETITIMER
880
881/* Define to 1 if you have the `setlocale' function. */
882#undef HAVE_SETLOCALE
883
1c9952f8
AS
884/* Define to 1 if you have the `setrlimit' function. */
885#undef HAVE_SETRLIMIT
886
1c9952f8
AS
887/* Define to 1 if you have the `shutdown' function. */
888#undef HAVE_SHUTDOWN
889
e4184a20
GM
890/* Define to 1 if you have the `sig2str' function. */
891#undef HAVE_SIG2STR
892
5f90be1b
PE
893/* Define to 1 if 'sig_atomic_t' is a signed integer type. */
894#undef HAVE_SIGNED_SIG_ATOMIC_T
895
896/* Define to 1 if 'wchar_t' is a signed integer type. */
897#undef HAVE_SIGNED_WCHAR_T
898
899/* Define to 1 if 'wint_t' is a signed integer type. */
900#undef HAVE_SIGNED_WINT_T
901
e2d8f316
GM
902/* Define to 1 if sigsetjmp and siglongjmp work. The value of this symbol is
903 irrelevant if HAVE__SETJMP is defined. */
904#undef HAVE_SIGSETJMP
905
3e0be4ab
GM
906/* Define to 1 if the system has the type `sigset_t'. */
907#undef HAVE_SIGSET_T
908
697210c4
GM
909/* Define to 1 if you have the `snprintf' function. */
910#undef HAVE_SNPRINTF
911
dd0d840e
GM
912/* Define if the system supports 4.2-compatible sockets. */
913#undef HAVE_SOCKETS
914
a46007e9
GM
915/* Define to 1 if you have sound support. */
916#undef HAVE_SOUND
917
1c9952f8
AS
918/* Define to 1 if you have the <soundcard.h> header file. */
919#undef HAVE_SOUNDCARD_H
920
3a019ab4
GM
921/* Define to 1 if you have the `statacl' function. */
922#undef HAVE_STATACL
923
1c9952f8
AS
924/* Define to 1 if you have the <stdint.h> header file. */
925#undef HAVE_STDINT_H
926
927/* Define to 1 if you have the <stdio_ext.h> header file. */
928#undef HAVE_STDIO_EXT_H
929
930/* Define to 1 if you have the <stdlib.h> header file. */
931#undef HAVE_STDLIB_H
932
1c9952f8
AS
933/* Define to 1 if you have the <strings.h> header file. */
934#undef HAVE_STRINGS_H
935
936/* Define to 1 if you have the <string.h> header file. */
937#undef HAVE_STRING_H
938
939/* Define to 1 if you have the `strsignal' function. */
940#undef HAVE_STRSIGNAL
941
3e0be4ab
GM
942/* Define to 1 if you have the `strtoimax' function. */
943#undef HAVE_STRTOIMAX
944
945/* Define to 1 if you have the `strtoll' function. */
946#undef HAVE_STRTOLL
947
4fda9c95
GM
948/* Define to 1 if you have the `strtoull' function. */
949#undef HAVE_STRTOULL
950
951/* Define to 1 if you have the `strtoumax' function. */
952#undef HAVE_STRTOUMAX
953
3085237c 954/* Define to 1 if `ifr_addr' is a member of `struct ifreq'. */
96f3a036
DL
955#undef HAVE_STRUCT_IFREQ_IFR_ADDR
956
7417b37c
GM
957/* Define to 1 if `ifr_addr.sa_len' is a member of `struct ifreq'. */
958#undef HAVE_STRUCT_IFREQ_IFR_ADDR_SA_LEN
959
3085237c 960/* Define to 1 if `ifr_broadaddr' is a member of `struct ifreq'. */
96f3a036
DL
961#undef HAVE_STRUCT_IFREQ_IFR_BROADADDR
962
3085237c 963/* Define to 1 if `ifr_flags' is a member of `struct ifreq'. */
96f3a036
DL
964#undef HAVE_STRUCT_IFREQ_IFR_FLAGS
965
3085237c 966/* Define to 1 if `ifr_hwaddr' is a member of `struct ifreq'. */
96f3a036
DL
967#undef HAVE_STRUCT_IFREQ_IFR_HWADDR
968
3085237c 969/* Define to 1 if `ifr_netmask' is a member of `struct ifreq'. */
96f3a036
DL
970#undef HAVE_STRUCT_IFREQ_IFR_NETMASK
971
3085237c 972/* Define to 1 if `n_un.n_name' is a member of `struct nlist'. */
1c9952f8
AS
973#undef HAVE_STRUCT_NLIST_N_UN_N_NAME
974
f199cab1
GM
975/* Define to 1 if `st_atimensec' is a member of `struct stat'. */
976#undef HAVE_STRUCT_STAT_ST_ATIMENSEC
977
978/* Define to 1 if `st_atimespec.tv_nsec' is a member of `struct stat'. */
979#undef HAVE_STRUCT_STAT_ST_ATIMESPEC_TV_NSEC
980
981/* Define to 1 if `st_atim.st__tim.tv_nsec' is a member of `struct stat'. */
982#undef HAVE_STRUCT_STAT_ST_ATIM_ST__TIM_TV_NSEC
983
984/* Define to 1 if `st_atim.tv_nsec' is a member of `struct stat'. */
985#undef HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC
986
987/* Define to 1 if `st_birthtimensec' is a member of `struct stat'. */
988#undef HAVE_STRUCT_STAT_ST_BIRTHTIMENSEC
989
990/* Define to 1 if `st_birthtimespec.tv_nsec' is a member of `struct stat'. */
991#undef HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC
992
993/* Define to 1 if `st_birthtim.tv_nsec' is a member of `struct stat'. */
994#undef HAVE_STRUCT_STAT_ST_BIRTHTIM_TV_NSEC
995
3085237c 996/* Define to 1 if `tm_zone' is a member of `struct tm'. */
1c9952f8
AS
997#undef HAVE_STRUCT_TM_TM_ZONE
998
f199cab1
GM
999/* Define if struct utimbuf is declared -- usually in <utime.h>. Some systems
1000 have utime.h but don't declare the struct anywhere. */
1c9952f8
AS
1001#undef HAVE_STRUCT_UTIMBUF
1002
cfd812fa
PE
1003/* Define if struct stat has an st_dm_mode member. */
1004#undef HAVE_ST_DM_MODE
1005
ae0d7250
PE
1006/* Define to 1 if you have the `symlink' function. */
1007#undef HAVE_SYMLINK
1008
190956b3
YM
1009/* Define to 1 if you have the `sync' function. */
1010#undef HAVE_SYNC
1011
3a019ab4
GM
1012/* Define to 1 if you have the <sys/acl.h> header file. */
1013#undef HAVE_SYS_ACL_H
1014
5f90be1b
PE
1015/* Define to 1 if you have the <sys/bitypes.h> header file. */
1016#undef HAVE_SYS_BITYPES_H
1017
1018/* Define to 1 if you have the <sys/inttypes.h> header file. */
1019#undef HAVE_SYS_INTTYPES_H
1020
79ab4b7f
PE
1021/* Define to 1 if you have the <sys/loadavg.h> header file. */
1022#undef HAVE_SYS_LOADAVG_H
1023
6bae0ccf
DL
1024/* Define to 1 if you have the <sys/param.h> header file. */
1025#undef HAVE_SYS_PARAM_H
1026
22044edf
DL
1027/* Define to 1 if you have the <sys/resource.h> header file. */
1028#undef HAVE_SYS_RESOURCE_H
1029
1c9952f8
AS
1030/* Define to 1 if you have the <sys/select.h> header file. */
1031#undef HAVE_SYS_SELECT_H
1032
7862d3a8
AS
1033/* Define to 1 if you have the <sys/socket.h> header file. */
1034#undef HAVE_SYS_SOCKET_H
1035
1c9952f8
AS
1036/* Define to 1 if you have the <sys/soundcard.h> header file. */
1037#undef HAVE_SYS_SOUNDCARD_H
1038
1039/* Define to 1 if you have the <sys/stat.h> header file. */
1040#undef HAVE_SYS_STAT_H
1041
1042/* Define to 1 if you have the <sys/systeminfo.h> header file. */
1043#undef HAVE_SYS_SYSTEMINFO_H
1044
f199cab1
GM
1045/* Define to 1 if you have the <sys/timeb.h> header file. */
1046#undef HAVE_SYS_TIMEB_H
1047
1c9952f8
AS
1048/* Define to 1 if you have the <sys/time.h> header file. */
1049#undef HAVE_SYS_TIME_H
1050
1051/* Define to 1 if you have the <sys/types.h> header file. */
1052#undef HAVE_SYS_TYPES_H
1053
1054/* Define to 1 if you have the <sys/un.h> header file. */
1055#undef HAVE_SYS_UN_H
1056
3bb9abc8
ST
1057/* Define to 1 if you have the <sys/utsname.h> header file. */
1058#undef HAVE_SYS_UTSNAME_H
1059
22044edf
DL
1060/* Define to 1 if you have the <sys/vlimit.h> header file. */
1061#undef HAVE_SYS_VLIMIT_H
1062
1c9952f8
AS
1063/* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
1064#undef HAVE_SYS_WAIT_H
1065
1c9952f8
AS
1066/* Define to 1 if you have the <term.h> header file. */
1067#undef HAVE_TERM_H
1068
1069/* Define to 1 if you have the tiff library (-ltiff). */
1070#undef HAVE_TIFF
1071
f077f61d
GM
1072/* Define to 1 if you have the `timer_settime' function. */
1073#undef HAVE_TIMER_SETTIME
1074
16c3e636 1075/* Define if struct tm has the tm_gmtoff member. */
1c9952f8
AS
1076#undef HAVE_TM_GMTOFF
1077
1078/* Define to 1 if your `struct tm' has `tm_zone'. Deprecated, use
1079 `HAVE_STRUCT_TM_TM_ZONE' instead. */
1080#undef HAVE_TM_ZONE
1081
1082/* Define to 1 if you have the `touchlock' function. */
1083#undef HAVE_TOUCHLOCK
1084
1085/* Define to 1 if you don't have `tm_zone' but do have the external array
1086 `tzname'. */
1087#undef HAVE_TZNAME
1088
1089/* Define to 1 if you have the `tzset' function. */
1090#undef HAVE_TZSET
1091
1c9952f8
AS
1092/* Define to 1 if you have the <unistd.h> header file. */
1093#undef HAVE_UNISTD_H
1094
b5591ebb
GM
1095/* Define to 1 if you have the `unsetenv' function. */
1096#undef HAVE_UNSETENV
1097
0eb775a3 1098/* Define to 1 if the system has the type 'unsigned long long int'. */
5f90be1b
PE
1099#undef HAVE_UNSIGNED_LONG_LONG_INT
1100
3d608a86
J
1101/* Define to 1 if you have the <util.h> header file. */
1102#undef HAVE_UTIL_H
1103
f199cab1
GM
1104/* Define to 1 if you have the `utimensat' function. */
1105#undef HAVE_UTIMENSAT
1106
1c9952f8
AS
1107/* Define to 1 if you have the <utime.h> header file. */
1108#undef HAVE_UTIME_H
1109
5e4fe3f9
CY
1110/* Define to 1 if you have the <utmp.h> header file. */
1111#undef HAVE_UTMP_H
1112
bab4f76d
GM
1113/* Define to 1 if you have the <valgrind/valgrind.h> header file. */
1114#undef HAVE_VALGRIND_VALGRIND_H
1115
1c9952f8
AS
1116/* Define to 1 if you have the `vfork' function. */
1117#undef HAVE_VFORK
1118
1119/* Define to 1 if you have the <vfork.h> header file. */
1120#undef HAVE_VFORK_H
1121
c9628c79
MA
1122/* Define to 1 to use w32notify. */
1123#undef HAVE_W32NOTIFY
1124
5f90be1b
PE
1125/* Define to 1 if you have the <wchar.h> header file. */
1126#undef HAVE_WCHAR_H
1127
1fd182f0
PE
1128/* Define if you have the 'wchar_t' type. */
1129#undef HAVE_WCHAR_T
1130
372b4090
GM
1131/* Define if you have a window system. */
1132#undef HAVE_WINDOW_SYSTEM
1133
f199cab1
GM
1134/* Define to 1 if you have the <winsock2.h> header file. */
1135#undef HAVE_WINSOCK2_H
1136
1c9952f8
AS
1137/* Define to 1 if `fork' works. */
1138#undef HAVE_WORKING_FORK
1139
d7ad186c
GM
1140/* Define to 1 if fstatat (..., 0) works. For example, it does not work in AIX
1141 7.1. */
1142#undef HAVE_WORKING_FSTATAT_ZERO_FLAG
1143
f199cab1
GM
1144/* Define if utimes works properly. */
1145#undef HAVE_WORKING_UTIMES
1146
1c9952f8
AS
1147/* Define to 1 if `vfork' works. */
1148#undef HAVE_WORKING_VFORK
1149
6ad6792b
GM
1150/* Define to 1 if you have the <ws2tcpip.h> header file. */
1151#undef HAVE_WS2TCPIP_H
1152
1c9952f8
AS
1153/* Define to 1 if you want to use version 11 of X windows. Otherwise, Emacs
1154 expects to use version 10. */
1155#undef HAVE_X11
1156
1c9952f8
AS
1157/* Define to 1 if you have the X11R6 or newer version of Xlib. */
1158#undef HAVE_X11R6
1159
a46007e9
GM
1160/* Define if you have usable X11R6-style XIM support. */
1161#undef HAVE_X11R6_XIM
1162
1c9952f8
AS
1163/* Define to 1 if you have the X11R6 or newer version of Xt. */
1164#undef HAVE_X11XTR6
1165
1166/* Define to 1 if you have the Xaw3d library (-lXaw3d). */
1167#undef HAVE_XAW3D
1168
9d89ffd0
JD
1169/* Define to 1 if you have the Xft library. */
1170#undef HAVE_XFT
1171
18542f1a
RS
1172/* Define to 1 if XIM is available */
1173#undef HAVE_XIM
1174
910833ae
GM
1175/* Define to 1 if you have the Xinerama extension. */
1176#undef HAVE_XINERAMA
1177
f46ba47d
GM
1178/* Define to 1 if you have the Xkb extension. */
1179#undef HAVE_XKB
1180
2b8e5146 1181/* Define to 1 if you have the Xpm library (-lXpm). */
1c9952f8
AS
1182#undef HAVE_XPM
1183
910833ae
GM
1184/* Define to 1 if you have the XRandr extension. */
1185#undef HAVE_XRANDR
1186
1c9952f8
AS
1187/* Define to 1 if you have the `XrmSetDatabase' function. */
1188#undef HAVE_XRMSETDATABASE
1189
910833ae
GM
1190/* Define to 1 if you have the `XRRGetOutputPrimary' function. */
1191#undef HAVE_XRRGETOUTPUTPRIMARY
1192
1193/* Define to 1 if you have the `XRRGetScreenResourcesCurrent' function. */
1194#undef HAVE_XRRGETSCREENRESOURCESCURRENT
1195
1c9952f8
AS
1196/* Define to 1 if you have the `XScreenNumberOfScreen' function. */
1197#undef HAVE_XSCREENNUMBEROFSCREEN
1198
1199/* Define to 1 if you have the `XScreenResourceString' function. */
1200#undef HAVE_XSCREENRESOURCESTRING
1201
a46007e9
GM
1202/* Define if you have usable i18n support. */
1203#undef HAVE_X_I18N
1204
1c9952f8
AS
1205/* Define to 1 if you have the SM library (-lSM). */
1206#undef HAVE_X_SM
1207
1208/* Define to 1 if you want to use the X window system. */
1209#undef HAVE_X_WINDOWS
1210
7a67e06b
GM
1211/* Define to 1 if you have the zlib library (-lz). */
1212#undef HAVE_ZLIB
1213
16c3e636
PE
1214/* Define to 1 if the system has the type `_Bool'. */
1215#undef HAVE__BOOL
1216
f199cab1
GM
1217/* Define to 1 if you have the `_ftime' function. */
1218#undef HAVE__FTIME
1219
e2d8f316
GM
1220/* Define to 1 if _setjmp and _longjmp work. */
1221#undef HAVE__SETJMP
1222
2018939f
AS
1223/* Define to 1 if you have the `__builtin_unwind_init' function. */
1224#undef HAVE___BUILTIN_UNWIND_INIT
1225
dcc19aac
AS
1226/* Define to 1 if you have the `__executable_start' function. */
1227#undef HAVE___EXECUTABLE_START
1228
e412eb97
GM
1229/* Define to 1 if you have the `__secure_getenv' function. */
1230#undef HAVE___SECURE_GETENV
1231
1c9952f8
AS
1232/* Define to support using a Hesiod database to find the POP server. */
1233#undef HESIOD
1234
d3127c14
GM
1235/* Define if the system is HPUX. */
1236#undef HPUX
1237
6b10626d
GM
1238/* This is substituted when $TERM is "internal". */
1239#undef INTERNAL_TERMINAL
1240
dd0d840e
GM
1241/* Define to read input using SIGIO. */
1242#undef INTERRUPT_INPUT
1243
d3127c14
GM
1244/* Define if the system is IRIX. */
1245#undef IRIX6_5
1246
6b10626d
GM
1247/* Returns true if character is any form of separator. */
1248#undef IS_ANY_SEP
1249
1250/* Returns true if character is a device separator. */
1251#undef IS_DEVICE_SEP
1252
1253/* Returns true if character is a directory separator. */
1254#undef IS_DIRECTORY_SEP
1255
1c9952f8
AS
1256/* Define to support Kerberos-authenticated POP mail retrieval. */
1257#undef KERBEROS
1258
1259/* Define to use Kerberos 5 instead of Kerberos 4. */
1260#undef KERBEROS5
1261
1c9952f8
AS
1262/* Define to 1 if localtime caches TZ. */
1263#undef LOCALTIME_CACHE
1264
0eb775a3 1265/* Define to 1 if 'lstat' dereferences a symlink specified with a trailing
ae0d7250
PE
1266 slash. */
1267#undef LSTAT_FOLLOWS_SLASHED_SYMLINK
1268
f70b938a
GM
1269/* String giving fallback POP mail host. */
1270#undef MAILHOST
1271
1272/* Define to unlink, rather than empty, mail spool after reading. */
1273#undef MAIL_UNLINK_SPOOL
1274
4e569696
GM
1275/* Define if the mailer uses flock to interlock the mail spool. */
1276#undef MAIL_USE_FLOCK
1277
1278/* Define if the mailer uses lockf to interlock the mail spool. */
1279#undef MAIL_USE_LOCKF
1280
f70b938a
GM
1281/* Define to support MMDF mailboxes in movemail. */
1282#undef MAIL_USE_MMDF
1283
1c9952f8
AS
1284/* Define to support POP mail retrieval. */
1285#undef MAIL_USE_POP
1286
7cd2ed2c
GM
1287/* Define if the system is MS DOS. */
1288#undef MSDOS
1289
dd0d840e
GM
1290/* Define if system's imake configuration file defines `NeedWidePrototypes' as
1291 `NO'. */
1292#undef NARROWPROTO
1293
d3127c14
GM
1294/* Define if XEditRes should not be used. */
1295#undef NO_EDITRES
1296
743c80a7
PE
1297/* Define to 1 if your C compiler doesn't accept -c and -o together. */
1298#undef NO_MINUS_C_MINUS_O
1299
d3127c14
GM
1300/* Minimum value of NSIG. */
1301#undef NSIG_MINIMUM
1302
a53cfbe5
JD
1303/* Define to 1 if `NSInteger' is defined. */
1304#undef NS_HAVE_NSINTEGER
1305
edfda783
AR
1306/* Define to 1 if you are using NS windowing under MacOS X. */
1307#undef NS_IMPL_COCOA
1308
1309/* Define to 1 if you are using NS windowing under GNUstep. */
1310#undef NS_IMPL_GNUSTEP
1311
8ad96b1d
GM
1312/* Name of the file to open to get a null file, or a data sink. */
1313#undef NULL_DEVICE
1314
79ab4b7f
PE
1315/* Define to 1 if the nlist n_name member is a pointer */
1316#undef N_NAME_POINTER
1317
743c80a7
PE
1318/* Name of package */
1319#undef PACKAGE
1320
1c9952f8
AS
1321/* Define to the address where bug reports for this package should be sent. */
1322#undef PACKAGE_BUGREPORT
1323
1324/* Define to the full name of this package. */
1325#undef PACKAGE_NAME
1326
1327/* Define to the full name and version of this package. */
1328#undef PACKAGE_STRING
1329
1330/* Define to the one symbol short name of this package. */
1331#undef PACKAGE_TARNAME
1332
3085237c
DN
1333/* Define to the home page for this package. */
1334#undef PACKAGE_URL
1335
1c9952f8
AS
1336/* Define to the version of this package. */
1337#undef PACKAGE_VERSION
1338
3bf26e96
GM
1339/* the number of pending output bytes on stream 'fp' */
1340#undef PENDING_OUTPUT_N_BYTES
1341
27505cf5
GM
1342/* Define to empty to suppress deprecation warnings when building with
1343 --enable-gcc-warnings and with libpng versions before 1.5, which lack
1344 png_longjmp. */
02bd7257 1345#undef PNG_DEPSTRUCT
27505cf5 1346
dd0d840e
GM
1347/* Define if process_send_signal should use VSUSP instead of VSWTCH. */
1348#undef PREFER_VSUSP
1349
369e19fc
PE
1350/* Define to 1 if pthread_sigmask(), when it fails, returns -1 and sets errno.
1351 */
1352#undef PTHREAD_SIGMASK_FAILS_WITH_ERRNO
1353
1354/* Define to 1 if pthread_sigmask() may returns 0 and have no effect. */
1355#undef PTHREAD_SIGMASK_INEFFECTIVE
1356
1357/* Define to 1 if pthread_sigmask() unblocks signals incorrectly. */
1358#undef PTHREAD_SIGMASK_UNBLOCK_BUG
1359
5f90be1b
PE
1360/* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
1361 'ptrdiff_t'. */
1362#undef PTRDIFF_T_SUFFIX
1363
dd0d840e
GM
1364/* How to iterate over PTYs. */
1365#undef PTY_ITERATION
1366
1367/* How to get the device name of the control end of a PTY, if non-standard. */
1368#undef PTY_NAME_SPRINTF
1369
1370/* How to open a PTY, if non-standard. */
1371#undef PTY_OPEN
1372
1373/* How to get device name of the tty end of a PTY, if non-standard. */
1374#undef PTY_TTY_NAME_SPRINTF
1375
ae0d7250
PE
1376/* Define to 1 if readlink fails to recognize a trailing slash. */
1377#undef READLINK_TRAILING_SLASH_BUG
1378
1c9952f8
AS
1379/* Define REL_ALLOC if you want to use the relocating allocator for buffer
1380 space. */
1381#undef REL_ALLOC
1382
ae0d7250
PE
1383/* Define to 1 if stat needs help when passed a directory name with a trailing
1384 slash */
1385#undef REPLACE_FUNC_STAT_DIR
1386
1387/* Define to 1 if stat needs help when passed a file name with a trailing
1388 slash */
1389#undef REPLACE_FUNC_STAT_FILE
1390
dd0d840e
GM
1391/* Define if emacs.c needs to call run_time_remap; for HPUX. */
1392#undef RUN_TIME_REMAP
1393
8ad96b1d
GM
1394/* Character that separates PATH elements. */
1395#undef SEPCHAR
1396
c9ca3f76
GM
1397/* How to set up a slave PTY, if needed. */
1398#undef SETUP_SLAVE_PTY
1399
7e723570
GM
1400/* Make process_send_signal work by "typing" a signal character on the pty. */
1401#undef SIGNALS_VIA_CHARACTERS
1402
5f90be1b
PE
1403/* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
1404 'sig_atomic_t'. */
1405#undef SIG_ATOMIC_T_SUFFIX
1406
1407/* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
1408 'size_t'. */
1409#undef SIZE_T_SUFFIX
1410
d3127c14
GM
1411/* Define if the system is Solaris. */
1412#undef SOLARIS2
1413
1c9952f8
AS
1414/* If using the C implementation of alloca, define if you know the
1415 direction of stack growth for your system; otherwise it will be
ed1281ec 1416 automatically deduced at runtime.
fd44db7f
GM
1417 STACK_DIRECTION > 0 => grows toward higher addresses
1418 STACK_DIRECTION < 0 => grows toward lower addresses
1419 STACK_DIRECTION = 0 => direction of growth unknown */
1c9952f8 1420#undef STACK_DIRECTION
6c4f352f 1421
cfd812fa
PE
1422/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
1423#undef STAT_MACROS_BROKEN
1424
1c9952f8
AS
1425/* Define to 1 if you have the ANSI C header files. */
1426#undef STDC_HEADERS
7e1fc708 1427
1c9952f8
AS
1428/* Define to 1 on System V Release 4. */
1429#undef SVR4
cf91f754 1430
e7586c7a
GM
1431/* Define to use system malloc. */
1432#undef SYSTEM_MALLOC
1433
15f79fcd
GM
1434/* The type of system you are compiling for; sets `system-type'. */
1435#undef SYSTEM_TYPE
1436
dd0d840e
GM
1437/* Undocumented. */
1438#undef TAB3
1439
1440/* Undocumented. */
1441#undef TABDLY
1442
ca63fca5
GM
1443/* Define to 1 if you use terminfo instead of termcap. */
1444#undef TERMINFO
1445
42dcba54
GM
1446/* Define to the header for the built-in window system. */
1447#undef TERM_HEADER
1448
1c9952f8
AS
1449/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
1450#undef TIME_WITH_SYS_TIME
3689ff14 1451
906debc3
GM
1452/* Some platforms redefine this. */
1453#undef TIOCSIGSEND
1454
1c9952f8
AS
1455/* Define to 1 if your <sys/time.h> declares `struct tm'. */
1456#undef TM_IN_SYS_TIME
6b910f7d 1457
f199cab1
GM
1458/* Define to 1 if the type of the st_atim member of a struct stat is struct
1459 timespec. */
1460#undef TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC
1461
9292328f
GM
1462/* Define to 1 for Encore UMAX. */
1463#undef UMAX
1464
1465/* Define to 1 for Encore UMAX 4.3 that has <inq_status/cpustats.h> instead of
1466 <sys/cpustats.h>. */
1467#undef UMAX4_3
1468
d3127c14
GM
1469/* Define if the system has Unix98 PTYs. */
1470#undef UNIX98_PTYS
1471
4fa92495
GM
1472/* Define to 1 if FIONREAD is usable. */
1473#undef USABLE_FIONREAD
1474
1475/* Define to 1 if SIGIO is usable. */
1476#undef USABLE_SIGIO
1477
8ad96b1d
GM
1478/* How to get a user's full name. */
1479#undef USER_FULL_NAME
1480
3a019ab4
GM
1481/* Define to nonzero if you want access control list support. */
1482#undef USE_ACL
1483
0f55a32e 1484/* Define to 1 if using file notifications. */
c9628c79
MA
1485#undef USE_FILE_NOTIFY
1486
a51f4969
SM
1487/* Define to 1 if using GTK. */
1488#undef USE_GTK
1489
8a7d9183
SM
1490/* Define to 1 if using the Lucid X toolkit. */
1491#undef USE_LUCID
1492
e7586c7a
GM
1493/* Define to use mmap to allocate buffer text. */
1494#undef USE_MMAP_FOR_BUFFERS
1495
8a7d9183
SM
1496/* Define to 1 if using the Motif X toolkit. */
1497#undef USE_MOTIF
1498
20d5e28a
GM
1499/* Define to 1 if you use ncurses. */
1500#undef USE_NCURSES
1501
2cdd55fc
GM
1502/* Enable extensions on AIX 3, Interix. */
1503#ifndef _ALL_SOURCE
1504# undef _ALL_SOURCE
1505#endif
1506/* Enable general extensions on OS X. */
1507#ifndef _DARWIN_C_SOURCE
1508# undef _DARWIN_C_SOURCE
1509#endif
1510/* Enable GNU extensions on systems that have them. */
1511#ifndef _GNU_SOURCE
1512# undef _GNU_SOURCE
1513#endif
1514/* Enable threading extensions on Solaris. */
1515#ifndef _POSIX_PTHREAD_SEMANTICS
1516# undef _POSIX_PTHREAD_SEMANTICS
1517#endif
1518/* Enable extensions on HP NonStop. */
1519#ifndef _TANDEM_SOURCE
1520# undef _TANDEM_SOURCE
1521#endif
1522/* Enable X/Open extensions if necessary. HP-UX 11.11 defines
1523 mbstate_t only if _XOPEN_SOURCE is defined to 500, regardless of
1524 whether compiling with -Ae or -D_HPUX_SOURCE=1. */
1525#ifndef _XOPEN_SOURCE
1526# undef _XOPEN_SOURCE
1527#endif
1528/* Enable general extensions on Solaris. */
1529#ifndef __EXTENSIONS__
1530# undef __EXTENSIONS__
1531#endif
1532
1533
1c9952f8
AS
1534/* Define to 1 if we should use toolkit scroll bars. */
1535#undef USE_TOOLKIT_SCROLL_BARS
cf91f754 1536
1c9952f8
AS
1537/* Define to 1 if we should use XIM, if it is available. */
1538#undef USE_XIM
46266d2b 1539
1c9952f8
AS
1540/* Define to 1 if using an X toolkit. */
1541#undef USE_X_TOOLKIT
6c4f352f 1542
d3127c14
GM
1543/* Define if the system is compatible with System III. */
1544#undef USG
1545
906debc3
GM
1546/* Define if the system is compatible with System V Release 4. */
1547#undef USG5_4
1548
4717915f
GM
1549/* Define for USG systems where it works to open a pty's tty in the parent
1550 process, then close and reopen it in the child. */
1551#undef USG_SUBTTY_WORKS
1552
743c80a7
PE
1553/* Version number of package */
1554#undef VERSION
1555
b5591ebb
GM
1556/* Define to 1 if unsetenv returns void instead of int. */
1557#undef VOID_UNSETENV
1558
5f90be1b
PE
1559/* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
1560 'wchar_t'. */
1561#undef WCHAR_T_SUFFIX
1562
0442dc7f
GM
1563/* Use long long for EMACS_INT if available. */
1564#undef WIDE_EMACS_INT
1565
7c61eaab
GM
1566/* Define if compiling for native MS Windows. */
1567#undef WINDOWSNT
1568
5f90be1b
PE
1569/* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
1570 'wint_t'. */
1571#undef WINT_T_SUFFIX
1572
671d409f
AS
1573/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
1574 significant byte first (like Motorola and SPARC, unlike Intel). */
1575#if defined AC_APPLE_UNIVERSAL_BUILD
1576# if defined __BIG_ENDIAN__
1577# define WORDS_BIGENDIAN 1
1578# endif
1579#else
1580# ifndef WORDS_BIGENDIAN
1581# undef WORDS_BIGENDIAN
1582# endif
1583#endif
1584
29771094
DN
1585/* Define this to check for malloc buffer overrun. */
1586#undef XMALLOC_OVERRUN_CHECK
1587
dd0d840e
GM
1588/* Compensate for a bug in Xos.h on some systems, where it requires time.h. */
1589#undef XOS_NEEDS_TIME_H
1590
d54ae3d8
JD
1591/* Define to the type of the 6th arg of XRegisterIMInstantiateCallback, either
1592 XPointer or XPointer*. */
1593#undef XRegisterIMInstantiateCallback_arg6
1594
d3127c14
GM
1595/* Define if the system is AIX. */
1596#undef _AIX
1597
858c7150
GM
1598/* Enable large inode numbers on Mac OS X 10.5. */
1599#undef _DARWIN_USE_64_BIT_INODE
369e19fc 1600
1c9952f8
AS
1601/* Number of bits in a file offset, on hosts where this is settable. */
1602#undef _FILE_OFFSET_BITS
c91b3402 1603
0eb775a3
GM
1604/* Define to 1 if Gnulib overrides 'struct stat' on Windows so that struct
1605 stat.st_size becomes 64-bit. */
1606#undef _GL_WINDOWS_64_BIT_ST_SIZE
1607
1c9952f8
AS
1608/* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */
1609#undef _LARGEFILE_SOURCE
07ba43a2 1610
1c9952f8
AS
1611/* Define for large files, on AIX-style hosts. */
1612#undef _LARGE_FILES
43c70fcf 1613
a51f4969
SM
1614/* Define to 1 if on MINIX. */
1615#undef _MINIX
1616
39b3d70b
GM
1617/* Define if GNUstep uses ObjC exceptions. */
1618#undef _NATIVE_OBJC_EXCEPTIONS
1619
2cdd55fc
GM
1620/* Define to 1 to make NetBSD features available. MINIX 3 needs this. */
1621#undef _NETBSD_SOURCE
1622
0eb775a3
GM
1623/* The _Noreturn keyword of C11. */
1624#if ! (defined _Noreturn \
1625 || (defined __STDC_VERSION__ && 201112 <= __STDC_VERSION__))
369e19fc
PE
1626# if (3 <= __GNUC__ || (__GNUC__ == 2 && 8 <= __GNUC_MINOR__) \
1627 || 0x5110 <= __SUNPRO_C)
1628# define _Noreturn __attribute__ ((__noreturn__))
0eb775a3 1629# elif defined _MSC_VER && 1200 <= _MSC_VER
369e19fc
PE
1630# define _Noreturn __declspec (noreturn)
1631# else
1632# define _Noreturn
1633# endif
1634#endif
1635
1636
a51f4969
SM
1637/* Define to 2 if the system does not provide POSIX.1 features except with
1638 this defined. */
1639#undef _POSIX_1_SOURCE
1640
0eb775a3 1641/* Define to 1 if you need to in order for 'stat' and other things to work. */
a51f4969
SM
1642#undef _POSIX_SOURCE
1643
4717915f
GM
1644/* Needed for system_process_attributes on Solaris. */
1645#undef _STRUCTURED_PROC
1646
52dbaac8
PE
1647/* Define to rpl_ if the getopt replacement functions and variables should be
1648 used. */
1649#undef __GETOPT_PREFIX
1650
22044edf
DL
1651/* Define to compiler's equivalent of C99 restrict keyword in array
1652 declarations. Define as empty for no equivalent. */
1653#undef __restrict_arr
1654
6b10626d
GM
1655/* Some platforms that do not use configure define this to include extra
1656 configuration information. */
1c9952f8 1657#undef config_opsysfile
43c70fcf 1658
a7f7138d 1659/* Please see the Gnulib manual for how to use these macros.
4a9a8f13 1660
c175d440
GM
1661 Suppress extern inline with HP-UX cc, as it appears to be broken; see
1662 <http://lists.gnu.org/archive/html/bug-texinfo/2013-02/msg00030.html>.
1663
7b427ad1
GM
1664 Suppress extern inline with Sun C in standards-conformance mode, as it
1665 mishandles inline functions that call each other. E.g., for 'inline void f
1666 (void) { } inline void g (void) { f (); }', c99 incorrectly complains
1667 'reference to static identifier "f" in extern inline function'.
1668 This bug was observed with Sun C 5.12 SunOS_i386 2011/11/16.
1669
ad4c8083
GM
1670 Suppress the use of extern inline on problematic Apple configurations, as
1671 Libc at least through Libc-825.26 (2013-04-09) mishandles it; see, e.g.,
4a9a8f13
GM
1672 <http://lists.gnu.org/archive/html/bug-gnulib/2012-12/msg00023.html>.
1673 Perhaps Apple will fix this some day. */
ad4c8083
GM
1674#if (defined __APPLE__ \
1675 && ((! defined _DONT_USE_CTYPE_INLINE_ \
1676 && (defined __GNUC__ || defined __cplusplus)) \
1677 || (defined _FORTIFY_SOURCE && 0 < _FORTIFY_SOURCE \
1678 && defined __GNUC__ && ! defined __cplusplus)))
1679# define _GL_EXTERN_INLINE_APPLE_BUG
1680#endif
4a9a8f13
GM
1681#if ((__GNUC__ \
1682 ? defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ \
7b427ad1
GM
1683 : (199901L <= __STDC_VERSION__ \
1684 && !defined __HP_cc \
1685 && !(defined __SUNPRO_C && __STDC__))) \
ad4c8083 1686 && !defined _GL_EXTERN_INLINE_APPLE_BUG)
7cd2ed2c
GM
1687# define _GL_INLINE inline
1688# define _GL_EXTERN_INLINE extern inline
ad4c8083 1689# define _GL_EXTERN_INLINE_IN_USE
646b9499 1690#elif (2 < __GNUC__ + (7 <= __GNUC_MINOR__) && !defined __STRICT_ANSI__ \
ad4c8083 1691 && !defined _GL_EXTERN_INLINE_APPLE_BUG)
48823f4e 1692# if defined __GNUC_GNU_INLINE__ && __GNUC_GNU_INLINE__
bfef4149
GM
1693 /* __gnu_inline__ suppresses a GCC 4.2 diagnostic. */
1694# define _GL_INLINE extern inline __attribute__ ((__gnu_inline__))
1695# else
1696# define _GL_INLINE extern inline
7cd2ed2c 1697# endif
bfef4149 1698# define _GL_EXTERN_INLINE extern
ad4c8083 1699# define _GL_EXTERN_INLINE_IN_USE
7cd2ed2c 1700#else
4a9a8f13
GM
1701# define _GL_INLINE static _GL_UNUSED
1702# define _GL_EXTERN_INLINE static _GL_UNUSED
7cd2ed2c
GM
1703#endif
1704
bfef4149 1705#if 4 < __GNUC__ + (6 <= __GNUC_MINOR__)
0e8bc990 1706# if defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__
bfef4149
GM
1707# define _GL_INLINE_HEADER_CONST_PRAGMA
1708# else
1709# define _GL_INLINE_HEADER_CONST_PRAGMA \
1710 _Pragma ("GCC diagnostic ignored \"-Wsuggest-attribute=const\"")
1711# endif
a7f7138d
GM
1712 /* Suppress GCC's bogus "no previous prototype for 'FOO'"
1713 and "no previous declaration for 'FOO'" diagnostics,
1714 when FOO is an inline function in the header; see
1715 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54113>. */
bfef4149
GM
1716# define _GL_INLINE_HEADER_BEGIN \
1717 _Pragma ("GCC diagnostic push") \
1718 _Pragma ("GCC diagnostic ignored \"-Wmissing-prototypes\"") \
1719 _Pragma ("GCC diagnostic ignored \"-Wmissing-declarations\"") \
1720 _GL_INLINE_HEADER_CONST_PRAGMA
1721# define _GL_INLINE_HEADER_END \
1722 _Pragma ("GCC diagnostic pop")
1723#else
7cd2ed2c
GM
1724# define _GL_INLINE_HEADER_BEGIN
1725# define _GL_INLINE_HEADER_END
1726#endif
1727
6d153f56
GM
1728/* A replacement for va_copy, if needed. */
1729#define gl_va_copy(a,b) ((a) = (b))
1730
f199cab1
GM
1731/* Define to rpl_gmtime if the replacement function should be used. */
1732#undef gmtime
1733
a451f14b
PE
1734/* Work around a bug in Apple GCC 4.0.1 build 5465: In C99 mode, it supports
1735 the ISO C 99 semantics of 'extern inline' (unlike the GNU C semantics of
1736 earlier versions), but does not display it by setting __GNUC_STDC_INLINE__.
f199cab1 1737 __APPLE__ && __MACH__ test for Mac OS X.
a451f14b
PE
1738 __APPLE_CC__ tests for the Apple compiler and its version.
1739 __STDC_VERSION__ tests for the C99 mode. */
1740#if defined __APPLE__ && defined __MACH__ && __APPLE_CC__ >= 5465 && !defined __cplusplus && __STDC_VERSION__ >= 199901L && !defined __GNUC_STDC_INLINE__
1741# define __GNUC_STDC_INLINE__ 1
1742#endif
1743
a6b92a4a
GM
1744/* Define to 1 if the compiler is checking for lint. */
1745#undef lint
1746
f199cab1
GM
1747/* Define to rpl_localtime if the replacement function should be used. */
1748#undef localtime
1749
973a76b1
DL
1750/* Define to a type if <wchar.h> does not define. */
1751#undef mbstate_t
1752
2b1928b8
GM
1753/* Define to `int' if <sys/types.h> does not define. */
1754#undef mode_t
1755
16c3e636
PE
1756/* Define to the name of the strftime replacement function. */
1757#undef my_strftime
1758
cfd812fa
PE
1759/* Define to the type of st_nlink in struct stat, or a supertype. */
1760#undef nlink_t
1761
1c9952f8
AS
1762/* Define to `int' if <sys/types.h> does not define. */
1763#undef pid_t
43c70fcf 1764
1fd182f0
PE
1765/* Define to the equivalent of the C99 'restrict' keyword, or to
1766 nothing if this is not supported. Do not define if restrict is
1767 supported directly. */
1768#undef restrict
1769/* Work around a bug in Sun C++: it does not support _Restrict or
1770 __restrict__, even though the corresponding Sun C compiler ends up with
1771 "#define restrict _Restrict" or "#define restrict __restrict__" in the
1772 previous line. Perhaps some future version of Sun C++ will work with
1773 restrict; if so, hopefully it defines __RESTRICT like Sun C does. */
1774#if defined __SUNPRO_CC && !defined __RESTRICT
1775# define _Restrict
1776# define __restrict__
1777#endif
1778
6ad6792b
GM
1779/* type to use in place of socklen_t if not defined */
1780#undef socklen_t
1781
6c051bab
GM
1782/* Define as a signed type of the same size as size_t. */
1783#undef ssize_t
1784
8ad96b1d
GM
1785/* Define to enable asynchronous subprocesses. */
1786#undef subprocesses
1787
a451f14b
PE
1788/* Define as a marker that can be attached to declarations that might not
1789 be used. This helps to reduce warnings, such as from
1790 GCC -Wunused-parameter. */
1791#if __GNUC__ >= 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)
1792# define _GL_UNUSED __attribute__ ((__unused__))
1793#else
1794# define _GL_UNUSED
1795#endif
1796/* The name _UNUSED_PARAMETER_ is an earlier spelling, although the name
1797 is a misnomer outside of parameter lists. */
1798#define _UNUSED_PARAMETER_ _GL_UNUSED
1799
0442dc7f
GM
1800/* The __pure__ attribute was added in gcc 2.96. */
1801#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)
1802# define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__))
1803#else
1804# define _GL_ATTRIBUTE_PURE /* empty */
1805#endif
1806
1807/* The __const__ attribute was added in gcc 2.95. */
1808#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95)
1809# define _GL_ATTRIBUTE_CONST __attribute__ ((__const__))
1810#else
1811# define _GL_ATTRIBUTE_CONST /* empty */
1812#endif
1813
a451f14b 1814
6d153f56
GM
1815/* Define as a macro for copying va_list variables. */
1816#undef va_copy
1817
1c9952f8
AS
1818/* Define as `fork' if `vfork' does not work. */
1819#undef vfork
5b01f1a9 1820
906debc3 1821#include <conf_post.h>
4777478a 1822
22044edf
DL
1823#endif /* EMACS_CONFIG_H */
1824
177c0ea7 1825/*
22044edf 1826Local Variables:
6bae0ccf
DL
1827mode: c
1828End:
1829*/
0f55a32e 1830