nt/config.nt: Sync with autogen/config.in.
[bpt/emacs.git] / nt / config.nt
1 /* GNU Emacs site configuration template file.
2
3 Copyright (C) 1988, 1993-1994, 2001-2012 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
19
20 /* NOTE:
21 This file is intentionally kept in sync with autogen/config.in to
22 ease maintenance. Please do not remove non-Windows related stuff
23 unless strictly necessary. Also, before adding anything here
24 consider whether inc/ms-w32.h would be a better place; this is
25 particularly true for gcc vs. MSVC conditional defines, MinGW or
26 MSVC specific code, and macros not already defined in config.in. */
27
28 /* No code in Emacs #includes config.h twice, but some bits of code
29 intended to work with other packages as well (like gmalloc.c)
30 think they can include it as many times as they like. */
31 #ifndef EMACS_CONFIG_H
32 #define EMACS_CONFIG_H
33
34
35 /* Define if building universal (internal helper macro) */
36 #undef AC_APPLE_UNIVERSAL_BUILD
37
38 /* Define to use the convention that & in the full name stands for the login
39 id. */
40 #undef AMPERSAND_FULL_NAME
41
42 /* Define to the number of bits in type 'ptrdiff_t'. */
43 #undef BITSIZEOF_PTRDIFF_T
44
45 /* Define to the number of bits in type 'sig_atomic_t'. */
46 #undef BITSIZEOF_SIG_ATOMIC_T
47
48 /* Define to the number of bits in type 'size_t'. */
49 #undef BITSIZEOF_SIZE_T
50
51 /* Define to the number of bits in type 'wchar_t'. */
52 #undef BITSIZEOF_WCHAR_T
53
54 /* Define to the number of bits in type 'wint_t'. */
55 #undef BITSIZEOF_WINT_T
56
57 /* Define if FIONREAD should not be used. */
58 #undef BROKEN_FIONREAD
59
60 /* Define if getwd should not be used. */
61 #undef BROKEN_GETWD
62
63 /* Define if get_current_dir_name should not be used. */
64 #undef BROKEN_GET_CURRENT_DIR_NAME
65
66 /* Define on FreeBSD to work around an issue when reading from a PTY. */
67 #undef BROKEN_PTY_READ_AFTER_EAGAIN
68
69 /* Define if SA_RESTART should only be used in batch mode. */
70 #undef BROKEN_SA_RESTART
71
72 /* Define if SIGAIO should not be used. */
73 #undef BROKEN_SIGAIO
74
75 /* Define if SIGIO should not be used. */
76 #undef BROKEN_SIGIO
77
78 /* Define if SIGPOLL should not be used. */
79 #undef BROKEN_SIGPOLL
80
81 /* Define if SIGPTY should not be used. */
82 #undef BROKEN_SIGPTY
83
84 /* Define if the system is compatible with BSD 4.2. */
85 #undef BSD4_2
86
87 /* Define if the system is compatible with BSD 4.2. */
88 #undef BSD_SYSTEM
89
90 /* Define if AH_BOTTOM should change BSD_SYSTEM. */
91 #undef BSD_SYSTEM_AHB
92
93 /* Define if Emacs cannot be dumped on your system. */
94 #undef CANNOT_DUMP
95
96 /* Define this to enable compile time checks for the Lisp_Object data type. */
97 #undef CHECK_LISP_OBJECT_TYPE
98
99 /* Define if you want lock files to be written, so that Emacs can tell
100 instantly when you try to modify a file that someone else has modified in
101 his/her Emacs. */
102 #undef CLASH_DETECTION
103
104 /* Define to one of '_getb67', 'GETB67', 'getb67' for Cray-2 and Cray-YMP
105 systems. This function is required for 'alloca.c' support on those systems.
106 */
107 #undef CRAY_STACKSEG_END
108
109 /* Define if the system is Cygwin. */
110 #undef CYGWIN
111
112 /* Define to 1 if using 'alloca.c'. */
113 #undef C_ALLOCA
114
115 /* Define if the system is Darwin. */
116 #undef DARWIN_OS
117
118 /* Extra bits to be or'd in with any pointers stored in a Lisp_Object. */
119 #undef DATA_SEG_BITS
120
121 /* Address of the start of the data segment. */
122 #undef DATA_START
123
124 /* Name of the default sound device. */
125 #undef DEFAULT_SOUND_DEVICE
126
127 /* Character that separates a device in a file name. */
128 #define DEVICE_SEP ':'
129
130 /* Define to 1 for DGUX with <sys/dg_sys_info.h>. */
131 #undef DGUX
132
133 /* Character that separates directories in a file name. */
134 #define DIRECTORY_SEP '/'
135
136 /* Define if dispnew.c should include stdio_ext.h. */
137 #undef DISPNEW_NEEDS_STDIO_EXT
138
139 /* Define if process.c does not need to close a pty to make it a controlling
140 terminal (it is already a controlling terminal of the subprocess, because
141 we did ioctl TIOCSCTTY). */
142 #undef DONT_REOPEN_PTY
143
144 /* Define if the system is MS DOS or MS Windows. */
145 #define DOS_NT
146
147 /* Define to 1 if you are using the GNU C Library. */
148 #undef DOUG_LEA_MALLOC
149
150 /* Define to the canonical Emacs configuration name. */
151 #undef EMACS_CONFIGURATION
152
153 /* Define to the options passed to configure. */
154 #undef EMACS_CONFIG_OPTIONS
155
156 /* Define to 1 if expensive run-time data type and consistency checks are
157 enabled. */
158 #undef ENABLE_CHECKING
159
160 /* Letter to use in finding device name of first PTY, if PTYs are supported.
161 */
162 #define FIRST_PTY_LETTER 'a'
163
164 /* Define if the float library doesn't handle errors by either setting errno,
165 or signaling SIGFPE/SIGILL. */
166 #undef FLOAT_CHECK_DOMAIN
167
168 /* Enable compile-time and run-time bounds-checking, and some warnings,
169 without upsetting glibc 2.15+. */
170 #if defined __OPTIMIZE__ && __OPTIMIZE__
171 # define _FORTIFY_SOURCE 2
172 #endif
173
174
175 /* Define to 1 if futimesat mishandles a NULL file name. */
176 #undef FUTIMESAT_NULL_BUG
177
178 /* Define this to check for errors in cons list. */
179 #undef GC_CHECK_CONS_LIST
180
181 /* Define this temporarily to hunt a bug. If defined, the size of strings is
182 redundantly recorded in sdata structures so that it can be compared to the
183 sizes recorded in Lisp strings. */
184 #undef GC_CHECK_STRING_BYTES
185
186 /* Define this to check the string free list. */
187 #undef GC_CHECK_STRING_FREE_LIST
188
189 /* Define this to check for short string overrun. */
190 #undef GC_CHECK_STRING_OVERRUN
191
192 /* Mark a secondary stack, like the register stack on the ia64. */
193 #undef GC_MARK_SECONDARY_STACK
194
195 /* Define to GC_USE_GCPROS_AS_BEFORE if conservative garbage collection is not
196 known to work. */
197 #define GC_MARK_STACK 1
198
199 /* Define if setjmp is known to save all registers relevant for conservative
200 garbage collection in the jmp_buf.
201 MSVC ignores the "register" keyword, so test fails even though
202 setjmp does work. */
203 #define GC_SETJMP_WORKS 1
204
205 /* Define to 1 if the `getpgrp' function requires zero arguments. */
206 #undef GETPGRP_VOID
207
208 /* Define if gettimeofday clobbers the localtime buffer. */
209 #undef GETTIMEOFDAY_CLOBBERS_LOCALTIME
210
211 /* Define this to 'void' or 'struct timezone' to match the system's
212 declaration of the second argument to gettimeofday. */
213 #undef GETTIMEOFDAY_TIMEZONE
214
215 /* Define this to enable glyphs debugging code. */
216 /* #undef GLYPH_DEBUG */
217
218 /* Define to a C preprocessor expression that evaluates to 1 or 0, depending
219 whether the gnulib module fscanf shall be considered present. */
220 #undef GNULIB_FSCANF
221
222 /* enable some gnulib portability checks */
223 #undef GNULIB_PORTCHECK
224
225 /* Define to a C preprocessor expression that evaluates to 1 or 0, depending
226 whether the gnulib module scanf shall be considered present. */
227 #undef GNULIB_SCANF
228
229 /* Define if ths system is compatible with GNU/Linux. */
230 #undef GNU_LINUX
231
232 /* Define to 1 if you want to use the GNU memory allocator. */
233 #define GNU_MALLOC 1
234
235 /* Define to set the G_SLICE environment variable to "always-malloc" at
236 startup, if using GTK. */
237 #undef G_SLICE_ALWAYS_MALLOC
238
239 /* Define to 1 if the file /usr/lpp/X11/bin/smt.exp exists. */
240 #undef HAVE_AIX_SMT_EXP
241
242 /* Define to 1 if you have the `alarm' function. */
243 #undef HAVE_ALARM
244
245 /* Define to 1 if you have 'alloca' after including <alloca.h>, a header that
246 may be supplied by this distribution. */
247 #undef HAVE_ALLOCA
248
249 /* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
250 */
251 #undef HAVE_ALLOCA_H
252
253 /* Define to 1 if ALSA is available. */
254 #undef HAVE_ALSA
255
256 /* Define to 1 if strtold conforms to C99. */
257 #undef HAVE_C99_STRTOLD
258
259 /* Define to 1 if you have the `cbrt' function. */
260 #undef HAVE_CBRT
261
262 /* Define to 1 if you have the `cfmakeraw' function. */
263 #undef HAVE_CFMAKERAW
264
265 /* Define to 1 if you have the `cfsetspeed' function. */
266 #undef HAVE_CFSETSPEED
267
268 /* Define to 1 if you have the `clock_gettime' function. */
269 #undef HAVE_CLOCK_GETTIME
270
271 /* Define to 1 if you have the `clock_settime' function. */
272 #undef HAVE_CLOCK_SETTIME
273
274 /* Define to 1 if you have the `closedir' function. */
275 #define HAVE_CLOSEDIR 1
276
277 /* Define to 1 if you have the <coff.h> header file. */
278 #undef HAVE_COFF_H
279
280 /* Define to 1 if you have the <com_err.h> header file. */
281 #undef HAVE_COM_ERR_H
282
283 /* Define to 1 if you have the `copysign' function. */
284 #undef HAVE_COPYSIGN
285
286 /* Define to 1 if using D-Bus. */
287 #undef HAVE_DBUS
288
289 /* Define to 1 if you have the `dbus_type_is_valid' function. */
290 #undef HAVE_DBUS_TYPE_IS_VALID
291
292 /* Define to 1 if you have the `dbus_validate_bus_name' function. */
293 #undef HAVE_DBUS_VALIDATE_BUS_NAME
294
295 /* Define to 1 if you have the `dbus_validate_interface' function. */
296 #undef HAVE_DBUS_VALIDATE_INTERFACE
297
298 /* Define to 1 if you have the `dbus_validate_member' function. */
299 #undef HAVE_DBUS_VALIDATE_MEMBER
300
301 /* Define to 1 if you have the `dbus_validate_path' function. */
302 #undef HAVE_DBUS_VALIDATE_PATH
303
304 /* Define to 1 if you have the `dbus_watch_get_unix_fd' function. */
305 #undef HAVE_DBUS_WATCH_GET_UNIX_FD
306
307 /* Define to 1 if you have the declaration of `getenv', and to 0 if you don't.
308 */
309 #define HAVE_DECL_GETENV 1
310
311 /* Define to 1 if you have the declaration of `localtime_r', and to 0 if you
312 don't. */
313 #undef HAVE_DECL_LOCALTIME_R
314
315 /* Define to 1 if you have the declaration of `strmode', and to 0 if you
316 don't. */
317 #undef HAVE_DECL_STRMODE
318
319 /* Define to 1 if you have the declaration of `strtoimax', and to 0 if you
320 don't. */
321 #undef HAVE_DECL_STRTOIMAX
322
323 /* Define to 1 if you have the declaration of `strtoll', and to 0 if you
324 don't. */
325 #define HAVE_DECL_STRTOLL 1
326
327 /* Define to 1 if you have the declaration of `strtoull', and to 0 if you
328 don't. */
329 #define HAVE_DECL_STRTOULL 1
330
331 /* Define to 1 if you have the declaration of `strtoumax', and to 0 if you
332 don't. */
333 #define HAVE_DECL_STRTOUMAX 1
334
335 /* Define to 1 if you have the declaration of `sys_siglist', and to 0 if you
336 don't. */
337 #undef HAVE_DECL_SYS_SIGLIST
338
339 /* Define to 1 if you have the declaration of `tzname', and to 0 if you don't.
340 */
341 #define HAVE_DECL_TZNAME 1
342
343 /* Define to 1 if you have the declaration of `__sys_siglist', and to 0 if you
344 don't. */
345 #undef HAVE_DECL___SYS_SIGLIST
346
347 /* Define to 1 if you have the <des.h> header file. */
348 #undef HAVE_DES_H
349
350 /* Define to 1 if dynamic ptys are supported. */
351 #undef HAVE_DEV_PTMX
352
353 /* Define to 1 if you have the `difftime' function. */
354 #undef HAVE_DIFFTIME
355
356 /* Define to 1 if you have the <dirent.h> header file. */
357 #undef HAVE_DIRENT_H
358
359 /* Define to 1 if you have the 'dup2' function. */
360 #define HAVE_DUP2 1
361
362 /* Define to 1 if you have the `endgrent' function. */
363 #undef HAVE_ENDGRENT
364
365 /* Define to 1 if you have the `endpwent' function. */
366 #undef HAVE_ENDPWENT
367
368 /* Define if you have the declaration of environ. */
369 #undef HAVE_ENVIRON_DECL
370
371 /* Define to 1 if you have the `euidaccess' function. */
372 #undef HAVE_EUIDACCESS
373
374 /* Define to 1 if you have the <execinfo.h> header file. */
375 #define HAVE_EXECINFO_H 1
376
377 /* Define to 1 if you have the <fcntl.h> header file. */
378 #undef HAVE_FCNTL_H
379
380 /* Define to 1 if you have the `fmod' function. */
381 #define HAVE_FMOD 1
382
383 /* Define to 1 if you have the `fork' function. */
384 #undef HAVE_FORK
385
386 /* Define to 1 if you have the `fpathconf' function. */
387 #undef HAVE_FPATHCONF
388
389 /* Define to 1 if you have the `freeifaddrs' function. */
390 #undef HAVE_FREEIFADDRS
391
392 /* Define to 1 if using the freetype and fontconfig libraries. */
393 #undef HAVE_FREETYPE
394
395 /* Define to 1 if you have the `frexp' function. */
396 #define HAVE_FREXP 1
397
398 /* Define to 1 if fseeko (and presumably ftello) exists and is declared. */
399 #undef HAVE_FSEEKO
400
401 /* Define to 1 if you have the `fsync' function. */
402 #define HAVE_FSYNC 1
403
404 /* Define to 1 if you have the `futimens' function. */
405 #undef HAVE_FUTIMENS
406
407 /* Define to 1 if you have the `futimes' function. */
408 #undef HAVE_FUTIMES
409
410 /* Define to 1 if you have the `futimesat' function. */
411 #undef HAVE_FUTIMESAT
412
413 /* Define to 1 if you have the `gai_strerror' function. */
414 #undef HAVE_GAI_STRERROR
415
416 /* Define to 1 if using GConf. */
417 #undef HAVE_GCONF
418
419 /* Define to 1 if you have the `getaddrinfo' function. */
420 #undef HAVE_GETADDRINFO
421
422 /* Define to 1 if you have the `getcwd' function.
423 If you think about defining HAVE_GETCWD, don't: the alternative
424 getwd is redefined on w32.c, and does not really return the current
425 directory, to get the desired results elsewhere in Emacs. */
426 #undef HAVE_GETCWD
427
428 /* Define to 1 if you have the `getdelim' function. */
429 #undef HAVE_GETDELIM
430
431 /* Define to 1 if you have the `getgrent' function. */
432 #undef HAVE_GETGRENT
433
434 /* Define to 1 if you have the `gethostname' function. */
435 #define HAVE_GETHOSTNAME 1
436
437 /* Define to 1 if you have the `getifaddrs' function. */
438 #undef HAVE_GETIFADDRS
439
440 /* Define to 1 if you have the `getline' function. */
441 #undef HAVE_GETLINE
442
443 /* Define to 1 if you have the <getopt.h> header file. */
444 #undef HAVE_GETOPT_H
445
446 /* Define to 1 if you have the `getopt_long_only' function. */
447 #undef HAVE_GETOPT_LONG_ONLY
448
449 /* Define to 1 if you have the `getpagesize' function. */
450 #define HAVE_GETPAGESIZE 1
451
452 /* Define to 1 if you have the `getpeername' function. */
453 #define HAVE_GETPEERNAME 1
454
455 /* Define to 1 if you have the `getpt' function. */
456 #undef HAVE_GETPT
457
458 /* Define to 1 if you have the `getpwent' function. */
459 #undef HAVE_GETPWENT
460
461 /* Define to 1 if you have the `getrlimit' function. */
462 #undef HAVE_GETRLIMIT
463
464 /* Define to 1 if you have the `getrusage' function. */
465 #undef HAVE_GETRUSAGE
466
467 /* Define to 1 if you have the `getsockname' function. */
468 #define HAVE_GETSOCKNAME 1
469
470 /* Define to 1 if you have the `gettimeofday' function. */
471 #define HAVE_GETTIMEOFDAY 1
472
473 /* Define to 1 if you have the `getwd' function. */
474 #undef HAVE_GETWD
475
476 /* Define to 1 if you have the `get_current_dir_name' function. */
477 #undef HAVE_GET_CURRENT_DIR_NAME
478
479 /* Define to 1 if you have a gif (or ungif) library. */
480 #undef HAVE_GIF
481
482 /* Define if using GnuTLS. */
483 #undef HAVE_GNUTLS
484
485 /* Define if using GnuTLS certificate verification callbacks. */
486 #undef HAVE_GNUTLS_CALLBACK_CERTIFICATE_VERIFY
487
488 /* Define to 1 if you have the `gnutls_certificate_set_verify_function'
489 function. */
490 #undef HAVE_GNUTLS_CERTIFICATE_SET_VERIFY_FUNCTION
491
492 /* Define to 1 if you have the gpm library (-lgpm). */
493 #undef HAVE_GPM
494
495 /* Define to 1 if you have the `grantpt' function. */
496 #undef HAVE_GRANTPT
497
498 /* Define to 1 if using GSettings. */
499 #undef HAVE_GSETTINGS
500
501 /* Define to 1 if using GTK 3 or later. */
502 #undef HAVE_GTK3
503
504 /* Define to 1 if you have the `gtk_adjustment_get_page_size' function. */
505 #undef HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE
506
507 /* Define to 1 if you have the `gtk_dialog_get_action_area' function. */
508 #undef HAVE_GTK_DIALOG_GET_ACTION_AREA
509
510 /* Define to 1 if you have the `gtk_file_selection_new' function. */
511 #undef HAVE_GTK_FILE_SELECTION_NEW
512
513 /* Define to 1 if you have the `gtk_main' function. */
514 #undef HAVE_GTK_MAIN
515
516 /* Define to 1 if you have the `gtk_orientable_set_orientation' function. */
517 #undef HAVE_GTK_ORIENTABLE_SET_ORIENTATION
518
519 /* Define to 1 if you have the `gtk_widget_get_mapped' function. */
520 #undef HAVE_GTK_WIDGET_GET_MAPPED
521
522 /* Define to 1 if you have the `gtk_widget_get_sensitive' function. */
523 #undef HAVE_GTK_WIDGET_GET_SENSITIVE
524
525 /* Define to 1 if you have the `gtk_widget_get_window' function. */
526 #undef HAVE_GTK_WIDGET_GET_WINDOW
527
528 /* Define to 1 if you have the `gtk_widget_set_has_window' function. */
529 #undef HAVE_GTK_WIDGET_SET_HAS_WINDOW
530
531 /* Define to 1 if you have the `gtk_window_set_has_resize_grip' function. */
532 #undef HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP
533
534 /* Define to 1 if you have the `g_type_init' function. */
535 #undef HAVE_G_TYPE_INIT
536
537 /* Define to 1 if netdb.h declares h_errno. */
538 #define HAVE_H_ERRNO 1
539
540 /* Define to 1 if you have the <ifaddrs.h> header file. */
541 #undef HAVE_IFADDRS_H
542
543 /* Define to 1 if using imagemagick. */
544 #undef HAVE_IMAGEMAGICK
545
546 /* Define to 1 if you have inet sockets. */
547 #define HAVE_INET_SOCKETS 1
548
549 /* Define to 1 if you have the <inttypes.h> header file. */
550 #undef HAVE_INTTYPES_H
551
552 /* Define if you have the functions acosh, asinh, and atanh. */
553 #undef HAVE_INVERSE_HYPERBOLIC
554
555 /* Define to 1 if you have the jpeg library (-ljpeg). */
556 #undef HAVE_JPEG
557
558 /* Define to 1 if you have the <kerberosIV/des.h> header file. */
559 #undef HAVE_KERBEROSIV_DES_H
560
561 /* Define to 1 if you have the <kerberosIV/krb.h> header file. */
562 #undef HAVE_KERBEROSIV_KRB_H
563
564 /* Define to 1 if you have the <kerberos/des.h> header file. */
565 #undef HAVE_KERBEROS_DES_H
566
567 /* Define to 1 if you have the <kerberos/krb.h> header file. */
568 #undef HAVE_KERBEROS_KRB_H
569
570 /* Define to 1 if `e_text' is a member of `krb5_error'. */
571 #undef HAVE_KRB5_ERROR_E_TEXT
572
573 /* Define to 1 if `text' is a member of `krb5_error'. */
574 #undef HAVE_KRB5_ERROR_TEXT
575
576 /* Define to 1 if you have the <krb5.h> header file. */
577 #undef HAVE_KRB5_H
578
579 /* Define to 1 if you have the <krb.h> header file. */
580 #undef HAVE_KRB_H
581
582 /* Define if you have <langinfo.h> and nl_langinfo(CODESET). */
583 #define HAVE_LANGINFO_CODESET 1
584
585 /* Define to 1 if you have the `com_err' library (-lcom_err). */
586 #undef HAVE_LIBCOM_ERR
587
588 /* Define to 1 if you have the `crypto' library (-lcrypto). */
589 #undef HAVE_LIBCRYPTO
590
591 /* Define to 1 if you have the `des' library (-ldes). */
592 #undef HAVE_LIBDES
593
594 /* Define to 1 if you have the `des425' library (-ldes425). */
595 #undef HAVE_LIBDES425
596
597 /* Define to 1 if you have the `dgc' library (-ldgc). */
598 #undef HAVE_LIBDGC
599
600 /* Define to 1 if you have the `dnet' library (-ldnet). */
601 #undef HAVE_LIBDNET
602
603 /* Define to 1 if you have the hesiod library (-lhesiod). */
604 #undef HAVE_LIBHESIOD
605
606 /* Define to 1 if you have the `k5crypto' library (-lk5crypto). */
607 #undef HAVE_LIBK5CRYPTO
608
609 /* Define to 1 if you have the `krb' library (-lkrb). */
610 #undef HAVE_LIBKRB
611
612 /* Define to 1 if you have the `krb4' library (-lkrb4). */
613 #undef HAVE_LIBKRB4
614
615 /* Define to 1 if you have the `krb5' library (-lkrb5). */
616 #undef HAVE_LIBKRB5
617
618 /* Define to 1 if you have the `kstat' library (-lkstat). */
619 #undef HAVE_LIBKSTAT
620
621 /* Define to 1 if you have the `lockfile' library (-llockfile). */
622 #undef HAVE_LIBLOCKFILE
623
624 /* Define to 1 if you have the `m' library (-lm). */
625 #undef HAVE_LIBM
626
627 /* Define to 1 if you have the `mail' library (-lmail). */
628 #undef HAVE_LIBMAIL
629
630 /* Define to 1 if using libotf. */
631 #undef HAVE_LIBOTF
632
633 /* Define to 1 if you have the `perfstat' library (-lperfstat). */
634 #undef HAVE_LIBPERFSTAT
635
636 /* Define to 1 if you have the <libpng/png.h> header file. */
637 #undef HAVE_LIBPNG_PNG_H
638
639 /* Define to 1 if you have the `pthreads' library (-lpthreads). */
640 #undef HAVE_LIBPTHREADS
641
642 /* Define to 1 if you have the resolv library (-lresolv). */
643 #undef HAVE_LIBRESOLV
644
645 /* Define to 1 if using SELinux. */
646 #undef HAVE_LIBSELINUX
647
648 /* Define to 1 if you have the `Xext' library (-lXext). */
649 #undef HAVE_LIBXEXT
650
651 /* Define to 1 if you have the libxml library (-lxml2). */
652 #undef HAVE_LIBXML2
653
654 /* Define to 1 if you have the `Xmu' library (-lXmu). */
655 #undef HAVE_LIBXMU
656
657 /* Define to 1 if you have the <linux/version.h> header file. */
658 #undef HAVE_LINUX_VERSION_H
659
660 /* Define to 1 if you have the `localtime_r' function. */
661 #undef HAVE_LOCALTIME_R
662
663 /* Define to 1 if you have the `logb' function. */
664 #define HAVE_LOGB 1
665
666 /* Define to 1 if you support file names longer than 14 characters. */
667 #define HAVE_LONG_FILE_NAMES 1
668
669 /* Define to 1 if the system has the type 'long long int'. */
670 #undef HAVE_LONG_LONG_INT
671
672 /* Define to 1 if you have the `lrand48' function. */
673 #undef HAVE_LRAND48
674
675 /* Define to 1 if you have the `lstat' function. */
676 #undef HAVE_LSTAT
677
678 /* Define to 1 if you have the `lutimes' function. */
679 #undef HAVE_LUTIMES
680
681 /* Define to 1 if using libm17n-flt. */
682 #undef HAVE_M17N_FLT
683
684 /* Define to 1 if you have the <machine/soundcard.h> header file. */
685 #undef HAVE_MACHINE_SOUNDCARD_H
686
687 /* Define to 1 if you have the <mach/mach.h> header file. */
688 #undef HAVE_MACH_MACH_H
689
690 /* Define to 1 if you have the `MagickExportImagePixels' function. */
691 #undef HAVE_MAGICKEXPORTIMAGEPIXELS
692
693 /* Define to 1 if you have the `MagickMergeImageLayers' function. */
694 #undef HAVE_MAGICKMERGEIMAGELAYERS
695
696 /* Define to 1 if you have the <maillock.h> header file. */
697 #undef HAVE_MAILLOCK_H
698
699 /* Define to 1 if you have the <malloc/malloc.h> header file. */
700 #undef HAVE_MALLOC_MALLOC_H
701
702 /* Define to 1 if <wchar.h> declares mbstate_t. */
703 #undef HAVE_MBSTATE_T
704
705 /* Define to 1 if you have the <memory.h> header file. */
706 #undef HAVE_MEMORY_H
707
708 /* Define to 1 if you have mouse menus. (This is automatic if you use X, but
709 the option to specify it remains.) It is also defined with other window
710 systems that support xmenu.c. */
711 #undef HAVE_MENUS
712
713 /* Define to 1 if you have the `mkstemp' function. */
714 #undef HAVE_MKSTEMP
715
716 /* Define to 1 if you have a working `mmap' system call. */
717 #undef HAVE_MMAP
718
719 /* Define if you have mouse support. */
720 #define HAVE_MOUSE 1
721
722 /* Define to 1 if you have the `nanotime' function. */
723 #undef HAVE_NANOTIME
724
725 /* Define to 1 if you have the <net/if_dl.h> header file. */
726 #undef HAVE_NET_IF_DL_H
727
728 /* Define to 1 if you have the <net/if.h> header file. */
729 #undef HAVE_NET_IF_H
730
731 /* Define to 1 if you have the <nlist.h> header file. */
732 #undef HAVE_NLIST_H
733
734 /* Define to 1 if you are using the NeXTstep API, either GNUstep or Cocoa on
735 Mac OS X. */
736 #undef HAVE_NS
737
738 /* Define to 1 if libotf has OTF_get_variation_glyphs. */
739 #undef HAVE_OTF_GET_VARIATION_GLYPHS
740
741 /* Define to 1 if personality LINUX32 can be set. */
742 #undef HAVE_PERSONALITY_LINUX32
743
744 /* Define to 1 if you have the png library (-lpng). */
745 #undef HAVE_PNG
746
747 /* Define to 1 if you have the <png.h> header file. */
748 #undef HAVE_PNG_H
749
750 /* Define to 1 if you have the `posix_memalign' function. */
751 #undef HAVE_POSIX_MEMALIGN
752
753 /* Define to 1 if you have the `posix_openpt' function. */
754 #undef HAVE_POSIX_OPENPT
755
756 /* Define if you have the /proc filesystem. */
757 #undef HAVE_PROCFS
758
759 /* Define to 1 if you have the `pselect' function. */
760 #undef HAVE_PSELECT
761
762 /* Define to 1 if you have the `pstat_getdynamic' function. */
763 #undef HAVE_PSTAT_GETDYNAMIC
764
765 /* Define to 1 if you have pthread (-lpthread). */
766 #undef HAVE_PTHREAD
767
768 /* Define to 1 if you have the <pthread.h> header file. */
769 #undef HAVE_PTHREAD_H
770
771 /* Define to 1 if the pthread_sigmask function can be used (despite bugs). */
772 #undef HAVE_PTHREAD_SIGMASK
773
774 /* Define if the system supports pty devices. */
775 #undef HAVE_PTYS
776
777 /* Define to 1 if you have the <pty.h> header file. */
778 #undef HAVE_PTY_H
779
780 /* Define to 1 if you have the <pwd.h> header file. */
781 #define HAVE_PWD_H 1
782
783 /* Define to 1 if you have the `random' function. */
784 #define HAVE_RANDOM 1
785
786 /* Define to 1 if you have the `readlink' function. */
787 #undef HAVE_READLINK
788
789 /* Define to 1 if you have the `readlinkat' function. */
790 #undef HAVE_READLINKAT
791
792 /* Define to 1 if you have the `recvfrom' function. */
793 #define HAVE_RECVFROM 1
794
795 /* Define to 1 if res_init is available. */
796 #undef HAVE_RES_INIT
797
798 /* Define to 1 if you have the `rint' function. */
799 #undef HAVE_RINT
800
801 /* Define to 1 if using librsvg. */
802 #undef HAVE_RSVG
803
804 /* Define to 1 if you have the `select' function. */
805 #define HAVE_SELECT 1
806
807 /* Define to 1 if you have the `sendto' function. */
808 #define HAVE_SENDTO 1
809
810 /* Define to 1 if you have the `setitimer' function. */
811 #undef HAVE_SETITIMER
812
813 /* Define to 1 if you have the `setlocale' function. */
814 #define HAVE_SETLOCALE 1
815
816 /* Define to 1 if you have the `setpgid' function. */
817 #undef HAVE_SETPGID
818
819 /* Define to 1 if you have the `setrlimit' function. */
820 #undef HAVE_SETRLIMIT
821
822 /* Define to 1 if you have the `setsid' function. */
823 #undef HAVE_SETSID
824
825 /* Define to 1 if you have the `shutdown' function. */
826 #define HAVE_SHUTDOWN 1
827
828 /* Define to 1 if 'sig_atomic_t' is a signed integer type. */
829 #undef HAVE_SIGNED_SIG_ATOMIC_T
830
831 /* Define to 1 if 'wchar_t' is a signed integer type. */
832 #undef HAVE_SIGNED_WCHAR_T
833
834 /* Define to 1 if 'wint_t' is a signed integer type. */
835 #undef HAVE_SIGNED_WINT_T
836
837 /* Define to 1 if the system has the type `sigset_t'. */
838 #undef HAVE_SIGSET_T
839
840 /* Define to 1 if you have the `snprintf' function. */
841 #define HAVE_SNPRINTF 1
842
843 /* Define if the system supports 4.2-compatible sockets.
844 NT supports Winsock which is close enough (with some hacks). */
845 #define HAVE_SOCKETS 1
846
847 /* Define to 1 if you have sound support. */
848 #define HAVE_SOUND 1
849
850 /* Define to 1 if you have the <soundcard.h> header file. */
851 #undef HAVE_SOUNDCARD_H
852
853 /* Define to 1 if `speed_t' is declared by <termios.h>. */
854 #undef HAVE_SPEED_T
855
856 /* Define to 1 if you have the <stdint.h> header file. */
857 #undef HAVE_STDINT_H
858
859 /* Define to 1 if you have the <stdio_ext.h> header file. */
860 #undef HAVE_STDIO_EXT_H
861
862 /* Define to 1 if you have the <stdlib.h> header file. */
863 #undef HAVE_STDLIB_H
864
865 /* Define to 1 if you have the <strings.h> header file. */
866 #undef HAVE_STRINGS_H
867
868 /* Define to 1 if you have the <string.h> header file. */
869 #undef HAVE_STRING_H
870
871 /* Define to 1 if you have the `strsignal' function. */
872 #undef HAVE_STRSIGNAL
873
874 /* Define to 1 if you have the `strtoimax' function. */
875 #undef HAVE_STRTOIMAX
876
877 /* Define to 1 if you have the `strtoll' function. */
878 #undef HAVE_STRTOLL
879
880 /* Define to 1 if you have the `strtoull' function. */
881 #define HAVE_STRTOULL 1
882
883 /* Define to 1 if you have the `strtoumax' function. */
884 #define HAVE_STRTOUMAX 1
885
886 /* Define to 1 if `ifr_addr' is a member of `struct ifreq'. */
887 #undef HAVE_STRUCT_IFREQ_IFR_ADDR
888
889 /* Define to 1 if `ifr_addr.sa_len' is a member of `struct ifreq'. */
890 #undef HAVE_STRUCT_IFREQ_IFR_ADDR_SA_LEN
891
892 /* Define to 1 if `ifr_broadaddr' is a member of `struct ifreq'. */
893 #undef HAVE_STRUCT_IFREQ_IFR_BROADADDR
894
895 /* Define to 1 if `ifr_flags' is a member of `struct ifreq'. */
896 #undef HAVE_STRUCT_IFREQ_IFR_FLAGS
897
898 /* Define to 1 if `ifr_hwaddr' is a member of `struct ifreq'. */
899 #undef HAVE_STRUCT_IFREQ_IFR_HWADDR
900
901 /* Define to 1 if `ifr_netmask' is a member of `struct ifreq'. */
902 #undef HAVE_STRUCT_IFREQ_IFR_NETMASK
903
904 /* Define to 1 if `n_un.n_name' is a member of `struct nlist'. */
905 #undef HAVE_STRUCT_NLIST_N_UN_N_NAME
906
907 /* Define to 1 if `st_atimensec' is a member of `struct stat'. */
908 #undef HAVE_STRUCT_STAT_ST_ATIMENSEC
909
910 /* Define to 1 if `st_atimespec.tv_nsec' is a member of `struct stat'. */
911 #undef HAVE_STRUCT_STAT_ST_ATIMESPEC_TV_NSEC
912
913 /* Define to 1 if `st_atim.st__tim.tv_nsec' is a member of `struct stat'. */
914 #undef HAVE_STRUCT_STAT_ST_ATIM_ST__TIM_TV_NSEC
915
916 /* Define to 1 if `st_atim.tv_nsec' is a member of `struct stat'. */
917 #undef HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC
918
919 /* Define to 1 if `st_birthtimensec' is a member of `struct stat'. */
920 #undef HAVE_STRUCT_STAT_ST_BIRTHTIMENSEC
921
922 /* Define to 1 if `st_birthtimespec.tv_nsec' is a member of `struct stat'. */
923 #undef HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC
924
925 /* Define to 1 if `st_birthtim.tv_nsec' is a member of `struct stat'. */
926 #undef HAVE_STRUCT_STAT_ST_BIRTHTIM_TV_NSEC
927
928 /* Define to 1 if `tm_zone' is a member of `struct tm'. */
929 #undef HAVE_STRUCT_TM_TM_ZONE
930
931 /* Define if struct utimbuf is declared -- usually in <utime.h>. Some systems
932 have utime.h but don't declare the struct anywhere. */
933 #undef HAVE_STRUCT_UTIMBUF
934
935 /* Define if struct stat has an st_dm_mode member. */
936 #undef HAVE_ST_DM_MODE
937
938 /* Define to 1 if you have the `symlink' function. */
939 #undef HAVE_SYMLINK
940
941 /* Define to 1 if you have the `sync' function. */
942 #undef HAVE_SYNC
943
944 /* Define to 1 if you have the <sys/bitypes.h> header file. */
945 #undef HAVE_SYS_BITYPES_H
946
947 /* Define to 1 if you have the <sys/inttypes.h> header file. */
948 #undef HAVE_SYS_INTTYPES_H
949
950 /* Define to 1 if you have the <sys/loadavg.h> header file. */
951 #undef HAVE_SYS_LOADAVG_H
952
953 /* Define to 1 if you have the <sys/param.h> header file. */
954 #undef HAVE_SYS_PARAM_H
955
956 /* Define to 1 if you have the <sys/resource.h> header file. */
957 #undef HAVE_SYS_RESOURCE_H
958
959 /* Define to 1 if you have the <sys/select.h> header file. */
960 #undef HAVE_SYS_SELECT_H
961
962 /* Define to 1 if you have the <sys/socket.h> header file. */
963 #undef HAVE_SYS_SOCKET_H
964
965 /* Define to 1 if you have the <sys/soundcard.h> header file. */
966 #undef HAVE_SYS_SOUNDCARD_H
967
968 /* Define to 1 if you have the <sys/stat.h> header file. */
969 #undef HAVE_SYS_STAT_H
970
971 /* Define to 1 if you have the <sys/systeminfo.h> header file. */
972 #undef HAVE_SYS_SYSTEMINFO_H
973
974 /* Define to 1 if you have the <sys/timeb.h> header file. */
975 #define HAVE_SYS_TIMEB_H 1
976
977 /* Define to 1 if you have the <sys/time.h> header file. */
978 #define HAVE_SYS_TIME_H 1
979
980 /* Define to 1 if you have the <sys/types.h> header file. */
981 #undef HAVE_SYS_TYPES_H
982
983 /* Define to 1 if you have the <sys/un.h> header file. */
984 #undef HAVE_SYS_UN_H
985
986 /* Define to 1 if you have the <sys/utsname.h> header file. */
987 #undef HAVE_SYS_UTSNAME_H
988
989 /* Define to 1 if you have the <sys/vlimit.h> header file. */
990 #undef HAVE_SYS_VLIMIT_H
991
992 /* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
993 #undef HAVE_SYS_WAIT_H
994
995 /* Define to 1 if you have the <term.h> header file. */
996 #undef HAVE_TERM_H
997
998 /* Define to 1 if you have the tiff library (-ltiff). */
999 #undef HAVE_TIFF
1000
1001 /* Define if struct tm has the tm_gmtoff member. */
1002 #undef HAVE_TM_GMTOFF
1003
1004 /* Define to 1 if your `struct tm' has `tm_zone'. Deprecated, use
1005 `HAVE_STRUCT_TM_TM_ZONE' instead. */
1006 #undef HAVE_TM_ZONE
1007
1008 /* Define to 1 if you have the `touchlock' function. */
1009 #undef HAVE_TOUCHLOCK
1010
1011 /* Define to 1 if you don't have `tm_zone' but do have the external array
1012 `tzname'. */
1013 #define HAVE_TZNAME 1
1014
1015 /* Define to 1 if you have the `tzset' function. */
1016 #define HAVE_TZSET 1
1017
1018 /* Define to 1 if you have the <unistd.h> header file. */
1019 #define HAVE_UNISTD_H 1
1020
1021 /* Define to 1 if the system has the type 'unsigned long long int'. */
1022 #undef HAVE_UNSIGNED_LONG_LONG_INT
1023
1024 /* Define to 1 if you have the <util.h> header file. */
1025 #undef HAVE_UTIL_H
1026
1027 /* Define to 1 if you have the `utimensat' function. */
1028 #undef HAVE_UTIMENSAT
1029
1030 /* Define to 1 if you have the `utimes' function. */
1031 #undef HAVE_UTIMES
1032
1033 /* Define to 1 if you have the <utime.h> header file. */
1034 #undef HAVE_UTIME_H
1035
1036 /* Define to 1 if you have the <utmp.h> header file. */
1037 #undef HAVE_UTMP_H
1038
1039 /* Define to 1 if you have the `vfork' function. */
1040 #undef HAVE_VFORK
1041
1042 /* Define to 1 if you have the <vfork.h> header file. */
1043 #undef HAVE_VFORK_H
1044
1045 /* Define to 1 if you have the <wchar.h> header file. */
1046 #undef HAVE_WCHAR_H
1047
1048 /* Define if you have the 'wchar_t' type. */
1049 #define HAVE_WCHAR_T 1
1050
1051 /* Define if you have a window system. */
1052 #undef HAVE_WINDOW_SYSTEM
1053
1054 /* Define to 1 if you have the <winsock2.h> header file. */
1055 #undef HAVE_WINSOCK2_H
1056
1057 /* Define to 1 if `fork' works. */
1058 #undef HAVE_WORKING_FORK
1059
1060 /* Define if utimes works properly. */
1061 #undef HAVE_WORKING_UTIMES
1062
1063 /* Define to 1 if `vfork' works. */
1064 #undef HAVE_WORKING_VFORK
1065
1066 /* Define to 1 if you have the <ws2tcpip.h> header file. */
1067 #undef HAVE_WS2TCPIP_H
1068
1069 /* Define to 1 if you want to use version 11 of X windows. Otherwise, Emacs
1070 expects to use version 10. */
1071 #undef HAVE_X11
1072
1073 /* Define to 1 if you have the X11R6 or newer version of Xlib. */
1074 #undef HAVE_X11R6
1075
1076 /* Define if you have usable X11R6-style XIM support. */
1077 #undef HAVE_X11R6_XIM
1078
1079 /* Define to 1 if you have the X11R6 or newer version of Xt. */
1080 #undef HAVE_X11XTR6
1081
1082 /* Define to 1 if you have the Xaw3d library (-lXaw3d). */
1083 #undef HAVE_XAW3D
1084
1085 /* Define to 1 if you have the Xft library. */
1086 #undef HAVE_XFT
1087
1088 /* Define to 1 if XIM is available */
1089 #undef HAVE_XIM
1090
1091 /* Define to 1 if you have the XkbGetKeyboard function. */
1092 #undef HAVE_XKBGETKEYBOARD
1093
1094 /* Define to 1 if you have the Xpm library (-lXpm). */
1095 #undef HAVE_XPM
1096
1097 /* Define to 1 if you have the `XrmSetDatabase' function. */
1098 #undef HAVE_XRMSETDATABASE
1099
1100 /* Define to 1 if you have the `XScreenNumberOfScreen' function. */
1101 #undef HAVE_XSCREENNUMBEROFSCREEN
1102
1103 /* Define to 1 if you have the `XScreenResourceString' function. */
1104 #undef HAVE_XSCREENRESOURCESTRING
1105
1106 /* Define if you have usable i18n support. */
1107 #undef HAVE_X_I18N
1108
1109 /* Define to 1 if you have the SM library (-lSM). */
1110 #undef HAVE_X_SM
1111
1112 /* Define to 1 if you want to use the X window system. */
1113 #undef HAVE_X_WINDOWS
1114
1115 /* Define to 1 if the system has the type `_Bool'. */
1116 #undef HAVE__BOOL
1117
1118 /* Define to 1 if you have the `_ftime' function. */
1119 #undef HAVE__FTIME
1120
1121 /* Define to 1 if you have the `__builtin_unwind_init' function. */
1122 #undef HAVE___BUILTIN_UNWIND_INIT
1123
1124 /* Define to 1 if you have the `__executable_start' function. */
1125 #undef HAVE___EXECUTABLE_START
1126
1127 /* Define to 1 if you have the `__fpending' function. */
1128 #undef HAVE___FPENDING
1129
1130 /* Define to support using a Hesiod database to find the POP server. */
1131 #undef HESIOD
1132
1133 /* Define if the system is HPUX. */
1134 #undef HPUX
1135
1136 /* This is substituted when $TERM is "internal". */
1137 #undef INTERNAL_TERMINAL
1138
1139 /* Define to read input using SIGIO. */
1140 #undef INTERRUPT_INPUT
1141
1142 /* Define if the system is IRIX. */
1143 #undef IRIX6_5
1144
1145 /* Returns true if character is any form of separator. */
1146 #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_) || IS_DEVICE_SEP (_c_))
1147
1148 /* Returns true if character is a device separator. */
1149 #define IS_DEVICE_SEP(_c_) ((_c_) == DEVICE_SEP)
1150
1151 /* Returns true if character is a directory separator. */
1152 #define IS_DIRECTORY_SEP(_c_) ((_c_) == '/' || (_c_) == '\\')
1153
1154 /* Define to support Kerberos-authenticated POP mail retrieval. */
1155 #undef KERBEROS
1156
1157 /* Define to use Kerberos 5 instead of Kerberos 4. */
1158 #undef KERBEROS5
1159
1160 /* Define to 1 if localtime caches TZ. */
1161 #define LOCALTIME_CACHE 1
1162
1163 /* Define to 1 if 'lstat' dereferences a symlink specified with a trailing
1164 slash. */
1165 #undef LSTAT_FOLLOWS_SLASHED_SYMLINK
1166
1167 /* String giving fallback POP mail host. */
1168 #undef MAILHOST
1169
1170 /* Define to unlink, rather than empty, mail spool after reading. */
1171 #undef MAIL_UNLINK_SPOOL
1172
1173 /* Define if the mailer uses flock to interlock the mail spool. */
1174 #undef MAIL_USE_FLOCK
1175
1176 /* Define if the mailer uses lockf to interlock the mail spool. */
1177 #undef MAIL_USE_LOCKF
1178
1179 /* Define to support MMDF mailboxes in movemail. */
1180 #undef MAIL_USE_MMDF
1181
1182 /* Define to support POP mail retrieval. */
1183 #define MAIL_USE_POP 1
1184
1185 /* Define if the system is MS DOS. */
1186 #undef MSDOS
1187
1188 /* Define if system's imake configuration file defines `NeedWidePrototypes' as
1189 `NO'. */
1190 #undef NARROWPROTO
1191
1192 /* Do not define abort in emacs.c. */
1193 #undef NO_ABORT
1194
1195 /* Define if XEditRes should not be used. */
1196 #undef NO_EDITRES
1197
1198 /* Define to 1 if you don't have struct exception in math.h. */
1199 #define NO_MATHERR 1
1200
1201 /* Define to 1 if your C compiler doesn't accept -c and -o together. */
1202 #undef NO_MINUS_C_MINUS_O
1203
1204 /* Define if termio.h should not be included. */
1205 #undef NO_TERMIO
1206
1207 /* Minimum value of NSIG. */
1208 #undef NSIG_MINIMUM
1209
1210 /* Define to 1 if `NSInteger' is defined. */
1211 #undef NS_HAVE_NSINTEGER
1212
1213 /* Define to 1 if you are using NS windowing under MacOS X. */
1214 #undef NS_IMPL_COCOA
1215
1216 /* Define to 1 if you are using NS windowing under GNUstep. */
1217 #undef NS_IMPL_GNUSTEP
1218
1219 /* Name of the file to open to get a null file, or a data sink. */
1220 #define NULL_DEVICE "NUL:"
1221
1222 /* Define to 1 if the nlist n_name member is a pointer */
1223 #undef N_NAME_POINTER
1224
1225 /* Define if the C compiler is the linker. */
1226 #define ORDINARY_LINK 1
1227
1228 /* Name of package */
1229 #define PACKAGE "emacs"
1230
1231 /* Define to the address where bug reports for this package should be sent. */
1232 #undef PACKAGE_BUGREPORT
1233
1234 /* Define to the full name of this package. */
1235 #undef PACKAGE_NAME
1236
1237 /* Define to the full name and version of this package. */
1238 #undef PACKAGE_STRING
1239
1240 /* Define to the one symbol short name of this package. */
1241 #undef PACKAGE_TARNAME
1242
1243 /* Define to the home page for this package. */
1244 #undef PACKAGE_URL
1245
1246 /* Define to the version of this package. */
1247 #undef PACKAGE_VERSION
1248
1249 /* Number of chars of output in the buffer of a stdio stream. */
1250 #undef PENDING_OUTPUT_COUNT
1251
1252 /* Define to empty to suppress deprecation warnings when building with
1253 --enable-gcc-warnings and with libpng versions before 1.5, which lack
1254 png_longjmp. */
1255 #undef PNG_DEPSTRUCT
1256
1257 /* Define if process_send_signal should use VSUSP instead of VSWTCH. */
1258 #undef PREFER_VSUSP
1259
1260 /* Define to 1 if pthread_sigmask(), when it fails, returns -1 and sets errno.
1261 */
1262 #undef PTHREAD_SIGMASK_FAILS_WITH_ERRNO
1263
1264 /* Define to 1 if pthread_sigmask() may returns 0 and have no effect. */
1265 #undef PTHREAD_SIGMASK_INEFFECTIVE
1266
1267 /* Define to 1 if pthread_sigmask() unblocks signals incorrectly. */
1268 #undef PTHREAD_SIGMASK_UNBLOCK_BUG
1269
1270 /* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
1271 'ptrdiff_t'. */
1272 #undef PTRDIFF_T_SUFFIX
1273
1274 /* How to iterate over PTYs. */
1275 #undef PTY_ITERATION
1276
1277 /* How to get the device name of the control end of a PTY, if non-standard. */
1278 #undef PTY_NAME_SPRINTF
1279
1280 /* How to open a PTY, if non-standard. */
1281 #undef PTY_OPEN
1282
1283 /* How to get device name of the tty end of a PTY, if non-standard. */
1284 #undef PTY_TTY_NAME_SPRINTF
1285
1286 /* Define to 1 if readlink fails to recognize a trailing slash. */
1287 #undef READLINK_TRAILING_SLASH_BUG
1288
1289 /* Define REL_ALLOC if you want to use the relocating allocator for buffer
1290 space. */
1291 #define REL_ALLOC 1
1292
1293 /* Define to 1 if stat needs help when passed a directory name with a trailing
1294 slash */
1295 #undef REPLACE_FUNC_STAT_DIR
1296
1297 /* Define to 1 if stat needs help when passed a file name with a trailing
1298 slash */
1299 #undef REPLACE_FUNC_STAT_FILE
1300
1301 /* Define if emacs.c needs to call run_time_remap; for HPUX. */
1302 #undef RUN_TIME_REMAP
1303
1304 /* Character that separates PATH elements. */
1305 #define SEPCHAR ';'
1306
1307 /* Define if process.c:child_setup should not call setpgrp. */
1308 #undef SETPGRP_RELEASES_CTTY
1309
1310 /* How to set up a slave PTY, if needed. */
1311 #undef SETUP_SLAVE_PTY
1312
1313 /* Make process_send_signal work by "typing" a signal character on the pty. */
1314 #undef SIGNALS_VIA_CHARACTERS
1315
1316 /* Define if AH_BOTTOM should include signal.h. */
1317 #undef SIGNAL_H_AHB
1318
1319 /* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
1320 'sig_atomic_t'. */
1321 #undef SIG_ATOMIC_T_SUFFIX
1322
1323 /* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
1324 'size_t'. */
1325 #undef SIZE_T_SUFFIX
1326
1327 /* Define if the system is Solaris. */
1328 #undef SOLARIS2
1329
1330 /* If using the C implementation of alloca, define if you know the
1331 direction of stack growth for your system; otherwise it will be
1332 automatically deduced at runtime.
1333 STACK_DIRECTION > 0 => grows toward higher addresses
1334 STACK_DIRECTION < 0 => grows toward lower addresses
1335 STACK_DIRECTION = 0 => direction of growth unknown */
1336 #undef STACK_DIRECTION
1337
1338 /* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
1339 #undef STAT_MACROS_BROKEN
1340
1341 /* Define to 1 if you have the ANSI C header files. */
1342 #undef STDC_HEADERS
1343
1344 /* Define to 1 on System V Release 4. */
1345 #undef SVR4
1346
1347 /* Process async input synchronously. */
1348 #undef SYNC_INPUT
1349
1350 /* Define to use system malloc. */
1351 #undef SYSTEM_MALLOC
1352
1353 /* The type of system you are compiling for; sets `system-type'. */
1354 #define SYSTEM_TYPE "windows-nt"
1355
1356 /* Undocumented. */
1357 #undef TAB3
1358
1359 /* Undocumented. */
1360 #undef TABDLY
1361
1362 /* Define to 1 if you use terminfo instead of termcap. */
1363 #undef TERMINFO
1364
1365 /* Define to the header for the built-in window system. */
1366 #undef TERM_HEADER
1367
1368 /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
1369 #define TIME_WITH_SYS_TIME 1
1370
1371 /* Some platforms redefine this. */
1372 #undef TIOCSIGSEND
1373
1374 /* Define to 1 if your <sys/time.h> declares `struct tm'. */
1375 #undef TM_IN_SYS_TIME
1376
1377 /* Define to 1 if the type of the st_atim member of a struct stat is struct
1378 timespec. */
1379 #undef TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC
1380
1381 /* Undocumented. */
1382 #undef ULIMIT_BREAK_VALUE
1383
1384 /* Define to 1 for Encore UMAX. */
1385 #undef UMAX
1386
1387 /* Define to 1 for Encore UMAX 4.3 that has <inq_status/cpustats.h> instead of
1388 <sys/cpustats.h>. */
1389 #undef UMAX4_3
1390
1391 /* Define if the system has Unix98 PTYs. */
1392 #undef UNIX98_PTYS
1393
1394 /* How to get a user's full name. */
1395 #define USER_FULL_NAME pw->pw_gecos
1396
1397 /* Define to 1 if using GTK. */
1398 #undef USE_GTK
1399
1400 /* Define to 1 if using the Lucid X toolkit. */
1401 #undef USE_LUCID
1402
1403 /* Define to use mmap to allocate buffer text. */
1404 #undef USE_MMAP_FOR_BUFFERS
1405
1406 /* Define to 1 if using the Motif X toolkit. */
1407 #undef USE_MOTIF
1408
1409 /* Define to 1 if we should use toolkit scroll bars. */
1410 #define USE_TOOLKIT_SCROLL_BARS 1
1411
1412 /* Define to 1 if we should use XIM, if it is available. */
1413 #undef USE_XIM
1414
1415 /* Define to 1 if using an X toolkit. */
1416 #undef USE_X_TOOLKIT
1417
1418 /* Define if the system is compatible with System III. */
1419 #undef USG
1420
1421 /* Define if the system is compatible with System V. */
1422 #undef USG5
1423
1424 /* Define if the system is compatible with System V Release 4. */
1425 #undef USG5_4
1426
1427 /* Define for USG systems where it works to open a pty's tty in the parent
1428 process, then close and reopen it in the child. */
1429 #undef USG_SUBTTY_WORKS
1430
1431 /* Version number of package */
1432 #define VERSION "24.2.50"
1433
1434 /* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
1435 'wchar_t'. */
1436 #undef WCHAR_T_SUFFIX
1437
1438 /* Use long long for EMACS_INT if available. */
1439 /* #undef WIDE_EMACS_INT */
1440
1441 /* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
1442 'wint_t'. */
1443 #undef WINT_T_SUFFIX
1444
1445 /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
1446 significant byte first (like Motorola and SPARC, unlike Intel). */
1447 #if defined AC_APPLE_UNIVERSAL_BUILD
1448 # if defined __BIG_ENDIAN__
1449 # define WORDS_BIGENDIAN 1
1450 # endif
1451 #else
1452 # ifndef WORDS_BIGENDIAN
1453 # undef WORDS_BIGENDIAN
1454 # endif
1455 #endif
1456
1457 /* Define this to check for malloc buffer overrun. */
1458 #undef XMALLOC_OVERRUN_CHECK
1459
1460 /* Compensate for a bug in Xos.h on some systems, where it requires time.h. */
1461 #undef XOS_NEEDS_TIME_H
1462
1463 /* Define to the type of the 6th arg of XRegisterIMInstantiateCallback, either
1464 XPointer or XPointer*. */
1465 #undef XRegisterIMInstantiateCallback_arg6
1466
1467 /* Define if the system is AIX. */
1468 #undef _AIX
1469
1470 /* Enable large inode numbers on Mac OS X. */
1471 #ifndef _DARWIN_USE_64_BIT_INODE
1472 # define _DARWIN_USE_64_BIT_INODE 1
1473 #endif
1474
1475 /* Number of bits in a file offset, on hosts where this is settable. */
1476 #undef _FILE_OFFSET_BITS
1477
1478 /* Define to 1 if Gnulib overrides 'struct stat' on Windows so that struct
1479 stat.st_size becomes 64-bit. */
1480 #undef _GL_WINDOWS_64_BIT_ST_SIZE
1481
1482 /* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */
1483 #undef _LARGEFILE_SOURCE
1484
1485 /* Define for large files, on AIX-style hosts. */
1486 #undef _LARGE_FILES
1487
1488 /* Define to 1 if on MINIX. */
1489 #undef _MINIX
1490
1491 /* Define if GNUstep uses ObjC exceptions. */
1492 #undef _NATIVE_OBJC_EXCEPTIONS
1493
1494 /* The _Noreturn keyword of C11. */
1495 #if ! (defined _Noreturn \
1496 || (defined __STDC_VERSION__ && 201112 <= __STDC_VERSION__))
1497 # if (3 <= __GNUC__ || (__GNUC__ == 2 && 8 <= __GNUC_MINOR__))
1498 # define _Noreturn __attribute__ ((__noreturn__))
1499 # elif defined _MSC_VER && 1200 <= _MSC_VER
1500 # define _Noreturn __declspec (noreturn)
1501 # else
1502 # define _Noreturn
1503 # endif
1504 #endif
1505
1506
1507 /* Define to 2 if the system does not provide POSIX.1 features except with
1508 this defined. */
1509 #undef _POSIX_1_SOURCE
1510
1511 /* Define to 1 if you need to in order for 'stat' and other things to work. */
1512 #undef _POSIX_SOURCE
1513
1514 /* Needed for system_process_attributes on Solaris. */
1515 #undef _STRUCTURED_PROC
1516
1517 /* Define to 500 only on HP-UX. */
1518 #undef _XOPEN_SOURCE
1519
1520 /* Enable extensions on AIX 3, Interix. */
1521 #ifndef _ALL_SOURCE
1522 # undef _ALL_SOURCE
1523 #endif
1524 /* Enable general extensions on Mac OS X. */
1525 #ifndef _DARWIN_C_SOURCE
1526 # undef _DARWIN_C_SOURCE
1527 #endif
1528 /* Enable GNU extensions on systems that have them. */
1529 #ifndef _GNU_SOURCE
1530 # undef _GNU_SOURCE
1531 #endif
1532 /* Enable threading extensions on Solaris. */
1533 #ifndef _POSIX_PTHREAD_SEMANTICS
1534 # undef _POSIX_PTHREAD_SEMANTICS
1535 #endif
1536 /* Enable extensions on HP NonStop. */
1537 #ifndef _TANDEM_SOURCE
1538 # undef _TANDEM_SOURCE
1539 #endif
1540 /* Enable general extensions on Solaris. */
1541 #ifndef __EXTENSIONS__
1542 # undef __EXTENSIONS__
1543 #endif
1544
1545
1546 /* Define to rpl_ if the getopt replacement functions and variables should be
1547 used. */
1548 #undef __GETOPT_PREFIX
1549
1550 /* Define to compiler's equivalent of C99 restrict keyword in array
1551 declarations. Define as empty for no equivalent. */
1552 #undef __restrict_arr
1553
1554 /* Define to longjmp if _setjmp and _longjmp do not work. Because longjmp may
1555 alter signal masks, callers of _longjmp should not assume that it leaves
1556 signal masks alone. */
1557 #undef _longjmp
1558
1559 /* Define to setjmp if _setjmp and _longjmp do not work. See _longjmp. */
1560 #undef _setjmp
1561
1562 /* Some platforms that do not use configure define this to include extra
1563 configuration information. */
1564 #define config_opsysfile <ms-w32.h>
1565
1566 /* _GL_INLINE is a portable alternative to ISO C99 plain 'inline'.
1567 _GL_EXTERN_INLINE is a portable alternative to 'extern inline'.
1568 _GL_INLINE_HEADER_BEGIN contains useful stuff to put
1569 in an include file, before uses of _GL_INLINE.
1570 It suppresses GCC's bogus "no previous prototype for 'FOO'" diagnostic,
1571 when FOO is an inline function in the header; see
1572 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54113>.
1573 _GL_INLINE_HEADER_END contains useful stuff to put
1574 in the same include file, after uses of _GL_INLINE. */
1575 #if __GNUC__ ? __GNUC_STDC_INLINE__ : 199901L <= __STDC_VERSION__
1576 # define _GL_INLINE inline
1577 # define _GL_EXTERN_INLINE extern inline
1578 #elif 2 < __GNUC__ + (7 <= __GNUC_MINOR__)
1579 # if __GNUC_GNU_INLINE__
1580 /* __gnu_inline__ suppresses a GCC 4.2 diagnostic. */
1581 # define _GL_INLINE extern inline __attribute__ ((__gnu_inline__))
1582 # else
1583 # define _GL_INLINE extern inline
1584 # endif
1585 # define _GL_EXTERN_INLINE extern
1586 #else
1587 # define _GL_INLINE static inline
1588 # define _GL_EXTERN_INLINE static inline
1589 #endif
1590
1591 #if 4 < __GNUC__ + (6 <= __GNUC_MINOR__)
1592 # if __GNUC_STDC_INLINE__
1593 # define _GL_INLINE_HEADER_CONST_PRAGMA
1594 # else
1595 # define _GL_INLINE_HEADER_CONST_PRAGMA \
1596 _Pragma ("GCC diagnostic ignored \"-Wsuggest-attribute=const\"")
1597 # endif
1598 # define _GL_INLINE_HEADER_BEGIN \
1599 _Pragma ("GCC diagnostic push") \
1600 _Pragma ("GCC diagnostic ignored \"-Wmissing-prototypes\"") \
1601 _Pragma ("GCC diagnostic ignored \"-Wmissing-declarations\"") \
1602 _GL_INLINE_HEADER_CONST_PRAGMA
1603 # define _GL_INLINE_HEADER_END \
1604 _Pragma ("GCC diagnostic pop")
1605 #else
1606 # define _GL_INLINE_HEADER_BEGIN
1607 # define _GL_INLINE_HEADER_END
1608 #endif
1609
1610 /* A replacement for va_copy, if needed. */
1611 #define gl_va_copy(a,b) ((a) = (b))
1612
1613 /* Define to rpl_gmtime if the replacement function should be used. */
1614 #undef gmtime
1615
1616 /* Define to `__inline__' or `__inline' if that's what the C compiler
1617 calls it, or to nothing if 'inline' is not supported under any name. */
1618 #ifndef __cplusplus
1619 #undef inline
1620 #endif
1621
1622 /* Work around a bug in Apple GCC 4.0.1 build 5465: In C99 mode, it supports
1623 the ISO C 99 semantics of 'extern inline' (unlike the GNU C semantics of
1624 earlier versions), but does not display it by setting __GNUC_STDC_INLINE__.
1625 __APPLE__ && __MACH__ test for Mac OS X.
1626 __APPLE_CC__ tests for the Apple compiler and its version.
1627 __STDC_VERSION__ tests for the C99 mode. */
1628 #if defined __APPLE__ && defined __MACH__ && __APPLE_CC__ >= 5465 && !defined __cplusplus && __STDC_VERSION__ >= 199901L && !defined __GNUC_STDC_INLINE__
1629 # define __GNUC_STDC_INLINE__ 1
1630 #endif
1631
1632 /* Define to 1 if the compiler is checking for lint. */
1633 #undef lint
1634
1635 /* Define to rpl_localtime if the replacement function should be used. */
1636 #undef localtime
1637
1638 /* Define to a type if <wchar.h> does not define. */
1639 #undef mbstate_t
1640
1641 /* Define to `int' if <sys/types.h> does not define. */
1642 #undef mode_t
1643
1644 /* Define to the name of the strftime replacement function. */
1645 #define my_strftime nstrftime
1646
1647 /* Define to the type of st_nlink in struct stat, or a supertype. */
1648 #define nlink_t short
1649
1650 /* Define to `int' if <sys/types.h> does not define. */
1651 #undef pid_t
1652
1653 /* Define to the equivalent of the C99 'restrict' keyword, or to
1654 nothing if this is not supported. Do not define if restrict is
1655 supported directly. */
1656 #undef restrict
1657 /* Work around a bug in Sun C++: it does not support _Restrict or
1658 __restrict__, even though the corresponding Sun C compiler ends up with
1659 "#define restrict _Restrict" or "#define restrict __restrict__" in the
1660 previous line. Perhaps some future version of Sun C++ will work with
1661 restrict; if so, hopefully it defines __RESTRICT like Sun C does. */
1662 #if defined __SUNPRO_CC && !defined __RESTRICT
1663 # define _Restrict
1664 # define __restrict__
1665 #endif
1666
1667 /* type to use in place of socklen_t if not defined */
1668 #undef socklen_t
1669
1670 /* Define as a signed type of the same size as size_t. */
1671 #undef ssize_t
1672
1673 /* Define to enable asynchronous subprocesses. */
1674 #define subprocesses
1675
1676 /* Define to any substitute for sys_siglist. */
1677 #undef sys_siglist
1678
1679 /* Define as a marker that can be attached to declarations that might not
1680 be used. This helps to reduce warnings, such as from
1681 GCC -Wunused-parameter. */
1682 #if __GNUC__ >= 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)
1683 # define _GL_UNUSED __attribute__ ((__unused__))
1684 #else
1685 # define _GL_UNUSED
1686 #endif
1687 /* The name _UNUSED_PARAMETER_ is an earlier spelling, although the name
1688 is a misnomer outside of parameter lists. */
1689 #define _UNUSED_PARAMETER_ _GL_UNUSED
1690
1691 /* The __pure__ attribute was added in gcc 2.96. */
1692 #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)
1693 # define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__))
1694 #else
1695 # define _GL_ATTRIBUTE_PURE /* empty */
1696 #endif
1697
1698 /* The __const__ attribute was added in gcc 2.95. */
1699 #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95)
1700 # define _GL_ATTRIBUTE_CONST __attribute__ ((__const__))
1701 #else
1702 # define _GL_ATTRIBUTE_CONST /* empty */
1703 #endif
1704
1705
1706 /* Define as a macro for copying va_list variables. */
1707 #undef va_copy
1708
1709 /* Define as `fork' if `vfork' does not work. */
1710 #undef vfork
1711
1712 #include <conf_post.h>
1713
1714 #endif /* EMACS_CONFIG_H */
1715
1716 /*
1717 Local Variables:
1718 mode: c
1719 End:
1720 */