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