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