1/* lib/config.hin.  Generated from configure.ac by autoheader.  */
2
3/* Define if building universal (internal helper macro) */
4#undef AC_APPLE_UNIVERSAL_BUILD
5
6/* Define to the function xargmatch calls on failures. */
7#undef ARGMATCH_DIE
8
9/* Define to the declaration of the xargmatch failure function. */
10#undef ARGMATCH_DIE_DECL
11
12/* Define to the number of bits in type 'ptrdiff_t'. */
13#undef BITSIZEOF_PTRDIFF_T
14
15/* Define to the number of bits in type 'sig_atomic_t'. */
16#undef BITSIZEOF_SIG_ATOMIC_T
17
18/* Define to the number of bits in type 'size_t'. */
19#undef BITSIZEOF_SIZE_T
20
21/* Define to the number of bits in type 'wchar_t'. */
22#undef BITSIZEOF_WCHAR_T
23
24/* Define to the number of bits in type 'wint_t'. */
25#undef BITSIZEOF_WINT_T
26
27/* Define if you wish *printf() functions that have a safe handling of
28   non-IEEE-754 'long double' values. */
29#undef CHECK_PRINTF_SAFE
30
31/* Define to 1 if chown fails to change ctime when at least one argument was
32   not -1. */
33#undef CHOWN_CHANGE_TIME_BUG
34
35/* Define if chown is not POSIX compliant regarding IDs of -1. */
36#undef CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE
37
38/* Define if chown modifies symlinks. */
39#undef CHOWN_MODIFIES_SYMLINK
40
41/* Define to 1 if chown mishandles trailing slash. */
42#undef CHOWN_TRAILING_SLASH_BUG
43
44/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
45   systems. This function is required for `alloca.c' support on those systems.
46   */
47#undef CRAY_STACKSEG_END
48
49/* Define to 1 if using `alloca.c'. */
50#undef C_ALLOCA
51
52/* Define as the bit index in the word where to find bit 0 of the exponent of
53   'double'. */
54#undef DBL_EXPBIT0_BIT
55
56/* Define as the word index where to find the exponent of 'double'. */
57#undef DBL_EXPBIT0_WORD
58
59/* Define as the bit index in the word where to find the sign of 'double'. */
60#undef DBL_SIGNBIT_BIT
61
62/* Define as the word index where to find the sign of 'double'. */
63#undef DBL_SIGNBIT_WORD
64
65/* Define the default level of POSIX conformance. The value is of the form
66   YYYYMM, specifying the year and month the standard was adopted. If not
67   defined here, it defaults to the value of _POSIX2_VERSION in <unistd.h>.
68   Define to 199209 to default to POSIX 1003.2-1992, which makes standard
69   programs like 'head', 'tail', and 'sort' accept obsolete options like '+10'
70   and '-10'. Define to 200112 to default to POSIX 1003.1-2001, which makes
71   these standard programs treat leading-'+' operands as file names and
72   require modern usages like '-n 10' instead of '-10'. Whether defined here
73   or not, the default can be overridden at run time via the _POSIX2_VERSION
74   environment variable. */
75#undef DEFAULT_POSIX2_VERSION
76
77/* Define to 1 if /dev/std{in,out,err} and /dev/fd/N, if they exist, might be
78   character-special devices whose minor device number is the file descriptor
79   number, such as on Solaris. Leave undefined if they are definitely the
80   actual files. This determination should be done after any symbolic links
81   are followed. */
82#undef DEV_FD_MIGHT_BE_CHR
83
84/* Define to 1 for DGUX with <sys/dg_sys_info.h>. */
85#undef DGUX
86
87/* the name of the file descriptor member of DIR */
88#undef DIR_FD_MEMBER_NAME
89
90#ifdef DIR_FD_MEMBER_NAME
91# define DIR_TO_FD(Dir_p) ((Dir_p)->DIR_FD_MEMBER_NAME)
92#else
93# define DIR_TO_FD(Dir_p) -1
94#endif
95
96
97/* Define to 1 if // is a file system root distinct from /. */
98#undef DOUBLE_SLASH_IS_DISTINCT_ROOT
99
100/* Define if struct dirent has a member d_ino that actually works. */
101#undef D_INO_IN_DIRENT
102
103/* Define to 1 if translation of program messages to the user's native
104   language is requested. */
105#undef ENABLE_NLS
106
107/* Define to 1 if your platform has fchownat, but it does not reject an empty
108   file name. */
109#undef FCHOWNAT_EMPTY_FILENAME_BUG
110
111/* Define to 1 if your platform has fchownat, but it cannot perform lchown
112   tasks. */
113#undef FCHOWNAT_NOFOLLOW_BUG
114
115/* Define this to 1 if F_DUPFD behavior does not match POSIX */
116#undef FCNTL_DUPFD_BUGGY
117
118/* Define to nothing if C supports flexible array members, and to 1 if it does
119   not. That way, with a declaration like 'struct s { int n; short
120   d[FLEXIBLE_ARRAY_MEMBER]; };', the struct hack can be used with pre-C99
121   compilers. Use 'FLEXSIZEOF (struct s, d, N * sizeof (short))' to calculate
122   the size in bytes of such a struct containing an N-element array. */
123#undef FLEXIBLE_ARRAY_MEMBER
124
125/* Define as the bit index in the word where to find bit 0 of the exponent of
126   'float'. */
127#undef FLT_EXPBIT0_BIT
128
129/* Define as the word index where to find the exponent of 'float'. */
130#undef FLT_EXPBIT0_WORD
131
132/* Define as the bit index in the word where to find the sign of 'float'. */
133#undef FLT_SIGNBIT_BIT
134
135/* Define as the word index where to find the sign of 'float'. */
136#undef FLT_SIGNBIT_WORD
137
138/* Define to 1 if fopen() fails to recognize a trailing slash. */
139#undef FOPEN_TRAILING_SLASH_BUG
140
141/* Enable compile-time and run-time bounds-checking, and some warnings,
142      without upsetting glibc 2.15+. */
143   #if !defined _FORTIFY_SOURCE && defined __OPTIMIZE__ && __OPTIMIZE__
144   # define _FORTIFY_SOURCE 2
145   #endif
146
147
148/* Define to 1 if the system's ftello function has the Solaris bug. */
149#undef FTELLO_BROKEN_AFTER_SWITCHING_FROM_READ_TO_WRITE
150
151/* Define to 1 if fflush is known to work on stdin as per POSIX.1-2008, 0 if
152   fflush is known to not work, -1 if unknown. */
153#undef FUNC_FFLUSH_STDIN
154
155/* Define to 1 if mkdir mistakenly creates a directory given with a trailing
156   dot component. */
157#undef FUNC_MKDIR_DOT_BUG
158
159/* Define to 1 if nl_langinfo (YESEXPR) returns a non-empty string. */
160#undef FUNC_NL_LANGINFO_YESEXPR_WORKS
161
162/* Define to 1 if realpath() can malloc memory, always gives an absolute path,
163   and handles trailing slash correctly. */
164#undef FUNC_REALPATH_WORKS
165
166/* Define to 1 if ungetc is broken when used on arbitrary bytes. */
167#undef FUNC_UNGETC_BROKEN
168
169/* Define to 1 if futimesat mishandles a NULL file name. */
170#undef FUTIMESAT_NULL_BUG
171
172/* Define to the type of elements in the array set by `getgroups'. Usually
173   this is either `int' or `gid_t'. */
174#undef GETGROUPS_T
175
176/* Define this to 1 if getgroups(0,NULL) does not return the number of groups.
177   */
178#undef GETGROUPS_ZERO_BUG
179
180/* Define if gettimeofday clobbers the localtime buffer. */
181#undef GETTIMEOFDAY_CLOBBERS_LOCALTIME
182
183/* Define this to 'void' or 'struct timezone' to match the system's
184   declaration of the second argument to gettimeofday. */
185#undef GETTIMEOFDAY_TIMEZONE
186
187/* Define to 1 if getxattr works with XATTR_NAME_POSIX_ACL_ACCESS and
188   XATTR_NAME_POSIX_ACL_DEFAULT. */
189#undef GETXATTR_WITH_POSIX_ACLS
190
191/* Compile Gnulib crypto stream ops. */
192#undef GL_COMPILE_CRYPTO_STREAM
193
194/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
195   whether the gnulib module areadlinkat shall be considered present. */
196#undef GNULIB_AREADLINKAT
197
198/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
199   whether the gnulib module calloc-gnu shall be considered present. */
200#undef GNULIB_CALLOC_GNU
201
202/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
203   whether the gnulib module canonicalize shall be considered present. */
204#undef GNULIB_CANONICALIZE
205
206/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
207   whether the gnulib module chmodat shall be considered present. */
208#undef GNULIB_CHMODAT
209
210/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
211   whether the gnulib module chownat shall be considered present. */
212#undef GNULIB_CHOWNAT
213
214/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
215   whether the gnulib module close-stream shall be considered present. */
216#undef GNULIB_CLOSE_STREAM
217
218/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
219   whether the gnulib module dirent-safer shall be considered present. */
220#undef GNULIB_DIRENT_SAFER
221
222/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
223   whether the gnulib module dirname shall be considered present. */
224#undef GNULIB_DIRNAME
225
226/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
227   whether the gnulib module faccessat shall be considered present. */
228#undef GNULIB_FACCESSAT
229
230/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
231   whether the gnulib module fcntl-safer shall be considered present. */
232#undef GNULIB_FCNTL_SAFER
233
234/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
235   whether the gnulib module fdopendir shall be considered present. */
236#undef GNULIB_FDOPENDIR
237
238/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
239   whether the gnulib module fdutimensat shall be considered present. */
240#undef GNULIB_FDUTIMENSAT
241
242/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
243   whether the gnulib module fd-safer-flag shall be considered present. */
244#undef GNULIB_FD_SAFER_FLAG
245
246/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
247   whether the gnulib module fflush shall be considered present. */
248#undef GNULIB_FFLUSH
249
250/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
251   whether the gnulib module filenamecat shall be considered present. */
252#undef GNULIB_FILENAMECAT
253
254/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
255   whether the gnulib module fnmatch-gnu shall be considered present. */
256#undef GNULIB_FNMATCH_GNU
257
258/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
259   whether the gnulib module fopen-safer shall be considered present. */
260#undef GNULIB_FOPEN_SAFER
261
262/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
263   whether the gnulib module freopen-safer shall be considered present. */
264#undef GNULIB_FREOPEN_SAFER
265
266/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
267   whether the gnulib module fscanf shall be considered present. */
268#undef GNULIB_FSCANF
269
270/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
271   whether the gnulib module getcwd shall be considered present. */
272#undef GNULIB_GETCWD
273
274/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
275   whether the gnulib module isblank shall be considered present. */
276#undef GNULIB_ISBLANK
277
278/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
279   whether the gnulib module lock shall be considered present. */
280#undef GNULIB_LOCK
281
282/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
283   whether the gnulib module malloc-gnu shall be considered present. */
284#undef GNULIB_MALLOC_GNU
285
286/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
287   whether the gnulib module mkostemp shall be considered present. */
288#undef GNULIB_MKOSTEMP
289
290/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
291   whether the gnulib module msvc-nothrow shall be considered present. */
292#undef GNULIB_MSVC_NOTHROW
293
294/* Define to 1 to disable use of VLAs */
295#undef GNULIB_NO_VLA
296
297/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
298   whether the gnulib module openat shall be considered present. */
299#undef GNULIB_OPENAT
300
301/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
302   whether the gnulib module openat-safer shall be considered present. */
303#undef GNULIB_OPENAT_SAFER
304
305/* enable some gnulib portability checks */
306#undef GNULIB_PORTCHECK
307
308/* Define to 1 if printf and friends should be labeled with attribute
309   "__gnu_printf__" instead of "__printf__" */
310#undef GNULIB_PRINTF_ATTRIBUTE_FLAVOR_GNU
311
312/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
313   whether the gnulib module realloc-gnu shall be considered present. */
314#undef GNULIB_REALLOC_GNU
315
316/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
317   whether the gnulib module scanf shall be considered present. */
318#undef GNULIB_SCANF
319
320/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
321   whether the gnulib module snprintf shall be considered present. */
322#undef GNULIB_SNPRINTF
323
324/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
325   whether the gnulib module statat shall be considered present. */
326#undef GNULIB_STATAT
327
328/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
329   whether the gnulib module strerror shall be considered present. */
330#undef GNULIB_STRERROR
331
332/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
333   whether the gnulib module strerror_r-posix shall be considered present. */
334#undef GNULIB_STRERROR_R_POSIX
335
336/* Define to 1 when the gnulib module accept should be tested. */
337#undef GNULIB_TEST_ACCEPT
338
339/* Define to 1 when the gnulib module bind should be tested. */
340#undef GNULIB_TEST_BIND
341
342/* Define to 1 when the gnulib module btowc should be tested. */
343#undef GNULIB_TEST_BTOWC
344
345/* Define to 1 when the gnulib module calloc-posix should be tested. */
346#undef GNULIB_TEST_CALLOC_POSIX
347
348/* Define to 1 when the gnulib module canonicalize should be tested. */
349#undef GNULIB_TEST_CANONICALIZE
350
351/* Define to 1 when the gnulib module canonicalize_file_name should be tested.
352   */
353#undef GNULIB_TEST_CANONICALIZE_FILE_NAME
354
355/* Define to 1 when the gnulib module chdir should be tested. */
356#undef GNULIB_TEST_CHDIR
357
358/* Define to 1 when the gnulib module chown should be tested. */
359#undef GNULIB_TEST_CHOWN
360
361/* Define to 1 when the gnulib module cloexec should be tested. */
362#undef GNULIB_TEST_CLOEXEC
363
364/* Define to 1 when the gnulib module close should be tested. */
365#undef GNULIB_TEST_CLOSE
366
367/* Define to 1 when the gnulib module closedir should be tested. */
368#undef GNULIB_TEST_CLOSEDIR
369
370/* Define to 1 when the gnulib module connect should be tested. */
371#undef GNULIB_TEST_CONNECT
372
373/* Define to 1 when the gnulib module dirfd should be tested. */
374#undef GNULIB_TEST_DIRFD
375
376/* Define to 1 when the gnulib module dup should be tested. */
377#undef GNULIB_TEST_DUP
378
379/* Define to 1 when the gnulib module dup2 should be tested. */
380#undef GNULIB_TEST_DUP2
381
382/* Define to 1 when the gnulib module environ should be tested. */
383#undef GNULIB_TEST_ENVIRON
384
385/* Define to 1 when the gnulib module euidaccess should be tested. */
386#undef GNULIB_TEST_EUIDACCESS
387
388/* Define to 1 when the gnulib module explicit_bzero should be tested. */
389#undef GNULIB_TEST_EXPLICIT_BZERO
390
391/* Define to 1 when the gnulib module faccessat should be tested. */
392#undef GNULIB_TEST_FACCESSAT
393
394/* Define to 1 when the gnulib module fchdir should be tested. */
395#undef GNULIB_TEST_FCHDIR
396
397/* Define to 1 when the gnulib module fchmodat should be tested. */
398#undef GNULIB_TEST_FCHMODAT
399
400/* Define to 1 when the gnulib module fchownat should be tested. */
401#undef GNULIB_TEST_FCHOWNAT
402
403/* Define to 1 when the gnulib module fclose should be tested. */
404#undef GNULIB_TEST_FCLOSE
405
406/* Define to 1 when the gnulib module fcntl should be tested. */
407#undef GNULIB_TEST_FCNTL
408
409/* Define to 1 when the gnulib module fdatasync should be tested. */
410#undef GNULIB_TEST_FDATASYNC
411
412/* Define to 1 when the gnulib module fdopen should be tested. */
413#undef GNULIB_TEST_FDOPEN
414
415/* Define to 1 when the gnulib module fdopendir should be tested. */
416#undef GNULIB_TEST_FDOPENDIR
417
418/* Define to 1 when the gnulib module fflush should be tested. */
419#undef GNULIB_TEST_FFLUSH
420
421/* Define to 1 when the gnulib module fnmatch should be tested. */
422#undef GNULIB_TEST_FNMATCH
423
424/* Define to 1 when the gnulib module fopen should be tested. */
425#undef GNULIB_TEST_FOPEN
426
427/* Define to 1 when the gnulib module fpurge should be tested. */
428#undef GNULIB_TEST_FPURGE
429
430/* Define to 1 when the gnulib module freopen should be tested. */
431#undef GNULIB_TEST_FREOPEN
432
433/* Define to 1 when the gnulib module frexp should be tested. */
434#undef GNULIB_TEST_FREXP
435
436/* Define to 1 when the gnulib module frexpl should be tested. */
437#undef GNULIB_TEST_FREXPL
438
439/* Define to 1 when the gnulib module fseek should be tested. */
440#undef GNULIB_TEST_FSEEK
441
442/* Define to 1 when the gnulib module fseeko should be tested. */
443#undef GNULIB_TEST_FSEEKO
444
445/* Define to 1 when the gnulib module fstat should be tested. */
446#undef GNULIB_TEST_FSTAT
447
448/* Define to 1 when the gnulib module fstatat should be tested. */
449#undef GNULIB_TEST_FSTATAT
450
451/* Define to 1 when the gnulib module fsync should be tested. */
452#undef GNULIB_TEST_FSYNC
453
454/* Define to 1 when the gnulib module ftell should be tested. */
455#undef GNULIB_TEST_FTELL
456
457/* Define to 1 when the gnulib module ftello should be tested. */
458#undef GNULIB_TEST_FTELLO
459
460/* Define to 1 when the gnulib module ftruncate should be tested. */
461#undef GNULIB_TEST_FTRUNCATE
462
463/* Define to 1 when the gnulib module futimens should be tested. */
464#undef GNULIB_TEST_FUTIMENS
465
466/* Define to 1 when the gnulib module getaddrinfo should be tested. */
467#undef GNULIB_TEST_GETADDRINFO
468
469/* Define to 1 when the gnulib module getcwd should be tested. */
470#undef GNULIB_TEST_GETCWD
471
472/* Define to 1 when the gnulib module getdelim should be tested. */
473#undef GNULIB_TEST_GETDELIM
474
475/* Define to 1 when the gnulib module getdtablesize should be tested. */
476#undef GNULIB_TEST_GETDTABLESIZE
477
478/* Define to 1 when the gnulib module getgroups should be tested. */
479#undef GNULIB_TEST_GETGROUPS
480
481/* Define to 1 when the gnulib module gethostname should be tested. */
482#undef GNULIB_TEST_GETHOSTNAME
483
484/* Define to 1 when the gnulib module getline should be tested. */
485#undef GNULIB_TEST_GETLINE
486
487/* Define to 1 when the gnulib module getloadavg should be tested. */
488#undef GNULIB_TEST_GETLOADAVG
489
490/* Define to 1 when the gnulib module getlogin should be tested. */
491#undef GNULIB_TEST_GETLOGIN
492
493/* Define to 1 when the gnulib module getopt-posix should be tested. */
494#undef GNULIB_TEST_GETOPT_POSIX
495
496/* Define to 1 when the gnulib module getpagesize should be tested. */
497#undef GNULIB_TEST_GETPAGESIZE
498
499/* Define to 1 when the gnulib module getpass should be tested. */
500#undef GNULIB_TEST_GETPASS
501
502/* Define to 1 when the gnulib module getrusage should be tested. */
503#undef GNULIB_TEST_GETRUSAGE
504
505/* Define to 1 when the gnulib module gettimeofday should be tested. */
506#undef GNULIB_TEST_GETTIMEOFDAY
507
508/* Define to 1 when the gnulib module getusershell should be tested. */
509#undef GNULIB_TEST_GETUSERSHELL
510
511/* Define to 1 when the gnulib module group-member should be tested. */
512#undef GNULIB_TEST_GROUP_MEMBER
513
514/* Define to 1 when the gnulib module ioctl should be tested. */
515#undef GNULIB_TEST_IOCTL
516
517/* Define to 1 when the gnulib module isatty should be tested. */
518#undef GNULIB_TEST_ISATTY
519
520/* Define to 1 when the gnulib module iswblank should be tested. */
521#undef GNULIB_TEST_ISWBLANK
522
523/* Define to 1 when the gnulib module iswdigit should be tested. */
524#undef GNULIB_TEST_ISWDIGIT
525
526/* Define to 1 when the gnulib module iswxdigit should be tested. */
527#undef GNULIB_TEST_ISWXDIGIT
528
529/* Define to 1 when the gnulib module lchmod should be tested. */
530#undef GNULIB_TEST_LCHMOD
531
532/* Define to 1 when the gnulib module lchown should be tested. */
533#undef GNULIB_TEST_LCHOWN
534
535/* Define to 1 when the gnulib module link should be tested. */
536#undef GNULIB_TEST_LINK
537
538/* Define to 1 when the gnulib module linkat should be tested. */
539#undef GNULIB_TEST_LINKAT
540
541/* Define to 1 when the gnulib module listen should be tested. */
542#undef GNULIB_TEST_LISTEN
543
544/* Define to 1 when the gnulib module localeconv should be tested. */
545#undef GNULIB_TEST_LOCALECONV
546
547/* Define to 1 when the gnulib module localename should be tested. */
548#undef GNULIB_TEST_LOCALENAME
549
550/* Define to 1 when the gnulib module lseek should be tested. */
551#undef GNULIB_TEST_LSEEK
552
553/* Define to 1 when the gnulib module lstat should be tested. */
554#undef GNULIB_TEST_LSTAT
555
556/* Define to 1 when the gnulib module malloc-posix should be tested. */
557#undef GNULIB_TEST_MALLOC_POSIX
558
559/* Define to 1 when the gnulib module mbrlen should be tested. */
560#undef GNULIB_TEST_MBRLEN
561
562/* Define to 1 when the gnulib module mbrtowc should be tested. */
563#undef GNULIB_TEST_MBRTOWC
564
565/* Define to 1 when the gnulib module mbscasecmp should be tested. */
566#undef GNULIB_TEST_MBSCASECMP
567
568/* Define to 1 when the gnulib module mbschr should be tested. */
569#undef GNULIB_TEST_MBSCHR
570
571/* Define to 1 when the gnulib module mbsinit should be tested. */
572#undef GNULIB_TEST_MBSINIT
573
574/* Define to 1 when the gnulib module mbslen should be tested. */
575#undef GNULIB_TEST_MBSLEN
576
577/* Define to 1 when the gnulib module mbsrtowcs should be tested. */
578#undef GNULIB_TEST_MBSRTOWCS
579
580/* Define to 1 when the gnulib module mbsstr should be tested. */
581#undef GNULIB_TEST_MBSSTR
582
583/* Define to 1 when the gnulib module mbtowc should be tested. */
584#undef GNULIB_TEST_MBTOWC
585
586/* Define to 1 when the gnulib module memchr should be tested. */
587#undef GNULIB_TEST_MEMCHR
588
589/* Define to 1 when the gnulib module mempcpy should be tested. */
590#undef GNULIB_TEST_MEMPCPY
591
592/* Define to 1 when the gnulib module memrchr should be tested. */
593#undef GNULIB_TEST_MEMRCHR
594
595/* Define to 1 when the gnulib module mkfifo should be tested. */
596#undef GNULIB_TEST_MKFIFO
597
598/* Define to 1 when the gnulib module mknod should be tested. */
599#undef GNULIB_TEST_MKNOD
600
601/* Define to 1 when the gnulib module mkostemp should be tested. */
602#undef GNULIB_TEST_MKOSTEMP
603
604/* Define to 1 when the gnulib module mkstemp should be tested. */
605#undef GNULIB_TEST_MKSTEMP
606
607/* Define to 1 when the gnulib module mktime should be tested. */
608#undef GNULIB_TEST_MKTIME
609
610/* Define to 1 when the gnulib module nanosleep should be tested. */
611#undef GNULIB_TEST_NANOSLEEP
612
613/* Define to 1 when the gnulib module nl_langinfo should be tested. */
614#undef GNULIB_TEST_NL_LANGINFO
615
616/* Define to 1 when the gnulib module open should be tested. */
617#undef GNULIB_TEST_OPEN
618
619/* Define to 1 when the gnulib module openat should be tested. */
620#undef GNULIB_TEST_OPENAT
621
622/* Define to 1 when the gnulib module opendir should be tested. */
623#undef GNULIB_TEST_OPENDIR
624
625/* Define to 1 when the gnulib module perror should be tested. */
626#undef GNULIB_TEST_PERROR
627
628/* Define to 1 when the gnulib module pipe should be tested. */
629#undef GNULIB_TEST_PIPE
630
631/* Define to 1 when the gnulib module pipe2 should be tested. */
632#undef GNULIB_TEST_PIPE2
633
634/* Define to 1 when the gnulib module pthread-cond should be tested. */
635#undef GNULIB_TEST_PTHREAD_COND
636
637/* Define to 1 when the gnulib module pthread-mutex should be tested. */
638#undef GNULIB_TEST_PTHREAD_MUTEX
639
640/* Define to 1 when the gnulib module pthread_mutex_timedlock should be
641   tested. */
642#undef GNULIB_TEST_PTHREAD_MUTEX_TIMEDLOCK
643
644/* Define to 1 when the gnulib module pthread_sigmask should be tested. */
645#undef GNULIB_TEST_PTHREAD_SIGMASK
646
647/* Define to 1 when the gnulib module pthread-thread should be tested. */
648#undef GNULIB_TEST_PTHREAD_THREAD
649
650/* Define to 1 when the gnulib module putenv should be tested. */
651#undef GNULIB_TEST_PUTENV
652
653/* Define to 1 when the gnulib module raise should be tested. */
654#undef GNULIB_TEST_RAISE
655
656/* Define to 1 when the gnulib module read should be tested. */
657#undef GNULIB_TEST_READ
658
659/* Define to 1 when the gnulib module readdir should be tested. */
660#undef GNULIB_TEST_READDIR
661
662/* Define to 1 when the gnulib module readlink should be tested. */
663#undef GNULIB_TEST_READLINK
664
665/* Define to 1 when the gnulib module readlinkat should be tested. */
666#undef GNULIB_TEST_READLINKAT
667
668/* Define to 1 when the gnulib module realloc-posix should be tested. */
669#undef GNULIB_TEST_REALLOC_POSIX
670
671/* Define to 1 when the gnulib module remove should be tested. */
672#undef GNULIB_TEST_REMOVE
673
674/* Define to 1 when the gnulib module rename should be tested. */
675#undef GNULIB_TEST_RENAME
676
677/* Define to 1 when the gnulib module renameat should be tested. */
678#undef GNULIB_TEST_RENAMEAT
679
680/* Define to 1 when the gnulib module rewinddir should be tested. */
681#undef GNULIB_TEST_REWINDDIR
682
683/* Define to 1 when the gnulib module rmdir should be tested. */
684#undef GNULIB_TEST_RMDIR
685
686/* Define to 1 when the gnulib module rpmatch should be tested. */
687#undef GNULIB_TEST_RPMATCH
688
689/* Define to 1 when the gnulib module sched_yield should be tested. */
690#undef GNULIB_TEST_SCHED_YIELD
691
692/* Define to 1 when the gnulib module secure_getenv should be tested. */
693#undef GNULIB_TEST_SECURE_GETENV
694
695/* Define to 1 when the gnulib module select should be tested. */
696#undef GNULIB_TEST_SELECT
697
698/* Define to 1 when the gnulib module setenv should be tested. */
699#undef GNULIB_TEST_SETENV
700
701/* Define to 1 when the gnulib module setlocale should be tested. */
702#undef GNULIB_TEST_SETLOCALE
703
704/* Define to 1 when the gnulib module setlocale_null should be tested. */
705#undef GNULIB_TEST_SETLOCALE_NULL
706
707/* Define to 1 when the gnulib module setsockopt should be tested. */
708#undef GNULIB_TEST_SETSOCKOPT
709
710/* Define to 1 when the gnulib module sigaction should be tested. */
711#undef GNULIB_TEST_SIGACTION
712
713/* Define to 1 when the gnulib module signbit should be tested. */
714#undef GNULIB_TEST_SIGNBIT
715
716/* Define to 1 when the gnulib module sigprocmask should be tested. */
717#undef GNULIB_TEST_SIGPROCMASK
718
719/* Define to 1 when the gnulib module sleep should be tested. */
720#undef GNULIB_TEST_SLEEP
721
722/* Define to 1 when the gnulib module snprintf should be tested. */
723#undef GNULIB_TEST_SNPRINTF
724
725/* Define to 1 when the gnulib module socket should be tested. */
726#undef GNULIB_TEST_SOCKET
727
728/* Define to 1 when the gnulib module stat should be tested. */
729#undef GNULIB_TEST_STAT
730
731/* Define to 1 when the gnulib module stpcpy should be tested. */
732#undef GNULIB_TEST_STPCPY
733
734/* Define to 1 when the gnulib module stpncpy should be tested. */
735#undef GNULIB_TEST_STPNCPY
736
737/* Define to 1 when the gnulib module strdup should be tested. */
738#undef GNULIB_TEST_STRDUP
739
740/* Define to 1 when the gnulib module strerror should be tested. */
741#undef GNULIB_TEST_STRERROR
742
743/* Define to 1 when the gnulib module strerror_r should be tested. */
744#undef GNULIB_TEST_STRERROR_R
745
746/* Define to 1 when the gnulib module strncat should be tested. */
747#undef GNULIB_TEST_STRNCAT
748
749/* Define to 1 when the gnulib module strndup should be tested. */
750#undef GNULIB_TEST_STRNDUP
751
752/* Define to 1 when the gnulib module strnlen should be tested. */
753#undef GNULIB_TEST_STRNLEN
754
755/* Define to 1 when the gnulib module strsignal should be tested. */
756#undef GNULIB_TEST_STRSIGNAL
757
758/* Define to 1 when the gnulib module strstr should be tested. */
759#undef GNULIB_TEST_STRSTR
760
761/* Define to 1 when the gnulib module strtod should be tested. */
762#undef GNULIB_TEST_STRTOD
763
764/* Define to 1 when the gnulib module strtold should be tested. */
765#undef GNULIB_TEST_STRTOLD
766
767/* Define to 1 when the gnulib module strtoll should be tested. */
768#undef GNULIB_TEST_STRTOLL
769
770/* Define to 1 when the gnulib module strtoull should be tested. */
771#undef GNULIB_TEST_STRTOULL
772
773/* Define to 1 when the gnulib module symlink should be tested. */
774#undef GNULIB_TEST_SYMLINK
775
776/* Define to 1 when the gnulib module symlinkat should be tested. */
777#undef GNULIB_TEST_SYMLINKAT
778
779/* Define to 1 when the gnulib module timegm should be tested. */
780#undef GNULIB_TEST_TIMEGM
781
782/* Define to 1 when the gnulib module time_r should be tested. */
783#undef GNULIB_TEST_TIME_R
784
785/* Define to 1 when the gnulib module time_rz should be tested. */
786#undef GNULIB_TEST_TIME_RZ
787
788/* Define to 1 when the gnulib module tmpfile should be tested. */
789#undef GNULIB_TEST_TMPFILE
790
791/* Define to 1 when the gnulib module tzset should be tested. */
792#undef GNULIB_TEST_TZSET
793
794/* Define to 1 when the gnulib module unlink should be tested. */
795#undef GNULIB_TEST_UNLINK
796
797/* Define to 1 when the gnulib module unlinkat should be tested. */
798#undef GNULIB_TEST_UNLINKAT
799
800/* Define to 1 when the gnulib module unsetenv should be tested. */
801#undef GNULIB_TEST_UNSETENV
802
803/* Define to 1 when the gnulib module usleep should be tested. */
804#undef GNULIB_TEST_USLEEP
805
806/* Define to 1 when the gnulib module utime should be tested. */
807#undef GNULIB_TEST_UTIME
808
809/* Define to 1 when the gnulib module utimensat should be tested. */
810#undef GNULIB_TEST_UTIMENSAT
811
812/* Define to 1 when the gnulib module vasprintf should be tested. */
813#undef GNULIB_TEST_VASPRINTF
814
815/* Define to 1 when the gnulib module vfprintf-posix should be tested. */
816#undef GNULIB_TEST_VFPRINTF_POSIX
817
818/* Define to 1 when the gnulib module vprintf-posix should be tested. */
819#undef GNULIB_TEST_VPRINTF_POSIX
820
821/* Define to 1 when the gnulib module wcrtomb should be tested. */
822#undef GNULIB_TEST_WCRTOMB
823
824/* Define to 1 when the gnulib module wcswidth should be tested. */
825#undef GNULIB_TEST_WCSWIDTH
826
827/* Define to 1 when the gnulib module wctob should be tested. */
828#undef GNULIB_TEST_WCTOB
829
830/* Define to 1 when the gnulib module wctomb should be tested. */
831#undef GNULIB_TEST_WCTOMB
832
833/* Define to 1 when the gnulib module wcwidth should be tested. */
834#undef GNULIB_TEST_WCWIDTH
835
836/* Define to 1 when the gnulib module write should be tested. */
837#undef GNULIB_TEST_WRITE
838
839/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
840   whether the gnulib module unistr/u8-mbtoucr shall be considered present. */
841#undef GNULIB_UNISTR_U8_MBTOUCR
842
843/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
844   whether the gnulib module unistr/u8-uctomb shall be considered present. */
845#undef GNULIB_UNISTR_U8_UCTOMB
846
847/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
848   whether the gnulib module wchar-single shall be considered present. */
849#undef GNULIB_WCHAR_SINGLE
850
851/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
852   whether the gnulib module xgetgroups shall be considered present. */
853#undef GNULIB_XGETGROUPS
854
855/* Define if your system defines TIOCGWINSZ in sys/ioctl.h. */
856#undef GWINSZ_IN_SYS_IOCTL
857
858/* Define if your system defines TIOCGWINSZ in sys/pty.h. */
859#undef GWINSZ_IN_SYS_PTY
860
861/* Define to 1 if you have the `access' function. */
862#undef HAVE_ACCESS
863
864/* Define to 1 if you have the `aclsort' function. */
865#undef HAVE_ACLSORT
866
867/* Define to 1 if you have the <aclv.h> header file. */
868#undef HAVE_ACLV_H
869
870/* Define to 1 if you have the `aclx_get' function. */
871#undef HAVE_ACLX_GET
872
873/* Define to 1 if you have the `acl_copy_ext_native' function. */
874#undef HAVE_ACL_COPY_EXT_NATIVE
875
876/* Define to 1 if you have the `acl_create_entry_np' function. */
877#undef HAVE_ACL_CREATE_ENTRY_NP
878
879/* Define to 1 if you have the `acl_delete_def_file' function. */
880#undef HAVE_ACL_DELETE_DEF_FILE
881
882/* Define to 1 if you have the `acl_delete_fd_np' function. */
883#undef HAVE_ACL_DELETE_FD_NP
884
885/* Define to 1 if you have the `acl_delete_file_np' function. */
886#undef HAVE_ACL_DELETE_FILE_NP
887
888/* Define to 1 if you have the `acl_entries' function. */
889#undef HAVE_ACL_ENTRIES
890
891/* Define to 1 if you have the `acl_extended_file' function. */
892#undef HAVE_ACL_EXTENDED_FILE
893
894/* Define to 1 if the constant ACL_FIRST_ENTRY exists. */
895#undef HAVE_ACL_FIRST_ENTRY
896
897/* Define to 1 if you have the `acl_free' function. */
898#undef HAVE_ACL_FREE
899
900/* Define to 1 if you have the `acl_free_text' function. */
901#undef HAVE_ACL_FREE_TEXT
902
903/* Define to 1 if you have the `acl_from_mode' function. */
904#undef HAVE_ACL_FROM_MODE
905
906/* Define to 1 if you have the `acl_from_text' function. */
907#undef HAVE_ACL_FROM_TEXT
908
909/* Define to 1 if you have the `acl_get_fd' function. */
910#undef HAVE_ACL_GET_FD
911
912/* Define to 1 if you have the `acl_get_file' function. */
913#undef HAVE_ACL_GET_FILE
914
915/* Define to 1 if you have the <acl/libacl.h> header file. */
916#undef HAVE_ACL_LIBACL_H
917
918/* Define to 1 if you have the `acl_set_fd' function. */
919#undef HAVE_ACL_SET_FD
920
921/* Define to 1 if you have the `acl_set_file' function. */
922#undef HAVE_ACL_SET_FILE
923
924/* Define to 1 if you have the `acl_to_short_text' function. */
925#undef HAVE_ACL_TO_SHORT_TEXT
926
927/* Define to 1 if you have the `acl_trivial' function. */
928#undef HAVE_ACL_TRIVIAL
929
930/* Define to 1 if the ACL type ACL_TYPE_EXTENDED exists. */
931#undef HAVE_ACL_TYPE_EXTENDED
932
933/* Define to 1 if you have 'alloca' after including <alloca.h>, a header that
934   may be supplied by this distribution. */
935#undef HAVE_ALLOCA
936
937/* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
938   */
939#undef HAVE_ALLOCA_H
940
941/* Define if you have an arithmetic hrtime_t type. */
942#undef HAVE_ARITHMETIC_HRTIME_T
943
944/* Define to 1 if you have the <arpa/inet.h> header file. */
945#undef HAVE_ARPA_INET_H
946
947/* Define to 1 if you have the `attr_copy_file' function. */
948#undef HAVE_ATTR_COPY_FILE
949
950/* Define to 1 if you have the <attr/error_context.h> header file. */
951#undef HAVE_ATTR_ERROR_CONTEXT_H
952
953/* Define to 1 if you have the <attr/libattr.h> header file. */
954#undef HAVE_ATTR_LIBATTR_H
955
956/* Define to 1 if you have the <bp-sym.h> header file. */
957#undef HAVE_BP_SYM_H
958
959/* Define to 1 if you have the `btowc' function. */
960#undef HAVE_BTOWC
961
962/* Define to 1 if nanosleep mishandles large arguments. */
963#undef HAVE_BUG_BIG_NANOSLEEP
964
965/* Define to 1 if you have the <byteswap.h> header file. */
966#undef HAVE_BYTESWAP_H
967
968/* Define to 1 if your system has a GNU libc compatible 'calloc' function, and
969   to 0 otherwise. */
970#undef HAVE_CALLOC_GNU
971
972/* Define if the 'calloc' function is POSIX compliant. */
973#undef HAVE_CALLOC_POSIX
974
975/* Define to 1 if you have the `canonicalize_file_name' function. */
976#undef HAVE_CANONICALIZE_FILE_NAME
977
978/* libcap usability */
979#undef HAVE_CAP
980
981/* Define to 1 if you have the `catgets' function. */
982#undef HAVE_CATGETS
983
984/* Define to 1 if you have the Mac OS X function
985   CFLocaleCopyPreferredLanguages in the CoreFoundation framework. */
986#undef HAVE_CFLOCALECOPYPREFERREDLANGUAGES
987
988/* Define to 1 if you have the Mac OS X function CFPreferencesCopyAppValue in
989   the CoreFoundation framework. */
990#undef HAVE_CFPREFERENCESCOPYAPPVALUE
991
992/* Define to 1 if you have the `chown' function. */
993#undef HAVE_CHOWN
994
995/* Define to 1 if you have the `chroot' function. */
996#undef HAVE_CHROOT
997
998/* Define to 1 if you have the `chsize' function. */
999#undef HAVE_CHSIZE
1000
1001/* Define to 1 if you have the `clock_gettime' function. */
1002#undef HAVE_CLOCK_GETTIME
1003
1004/* Define to 1 if you have the `clock_settime' function. */
1005#undef HAVE_CLOCK_SETTIME
1006
1007/* Define to 1 if you have the `closedir' function. */
1008#undef HAVE_CLOSEDIR
1009
1010/* Define if you have compound literals. */
1011#undef HAVE_COMPOUND_LITERALS
1012
1013/* Define if the copysignf function is declared in <math.h> and available in
1014   libc. */
1015#undef HAVE_COPYSIGNF_IN_LIBC
1016
1017/* Define if the copysignl function is declared in <math.h> and available in
1018   libc. */
1019#undef HAVE_COPYSIGNL_IN_LIBC
1020
1021/* Define if the copysign function is declared in <math.h> and available in
1022   libc. */
1023#undef HAVE_COPYSIGN_IN_LIBC
1024
1025/* Define to 1 if you have the <crtdefs.h> header file. */
1026#undef HAVE_CRTDEFS_H
1027
1028/* FIXME */
1029#undef HAVE_C_LINE
1030
1031/* Define if the GNU dcgettext() function is already present or preinstalled.
1032   */
1033#undef HAVE_DCGETTEXT
1034
1035/* Define to 1 if you have the declaration of `alarm', and to 0 if you don't.
1036   */
1037#undef HAVE_DECL_ALARM
1038
1039/* Define to 1 if you have the declaration of `clearerr_unlocked', and to 0 if
1040   you don't. */
1041#undef HAVE_DECL_CLEARERR_UNLOCKED
1042
1043/* Define to 1 if you have the declaration of `copysign', and to 0 if you
1044   don't. */
1045#undef HAVE_DECL_COPYSIGN
1046
1047/* Define to 1 if you have the declaration of `copysignf', and to 0 if you
1048   don't. */
1049#undef HAVE_DECL_COPYSIGNF
1050
1051/* Define to 1 if you have the declaration of `copysignl', and to 0 if you
1052   don't. */
1053#undef HAVE_DECL_COPYSIGNL
1054
1055/* Define to 1 if you have the declaration of `dirfd', and to 0 if you don't.
1056   */
1057#undef HAVE_DECL_DIRFD
1058
1059/* Define to 1 if you have the declaration of `fchdir', and to 0 if you don't.
1060   */
1061#undef HAVE_DECL_FCHDIR
1062
1063/* Define to 1 if you have the declaration of `fdatasync', and to 0 if you
1064   don't. */
1065#undef HAVE_DECL_FDATASYNC
1066
1067/* Define to 1 if you have the declaration of `fdopendir', and to 0 if you
1068   don't. */
1069#undef HAVE_DECL_FDOPENDIR
1070
1071/* Define to 1 if you have the declaration of `feof_unlocked', and to 0 if you
1072   don't. */
1073#undef HAVE_DECL_FEOF_UNLOCKED
1074
1075/* Define to 1 if you have the declaration of `ferror_unlocked', and to 0 if
1076   you don't. */
1077#undef HAVE_DECL_FERROR_UNLOCKED
1078
1079/* Define to 1 if you have the declaration of `fflush_unlocked', and to 0 if
1080   you don't. */
1081#undef HAVE_DECL_FFLUSH_UNLOCKED
1082
1083/* Define to 1 if you have the declaration of `fgets_unlocked', and to 0 if
1084   you don't. */
1085#undef HAVE_DECL_FGETS_UNLOCKED
1086
1087/* Define to 1 if you have the declaration of `flockfile', and to 0 if you
1088   don't. */
1089#undef HAVE_DECL_FLOCKFILE
1090
1091/* Define to 1 if you have the declaration of `fpurge', and to 0 if you don't.
1092   */
1093#undef HAVE_DECL_FPURGE
1094
1095/* Define to 1 if you have the declaration of `fputc_unlocked', and to 0 if
1096   you don't. */
1097#undef HAVE_DECL_FPUTC_UNLOCKED
1098
1099/* Define to 1 if you have the declaration of `fputs_unlocked', and to 0 if
1100   you don't. */
1101#undef HAVE_DECL_FPUTS_UNLOCKED
1102
1103/* Define to 1 if you have the declaration of `fread_unlocked', and to 0 if
1104   you don't. */
1105#undef HAVE_DECL_FREAD_UNLOCKED
1106
1107/* Define to 1 if you have the declaration of `freeaddrinfo', and to 0 if you
1108   don't. */
1109#undef HAVE_DECL_FREEADDRINFO
1110
1111/* Define to 1 if you have the declaration of `fseeko', and to 0 if you don't.
1112   */
1113#undef HAVE_DECL_FSEEKO
1114
1115/* Define to 1 if you have the declaration of `ftello', and to 0 if you don't.
1116   */
1117#undef HAVE_DECL_FTELLO
1118
1119/* Define to 1 if you have the declaration of `funlockfile', and to 0 if you
1120   don't. */
1121#undef HAVE_DECL_FUNLOCKFILE
1122
1123/* Define to 1 if you have the declaration of `fwrite_unlocked', and to 0 if
1124   you don't. */
1125#undef HAVE_DECL_FWRITE_UNLOCKED
1126
1127/* Define to 1 if you have the declaration of `gai_strerror', and to 0 if you
1128   don't. */
1129#undef HAVE_DECL_GAI_STRERROR
1130
1131/* Define to 1 if you have the declaration of `gai_strerrorA', and to 0 if you
1132   don't. */
1133#undef HAVE_DECL_GAI_STRERRORA
1134
1135/* Define to 1 if you have the declaration of `getaddrinfo', and to 0 if you
1136   don't. */
1137#undef HAVE_DECL_GETADDRINFO
1138
1139/* Define to 1 if you have the declaration of `getchar_unlocked', and to 0 if
1140   you don't. */
1141#undef HAVE_DECL_GETCHAR_UNLOCKED
1142
1143/* Define to 1 if you have the declaration of `getcwd', and to 0 if you don't.
1144   */
1145#undef HAVE_DECL_GETCWD
1146
1147/* Define to 1 if you have the declaration of `getc_unlocked', and to 0 if you
1148   don't. */
1149#undef HAVE_DECL_GETC_UNLOCKED
1150
1151/* Define to 1 if you have the declaration of `getdelim', and to 0 if you
1152   don't. */
1153#undef HAVE_DECL_GETDELIM
1154
1155/* Define to 1 if you have the declaration of `getdtablesize', and to 0 if you
1156   don't. */
1157#undef HAVE_DECL_GETDTABLESIZE
1158
1159/* Define to 1 if you have the declaration of `geteuid', and to 0 if you
1160   don't. */
1161#undef HAVE_DECL_GETEUID
1162
1163/* Define to 1 if you have the declaration of `getgrgid', and to 0 if you
1164   don't. */
1165#undef HAVE_DECL_GETGRGID
1166
1167/* Define to 1 if you have the declaration of `gethrtime', and to 0 if you
1168   don't. */
1169#undef HAVE_DECL_GETHRTIME
1170
1171/* Define to 1 if you have the declaration of `getline', and to 0 if you
1172   don't. */
1173#undef HAVE_DECL_GETLINE
1174
1175/* Define to 1 if you have the declaration of `getlogin', and to 0 if you
1176   don't. */
1177#undef HAVE_DECL_GETLOGIN
1178
1179/* Define to 1 if you have the declaration of `getnameinfo', and to 0 if you
1180   don't. */
1181#undef HAVE_DECL_GETNAMEINFO
1182
1183/* Define to 1 if you have the declaration of `getpwuid', and to 0 if you
1184   don't. */
1185#undef HAVE_DECL_GETPWUID
1186
1187/* Define to 1 if you have the declaration of `getuid', and to 0 if you don't.
1188   */
1189#undef HAVE_DECL_GETUID
1190
1191/* Define to 1 if you have the declaration of `getusershell', and to 0 if you
1192   don't. */
1193#undef HAVE_DECL_GETUSERSHELL
1194
1195/* Define to 1 if you have the declaration of `getutent', and to 0 if you
1196   don't. */
1197#undef HAVE_DECL_GETUTENT
1198
1199/* Define to 1 if you have the declaration of `inet_ntop', and to 0 if you
1200   don't. */
1201#undef HAVE_DECL_INET_NTOP
1202
1203/* Define to 1 if you have the declaration of `inet_pton', and to 0 if you
1204   don't. */
1205#undef HAVE_DECL_INET_PTON
1206
1207/* Define to 1 if you have the declaration of `isblank', and to 0 if you
1208   don't. */
1209#undef HAVE_DECL_ISBLANK
1210
1211/* Define to 1 if you have the declaration of `iswblank', and to 0 if you
1212   don't. */
1213#undef HAVE_DECL_ISWBLANK
1214
1215/* Define to 1 if you have the declaration of `localtime_r', and to 0 if you
1216   don't. */
1217#undef HAVE_DECL_LOCALTIME_R
1218
1219/* Define to 1 if you have the declaration of `mbrlen', and to 0 if you don't.
1220   */
1221#undef HAVE_DECL_MBRLEN
1222
1223/* Define to 1 if you have the declaration of `mbrtowc', and to 0 if you
1224   don't. */
1225#undef HAVE_DECL_MBRTOWC
1226
1227/* Define to 1 if you have the declaration of `mbsinit', and to 0 if you
1228   don't. */
1229#undef HAVE_DECL_MBSINIT
1230
1231/* Define to 1 if you have the declaration of `mbsrtowcs', and to 0 if you
1232   don't. */
1233#undef HAVE_DECL_MBSRTOWCS
1234
1235/* Define to 1 if you have a declaration of mbswidth() in <wchar.h>, and to 0
1236   otherwise. */
1237#undef HAVE_DECL_MBSWIDTH_IN_WCHAR_H
1238
1239/* Define to 1 if you have the declaration of `memrchr', and to 0 if you
1240   don't. */
1241#undef HAVE_DECL_MEMRCHR
1242
1243/* Define to 1 if you have the declaration of `mpz_inits', and to 0 if you
1244   don't. */
1245#undef HAVE_DECL_MPZ_INITS
1246
1247/* Define to 1 if you have the declaration of `program_invocation_name', and
1248   to 0 if you don't. */
1249#undef HAVE_DECL_PROGRAM_INVOCATION_NAME
1250
1251/* Define to 1 if you have the declaration of `program_invocation_short_name',
1252   and to 0 if you don't. */
1253#undef HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
1254
1255/* Define to 1 if you have the declaration of `putchar_unlocked', and to 0 if
1256   you don't. */
1257#undef HAVE_DECL_PUTCHAR_UNLOCKED
1258
1259/* Define to 1 if you have the declaration of `putc_unlocked', and to 0 if you
1260   don't. */
1261#undef HAVE_DECL_PUTC_UNLOCKED
1262
1263/* Define to 1 if you have the declaration of `setenv', and to 0 if you don't.
1264   */
1265#undef HAVE_DECL_SETENV
1266
1267/* Define to 1 if you have the declaration of `setregid', and to 0 if you
1268   don't. */
1269#undef HAVE_DECL_SETREGID
1270
1271/* Define to 1 if you have the declaration of `sleep', and to 0 if you don't.
1272   */
1273#undef HAVE_DECL_SLEEP
1274
1275/* Define to 1 if you have the declaration of `snprintf', and to 0 if you
1276   don't. */
1277#undef HAVE_DECL_SNPRINTF
1278
1279/* Define to 1 if you have the declaration of `stpncpy', and to 0 if you
1280   don't. */
1281#undef HAVE_DECL_STPNCPY
1282
1283/* Define to 1 if you have the declaration of `strdup', and to 0 if you don't.
1284   */
1285#undef HAVE_DECL_STRDUP
1286
1287/* Define to 1 if you have the declaration of `strerror_r', and to 0 if you
1288   don't. */
1289#undef HAVE_DECL_STRERROR_R
1290
1291/* Define to 1 if you have the declaration of `strmode', and to 0 if you
1292   don't. */
1293#undef HAVE_DECL_STRMODE
1294
1295/* Define to 1 if you have the declaration of `strndup', and to 0 if you
1296   don't. */
1297#undef HAVE_DECL_STRNDUP
1298
1299/* Define to 1 if you have the declaration of `strnlen', and to 0 if you
1300   don't. */
1301#undef HAVE_DECL_STRNLEN
1302
1303/* Define to 1 if you have the declaration of `strsignal', and to 0 if you
1304   don't. */
1305#undef HAVE_DECL_STRSIGNAL
1306
1307/* Define to 1 if you have the declaration of `strtoimax', and to 0 if you
1308   don't. */
1309#undef HAVE_DECL_STRTOIMAX
1310
1311/* Define to 1 if you have the declaration of `strtoll', and to 0 if you
1312   don't. */
1313#undef HAVE_DECL_STRTOLL
1314
1315/* Define to 1 if you have the declaration of `strtoull', and to 0 if you
1316   don't. */
1317#undef HAVE_DECL_STRTOULL
1318
1319/* Define to 1 if you have the declaration of `strtoumax', and to 0 if you
1320   don't. */
1321#undef HAVE_DECL_STRTOUMAX
1322
1323/* Define to 1 if you have the declaration of `sys_siglist', and to 0 if you
1324   don't. */
1325#undef HAVE_DECL_SYS_SIGLIST
1326
1327/* Define to 1 if you have the declaration of `towlower', and to 0 if you
1328   don't. */
1329#undef HAVE_DECL_TOWLOWER
1330
1331/* Define to 1 if you have the declaration of `ttyname', and to 0 if you
1332   don't. */
1333#undef HAVE_DECL_TTYNAME
1334
1335/* Define to 1 if you have the declaration of `tzname', and to 0 if you don't.
1336   */
1337#undef HAVE_DECL_TZNAME
1338
1339/* Define to 1 if you have the declaration of `unsetenv', and to 0 if you
1340   don't. */
1341#undef HAVE_DECL_UNSETENV
1342
1343/* Define to 1 if you have the declaration of `wcrtomb', and to 0 if you
1344   don't. */
1345#undef HAVE_DECL_WCRTOMB
1346
1347/* Define to 1 if you have the declaration of `wctob', and to 0 if you don't.
1348   */
1349#undef HAVE_DECL_WCTOB
1350
1351/* Define to 1 if you have the declaration of `wcwidth', and to 0 if you
1352   don't. */
1353#undef HAVE_DECL_WCWIDTH
1354
1355/* Define to 1 if you have the declaration of `_fseeki64', and to 0 if you
1356   don't. */
1357#undef HAVE_DECL__FSEEKI64
1358
1359/* Define to 1 if you have the declaration of `_putenv', and to 0 if you
1360   don't. */
1361#undef HAVE_DECL__PUTENV
1362
1363/* Define to 1 if you have the declaration of `_snprintf', and to 0 if you
1364   don't. */
1365#undef HAVE_DECL__SNPRINTF
1366
1367/* Define to 1 if you have the declaration of `_sys_siglist', and to 0 if you
1368   don't. */
1369#undef HAVE_DECL__SYS_SIGLIST
1370
1371/* Define to 1 if you have the declaration of `__argv', and to 0 if you don't.
1372   */
1373#undef HAVE_DECL___ARGV
1374
1375/* Define to 1 if you have the declaration of `__fpending', and to 0 if you
1376   don't. */
1377#undef HAVE_DECL___FPENDING
1378
1379/* Define to 1 if you have the declaration of `__fsetlocking', and to 0 if you
1380   don't. */
1381#undef HAVE_DECL___FSETLOCKING
1382
1383/* Define to 1 if you have the declaration of `__sys_siglist', and to 0 if you
1384   don't. */
1385#undef HAVE_DECL___SYS_SIGLIST
1386
1387/* Define to 1 if you have the `directio' function. */
1388#undef HAVE_DIRECTIO
1389
1390/* Define to 1 if you have the <dirent.h> header file. */
1391#undef HAVE_DIRENT_H
1392
1393/* Define to 1 if you have the `dirfd' function. */
1394#undef HAVE_DIRFD
1395
1396/* Define to 1 if you have the 'dup2' function. */
1397#undef HAVE_DUP2
1398
1399/* Define to 1 if you have the `duplocale' function. */
1400#undef HAVE_DUPLOCALE
1401
1402/* Define to 1 if you have the `eaccess' function. */
1403#undef HAVE_EACCESS
1404
1405/* Define to 1 if you have the `endgrent' function. */
1406#undef HAVE_ENDGRENT
1407
1408/* Define to 1 if you have the `endmntent' function. */
1409#undef HAVE_ENDMNTENT
1410
1411/* Define to 1 if you have the `endpwent' function. */
1412#undef HAVE_ENDPWENT
1413
1414/* Define if you have the declaration of environ. */
1415#undef HAVE_ENVIRON_DECL
1416
1417/* Define to 1 if you have the `euidaccess' function. */
1418#undef HAVE_EUIDACCESS
1419
1420/* Define to 1 if you have the `explicit_bzero' function. */
1421#undef HAVE_EXPLICIT_BZERO
1422
1423/* Define to 1 if you have the `explicit_memset' function. */
1424#undef HAVE_EXPLICIT_MEMSET
1425
1426/* Define to 1 if you have the `faccessat' function. */
1427#undef HAVE_FACCESSAT
1428
1429/* Define to 1 if you have the `facl' function. */
1430#undef HAVE_FACL
1431
1432/* Define if the locale_t type contains insufficient information, as on
1433   OpenBSD. */
1434#undef HAVE_FAKE_LOCALES
1435
1436/* Define to 1 if you have the `fallocate' function. */
1437#undef HAVE_FALLOCATE
1438
1439/* Define to 1 if you have the `fchdir' function. */
1440#undef HAVE_FCHDIR
1441
1442/* Define to 1 if you have the `fchmod' function. */
1443#undef HAVE_FCHMOD
1444
1445/* Define to 1 if you have the `fchmodat' function. */
1446#undef HAVE_FCHMODAT
1447
1448/* Define to 1 if you have the `fchown' function. */
1449#undef HAVE_FCHOWN
1450
1451/* Define to 1 if you have the `fcntl' function. */
1452#undef HAVE_FCNTL
1453
1454/* Define to 1 if you have the `fdatasync' function. */
1455#undef HAVE_FDATASYNC
1456
1457/* Define to 1 if you have the `fdopendir' function. */
1458#undef HAVE_FDOPENDIR
1459
1460/* Define to 1 if you have the <features.h> header file. */
1461#undef HAVE_FEATURES_H
1462
1463/* Define to 1 if pipes are FIFOs, 0 if sockets. Leave undefined if not known.
1464   */
1465#undef HAVE_FIFO_PIPES
1466
1467/* Define to 1 if you have the `flockfile' function. */
1468#undef HAVE_FLOCKFILE
1469
1470/* Define to 1 if you have the `fnmatch' function. */
1471#undef HAVE_FNMATCH
1472
1473/* Define to 1 if you have the <fnmatch.h> header file. */
1474#undef HAVE_FNMATCH_H
1475
1476/* Define to 1 if you have the `fork' function. */
1477#undef HAVE_FORK
1478
1479/* Define to 1 if you have the `fpathconf' function. */
1480#undef HAVE_FPATHCONF
1481
1482/* whether fpsetprec is present and required */
1483#undef HAVE_FPSETPREC
1484
1485/* Define to 1 if you have the `fpurge' function. */
1486#undef HAVE_FPURGE
1487
1488/* Define to 1 if you have the `freelocale' function. */
1489#undef HAVE_FREELOCALE
1490
1491/* Define if the frexpl function is available in libc. */
1492#undef HAVE_FREXPL_IN_LIBC
1493
1494/* Define if the frexp function is available in libc. */
1495#undef HAVE_FREXP_IN_LIBC
1496
1497/* Define to 1 if fseeko (and presumably ftello) exists and is declared. */
1498#undef HAVE_FSEEKO
1499
1500/* Define to 1 if you have the `fstatat' function. */
1501#undef HAVE_FSTATAT
1502
1503/* Define to 1 if you have the `fstatfs' function. */
1504#undef HAVE_FSTATFS
1505
1506/* Define to 1 if you have the `fsync' function. */
1507#undef HAVE_FSYNC
1508
1509/* Define to 1 if you have the <fs_info.h> header file. */
1510#undef HAVE_FS_INFO_H
1511
1512/* Define to 1 if you have the `fs_stat_dev' function. */
1513#undef HAVE_FS_STAT_DEV
1514
1515/* Define to 1 if you have the `ftruncate' function. */
1516#undef HAVE_FTRUNCATE
1517
1518/* Define to 1 if you have the `funlockfile' function. */
1519#undef HAVE_FUNLOCKFILE
1520
1521/* Define to 1 if you have the `futimens' function. */
1522#undef HAVE_FUTIMENS
1523
1524/* Define to 1 if you have the `futimes' function. */
1525#undef HAVE_FUTIMES
1526
1527/* Define to 1 if you have the `futimesat' function. */
1528#undef HAVE_FUTIMESAT
1529
1530/* Define to 1 if you have the `getacl' function. */
1531#undef HAVE_GETACL
1532
1533/* Define to 1 if getaddrinfo exists, or to 0 otherwise. */
1534#undef HAVE_GETADDRINFO
1535
1536/* Define to 1 if you have the `getattrat' function. */
1537#undef HAVE_GETATTRAT
1538
1539/* Define to 1 if getcwd works, but with shorter paths than is generally
1540   tested with the replacement. */
1541#undef HAVE_GETCWD_SHORTER
1542
1543/* Define to 1 if you have the `getdelim' function. */
1544#undef HAVE_GETDELIM
1545
1546/* Define to 1 if you have the `getdtablesize' function. */
1547#undef HAVE_GETDTABLESIZE
1548
1549/* Define to 1 if you have the `getegid' function. */
1550#undef HAVE_GETEGID
1551
1552/* Define to 1 if you have the `geteuid' function. */
1553#undef HAVE_GETEUID
1554
1555/* Define to 1 if you have the `getexecname' function. */
1556#undef HAVE_GETEXECNAME
1557
1558/* Define to 1 if you have the `getgid' function. */
1559#undef HAVE_GETGID
1560
1561/* Define to 1 if you have the `getgrent_nomembers' function. */
1562#undef HAVE_GETGRENT_NOMEMBERS
1563
1564/* Define to 1 if you have the `getgrgid_nomembers' function. */
1565#undef HAVE_GETGRGID_NOMEMBERS
1566
1567/* Define to 1 if you have the `getgrnam_nomembers' function. */
1568#undef HAVE_GETGRNAM_NOMEMBERS
1569
1570/* Define to 1 if you have the `getgrouplist' function. */
1571#undef HAVE_GETGROUPLIST
1572
1573/* Define to 1 if your system has a working `getgroups' function. */
1574#undef HAVE_GETGROUPS
1575
1576/* Define to 1 if you have the `gethostbyname' function. */
1577#undef HAVE_GETHOSTBYNAME
1578
1579/* Define to 1 if you have the `gethostid' function. */
1580#undef HAVE_GETHOSTID
1581
1582/* Define to 1 if you have the `gethostname' function. */
1583#undef HAVE_GETHOSTNAME
1584
1585/* Define to 1 if you have the `getlocalename_l' function. */
1586#undef HAVE_GETLOCALENAME_L
1587
1588/* Define to 1 if you have the `getlogin' function. */
1589#undef HAVE_GETLOGIN
1590
1591/* Define to 1 if you have the `getmntent' function. */
1592#undef HAVE_GETMNTENT
1593
1594/* Define to 1 if you have the <getopt.h> header file. */
1595#undef HAVE_GETOPT_H
1596
1597/* Define to 1 if you have the `getopt_long_only' function. */
1598#undef HAVE_GETOPT_LONG_ONLY
1599
1600/* Define to 1 if the system has the 'getpagesize' function. */
1601#undef HAVE_GETPAGESIZE
1602
1603/* Define to 1 if you have the `getpass' function. */
1604#undef HAVE_GETPASS
1605
1606/* Define to 1 if you have the `getppriv' function. */
1607#undef HAVE_GETPPRIV
1608
1609/* Define to 1 if you have the `getprogname' function. */
1610#undef HAVE_GETPROGNAME
1611
1612/* Define to 1 if you have the `getrusage' function. */
1613#undef HAVE_GETRUSAGE
1614
1615/* Define to 1 if you have the `getservbyname' function. */
1616#undef HAVE_GETSERVBYNAME
1617
1618/* Define to 1 if you have the `getsysinfo' function. */
1619#undef HAVE_GETSYSINFO
1620
1621/* Define if the GNU gettext() function is already present or preinstalled. */
1622#undef HAVE_GETTEXT
1623
1624/* Define to 1 if you have the `gettimeofday' function. */
1625#undef HAVE_GETTIMEOFDAY
1626
1627/* Define to 1 if you have the `getuid' function. */
1628#undef HAVE_GETUID
1629
1630/* Define to 1 if you have the `getusershell' function. */
1631#undef HAVE_GETUSERSHELL
1632
1633/* Define if you have GNU libgmp (or replacement) */
1634#undef HAVE_GMP
1635
1636/* Define to 1 if you have the <gmp.h> header file. */
1637#undef HAVE_GMP_H
1638
1639/* Define to 1 if you have the <grp.h> header file. */
1640#undef HAVE_GRP_H
1641
1642/* Define to 1 if you have the `hasmntopt' function. */
1643#undef HAVE_HASMNTOPT
1644
1645/* Define to 1 if you have the <hurd.h> header file. */
1646#undef HAVE_HURD_H
1647
1648/* Define if you have the iconv() function and it works. */
1649#undef HAVE_ICONV
1650
1651/* Define to 1 if you have the <iconv.h> header file. */
1652#undef HAVE_ICONV_H
1653
1654/* Define to 1 if you have the `inet_ntop' function. */
1655#undef HAVE_INET_NTOP
1656
1657/* Define to 1 if you have the `inet_pton' function. */
1658#undef HAVE_INET_PTON
1659
1660/* Define to 1 if you have the `initgroups' function. */
1661#undef HAVE_INITGROUPS
1662
1663/* Define to 1 if the compiler supports one of the keywords 'inline',
1664   '__inline__', '__inline' and effectively inlines functions marked as such.
1665   */
1666#undef HAVE_INLINE
1667
1668/* Define to 1 if you have usable inotify support. */
1669#undef HAVE_INOTIFY
1670
1671/* Define to 1 if you have the `inotify_init' function. */
1672#undef HAVE_INOTIFY_INIT
1673
1674/* Define if you have the 'intmax_t' type in <stdint.h> or <inttypes.h>. */
1675#undef HAVE_INTMAX_T
1676
1677/* Define to 1 if you have the <inttypes.h> header file. */
1678#undef HAVE_INTTYPES_H
1679
1680/* Define if <inttypes.h> exists, doesn't clash with <sys/types.h>, and
1681   declares uintmax_t. */
1682#undef HAVE_INTTYPES_H_WITH_UINTMAX
1683
1684/* Define to 1 if you have the `ioctl' function. */
1685#undef HAVE_IOCTL
1686
1687/* Define to 1 if <sys/socket.h> defines AF_INET. */
1688#undef HAVE_IPV4
1689
1690/* Define to 1 if <sys/socket.h> defines AF_INET6. */
1691#undef HAVE_IPV6
1692
1693/* Define to 1 if you have the `isapipe' function. */
1694#undef HAVE_ISAPIPE
1695
1696/* Define to 1 if you have the `isascii' function. */
1697#undef HAVE_ISASCII
1698
1699/* Define to 1 if you have the `isblank' function. */
1700#undef HAVE_ISBLANK
1701
1702/* Define if the isnan(double) function is available in libc. */
1703#undef HAVE_ISNAND_IN_LIBC
1704
1705/* Define if the isnan(float) function is available in libc. */
1706#undef HAVE_ISNANF_IN_LIBC
1707
1708/* Define if the isnan(long double) function is available in libc. */
1709#undef HAVE_ISNANL_IN_LIBC
1710
1711/* Define to 1 if you have the `issetugid' function. */
1712#undef HAVE_ISSETUGID
1713
1714/* Define to 1 if you have the `iswblank' function. */
1715#undef HAVE_ISWBLANK
1716
1717/* Define to 1 if you have the `iswcntrl' function. */
1718#undef HAVE_ISWCNTRL
1719
1720/* Define to 1 if you have the `iswctype' function. */
1721#undef HAVE_ISWCTYPE
1722
1723/* Define to 1 if you have the `iswspace' function. */
1724#undef HAVE_ISWSPACE
1725
1726/* Define if you have <langinfo.h> and nl_langinfo(CODESET). */
1727#undef HAVE_LANGINFO_CODESET
1728
1729/* Define to 1 if you have the <langinfo.h> header file. */
1730#undef HAVE_LANGINFO_H
1731
1732/* Define if you have <langinfo.h> and nl_langinfo(YESEXPR). */
1733#undef HAVE_LANGINFO_YESEXPR
1734
1735/* Define to 1 if you have the `lchmod' function. */
1736#undef HAVE_LCHMOD
1737
1738/* Define to 1 if you have the `lchown' function. */
1739#undef HAVE_LCHOWN
1740
1741/* Define if your <locale.h> file defines LC_MESSAGES. */
1742#undef HAVE_LC_MESSAGES
1743
1744/* Define if the ldexpl function is available in libc. */
1745#undef HAVE_LDEXPL_IN_LIBC
1746
1747/* Define if the ldexp function is available in libc. */
1748#undef HAVE_LDEXP_IN_LIBC
1749
1750/* Define to 1 if you have the `dgc' library (-ldgc). */
1751#undef HAVE_LIBDGC
1752
1753/* Define to 1 if you have the <libgen.h> header file. */
1754#undef HAVE_LIBGEN_H
1755
1756/* Define to 1 if you have the <libintl.h> header file. */
1757#undef HAVE_LIBINTL_H
1758
1759/* Define to 1 if you have the `kstat' library (-lkstat). */
1760#undef HAVE_LIBKSTAT
1761
1762/* Define to 1 if you have the `os' library (-los). */
1763#undef HAVE_LIBOS
1764
1765/* Define to 1 if you have the `perfstat' library (-lperfstat). */
1766#undef HAVE_LIBPERFSTAT
1767
1768/* Define to 1 if you have the <limits.h> header file. */
1769#undef HAVE_LIMITS_H
1770
1771/* Define to 1 if you have the `link' function. */
1772#undef HAVE_LINK
1773
1774/* Define to 1 if you have the `linkat' function. */
1775#undef HAVE_LINKAT
1776
1777/* Define to 1 if you have the <linux/falloc.h> header file. */
1778#undef HAVE_LINUX_FALLOC_H
1779
1780/* Define to 1 if you have the <linux/fs.h> header file. */
1781#undef HAVE_LINUX_FS_H
1782
1783/* Define to 1 if you have 'struct sockaddr_alg' defined. */
1784#undef HAVE_LINUX_IF_ALG_H
1785
1786/* Define to 1 if you have the `listmntent' function. */
1787#undef HAVE_LISTMNTENT
1788
1789/* Define if localtime-like functions can loop forever on extreme arguments.
1790   */
1791#undef HAVE_LOCALTIME_INFLOOP_BUG
1792
1793/* Define to 1 if you have the `localtime_r' function. */
1794#undef HAVE_LOCALTIME_R
1795
1796/* Define to 1 if you support file names longer than 14 characters. */
1797#undef HAVE_LONG_FILE_NAMES
1798
1799/* Define to 1 if the system has the type 'long long int'. */
1800#undef HAVE_LONG_LONG_INT
1801
1802/* Define to 1 if you have the `lstat' function. */
1803#undef HAVE_LSTAT
1804
1805/* Define to 1 if you have the `lutimes' function. */
1806#undef HAVE_LUTIMES
1807
1808/* Define to 1 if you have the <machine/hal_sysinfo.h> header file. */
1809#undef HAVE_MACHINE_HAL_SYSINFO_H
1810
1811/* Define to 1 if you have the <mach/mach.h> header file. */
1812#undef HAVE_MACH_MACH_H
1813
1814/* Define to 1 if your system has a GNU libc compatible 'malloc' function, and
1815   to 0 otherwise. */
1816#undef HAVE_MALLOC_GNU
1817
1818/* Define to 1 if you have the <malloc.h> header file. */
1819#undef HAVE_MALLOC_H
1820
1821/* Define if the 'malloc' function is POSIX compliant. */
1822#undef HAVE_MALLOC_POSIX
1823
1824/* Define to 1 if mmap()'s MAP_ANONYMOUS flag is available after including
1825   config.h and <sys/mman.h>. */
1826#undef HAVE_MAP_ANONYMOUS
1827
1828/* Define to 1 if you have the `matchpathcon_init_prefix' function. */
1829#undef HAVE_MATCHPATHCON_INIT_PREFIX
1830
1831/* Define to 1 if you have the <math.h> header file. */
1832#undef HAVE_MATH_H
1833
1834/* Define to 1 if you have the `mbrlen' function. */
1835#undef HAVE_MBRLEN
1836
1837/* Define to 1 if you have the `mbrtowc' function. */
1838#undef HAVE_MBRTOWC
1839
1840/* Define to 1 if you have the `mbsinit' function. */
1841#undef HAVE_MBSINIT
1842
1843/* Define to 1 if you have the `mbslen' function. */
1844#undef HAVE_MBSLEN
1845
1846/* Define to 1 if you have the `mbsrtowcs' function. */
1847#undef HAVE_MBSRTOWCS
1848
1849/* Define to 1 if <wchar.h> declares mbstate_t. */
1850#undef HAVE_MBSTATE_T
1851
1852/* Define to 1 if you have the `mbtowc' function. */
1853#undef HAVE_MBTOWC
1854
1855/* Define to 1 if you have the <memory.h> header file. */
1856#undef HAVE_MEMORY_H
1857
1858/* Define to 1 if you have the `mempcpy' function. */
1859#undef HAVE_MEMPCPY
1860
1861/* Define to 1 if you have the `memrchr' function. */
1862#undef HAVE_MEMRCHR
1863
1864/* Define to 1 if you have the `microuptime' function. */
1865#undef HAVE_MICROUPTIME
1866
1867/* Define to 1 if getcwd minimally works, that is, its result can be trusted
1868   when it succeeds. */
1869#undef HAVE_MINIMALLY_WORKING_GETCWD
1870
1871/* Define to 1 if <limits.h> defines the MIN and MAX macros. */
1872#undef HAVE_MINMAX_IN_LIMITS_H
1873
1874/* Define to 1 if <sys/param.h> defines the MIN and MAX macros. */
1875#undef HAVE_MINMAX_IN_SYS_PARAM_H
1876
1877/* Define to 1 if you have the `mkfifo' function. */
1878#undef HAVE_MKFIFO
1879
1880/* Define to 1 if you have the `mknod' function. */
1881#undef HAVE_MKNOD
1882
1883/* Define to 1 if you have the `mkostemp' function. */
1884#undef HAVE_MKOSTEMP
1885
1886/* Define to 1 if you have the `mkstemp' function. */
1887#undef HAVE_MKSTEMP
1888
1889/* Define to 1 if you have the <mntent.h> header file. */
1890#undef HAVE_MNTENT_H
1891
1892/* Define to 1 if you have the `mode_to_security_class' function. */
1893#undef HAVE_MODE_TO_SECURITY_CLASS
1894
1895/* Define to 1 if you have the `mprotect' function. */
1896#undef HAVE_MPROTECT
1897
1898/* Define to 1 on MSVC platforms that have the "invalid parameter handler"
1899   concept. */
1900#undef HAVE_MSVC_INVALID_PARAMETER_HANDLER
1901
1902/* Define if the locale_t type does not contain the name of each locale
1903   category. */
1904#undef HAVE_NAMELESS_LOCALES
1905
1906/* Define to 1 if you have the `nanouptime' function. */
1907#undef HAVE_NANOUPTIME
1908
1909/* Define to 1 if you have the <netdb.h> header file. */
1910#undef HAVE_NETDB_H
1911
1912/* Define to 1 if you have the <netinet/in.h> header file. */
1913#undef HAVE_NETINET_IN_H
1914
1915/* Define to 1 if you have the `newlocale' function. */
1916#undef HAVE_NEWLOCALE
1917
1918/* Define to 1 if you have the `next_dev' function. */
1919#undef HAVE_NEXT_DEV
1920
1921/* Define to 1 if you have the <nfs/nfs_client.h> header file. */
1922#undef HAVE_NFS_NFS_CLIENT_H
1923
1924/* Define to 1 if you have the <nfs/vfs.h> header file. */
1925#undef HAVE_NFS_VFS_H
1926
1927/* Define to 1 if you have the `nice' function. */
1928#undef HAVE_NICE
1929
1930/* Define to 1 if you have the <nlist.h> header file. */
1931#undef HAVE_NLIST_H
1932
1933/* Define to 1 if you have the `nl_langinfo' function. */
1934#undef HAVE_NL_LANGINFO
1935
1936/* Define to 1 if the system has obstacks that work with any size object. */
1937#undef HAVE_OBSTACK
1938
1939/* Define to 1 if you have the `openat' function. */
1940#undef HAVE_OPENAT
1941
1942/* Define to 1 if you have the `opendir' function. */
1943#undef HAVE_OPENDIR
1944
1945/* Define to 1 if libcrypto is used for MD5. */
1946#undef HAVE_OPENSSL_MD5
1947
1948/* Define to 1 if libcrypto is used for SHA1. */
1949#undef HAVE_OPENSSL_SHA1
1950
1951/* Define to 1 if libcrypto is used for SHA256. */
1952#undef HAVE_OPENSSL_SHA256
1953
1954/* Define to 1 if libcrypto is used for SHA512. */
1955#undef HAVE_OPENSSL_SHA512
1956
1957/* Define to 1 if you have the <OS.h> header file. */
1958#undef HAVE_OS_H
1959
1960/* Define to 1 if getcwd works, except it sometimes fails when it shouldn't,
1961   setting errno to ERANGE, ENAMETOOLONG, or ENOENT. */
1962#undef HAVE_PARTLY_WORKING_GETCWD
1963
1964/* Define to 1 if you have the `pathconf' function. */
1965#undef HAVE_PATHCONF
1966
1967/* Define to 1 if you have the <paths.h> header file. */
1968#undef HAVE_PATHS_H
1969
1970/* Define to 1 if you have the `pause' function. */
1971#undef HAVE_PAUSE
1972
1973/* Define to 1 if you have the `pipe' function. */
1974#undef HAVE_PIPE
1975
1976/* Define to 1 if you have the `pipe2' function. */
1977#undef HAVE_PIPE2
1978
1979/* Define to 1 if you have the `posix_fadvise' function. */
1980#undef HAVE_POSIX_FADVISE
1981
1982/* Define to 1 if you have the `prctl' function. */
1983#undef HAVE_PRCTL
1984
1985/* Define to 1 if you have the <priv.h> header file. */
1986#undef HAVE_PRIV_H
1987
1988/* Define if your system has the /proc/uptime special file. */
1989#undef HAVE_PROC_UPTIME
1990
1991/* Define to 1 if you have the `pstat_getdynamic' function. */
1992#undef HAVE_PSTAT_GETDYNAMIC
1993
1994/* Define to 1 if you have the `pstat_getstatic' function. */
1995#undef HAVE_PSTAT_GETSTATIC
1996
1997/* Define if you have the <pthread.h> header and the POSIX threads API. */
1998#undef HAVE_PTHREAD_API
1999
2000/* Define to 1 if you have the `pthread_atfork' function. */
2001#undef HAVE_PTHREAD_ATFORK
2002
2003/* Define to 1 if you have the <pthread.h> header file. */
2004#undef HAVE_PTHREAD_H
2005
2006/* Define if the <pthread.h> defines PTHREAD_MUTEX_RECURSIVE. */
2007#undef HAVE_PTHREAD_MUTEX_RECURSIVE
2008
2009/* Define if the POSIX multithreading library has read/write locks. */
2010#undef HAVE_PTHREAD_RWLOCK
2011
2012/* Define if the 'pthread_rwlock_rdlock' function prefers a writer to a
2013   reader. */
2014#undef HAVE_PTHREAD_RWLOCK_RDLOCK_PREFER_WRITER
2015
2016/* Define to 1 if the pthread_sigmask function can be used (despite bugs). */
2017#undef HAVE_PTHREAD_SIGMASK
2018
2019/* Define to 1 if the system has the type `pthread_spinlock_t'. */
2020#undef HAVE_PTHREAD_SPINLOCK_T
2021
2022/* Define to 1 if the system has the type `pthread_t'. */
2023#undef HAVE_PTHREAD_T
2024
2025/* Define to 1 if you have the <pwd.h> header file. */
2026#undef HAVE_PWD_H
2027
2028/* Define to 1 if you have the `raise' function. */
2029#undef HAVE_RAISE
2030
2031/* Define to 1 if you have the `readdir' function. */
2032#undef HAVE_READDIR
2033
2034/* Define to 1 if you have the `readlink' function. */
2035#undef HAVE_READLINK
2036
2037/* Define to 1 if you have the `readlinkat' function. */
2038#undef HAVE_READLINKAT
2039
2040/* Define to 1 if your system has a GNU libc compatible 'realloc' function,
2041   and to 0 otherwise. */
2042#undef HAVE_REALLOC_GNU
2043
2044/* Define if the 'realloc' function is POSIX compliant. */
2045#undef HAVE_REALLOC_POSIX
2046
2047/* Define to 1 if you have the `realpath' function. */
2048#undef HAVE_REALPATH
2049
2050/* Define to 1 if you have the `renameat' function. */
2051#undef HAVE_RENAMEAT
2052
2053/* Define to 1 if you have the `renameat2' function. */
2054#undef HAVE_RENAMEAT2
2055
2056/* Define to 1 if you have the `rewinddir' function. */
2057#undef HAVE_REWINDDIR
2058
2059/* Define to 1 if you have the `rpmatch' function. */
2060#undef HAVE_RPMATCH
2061
2062/* Define to 1 if you have run the test for working tzset. */
2063#undef HAVE_RUN_TZSET_TEST
2064
2065/* Define to 1 if 'long double' and 'double' have the same representation. */
2066#undef HAVE_SAME_LONG_DOUBLE_AS_DOUBLE
2067
2068/* Define to 1 if the system has the type `sa_family_t'. */
2069#undef HAVE_SA_FAMILY_T
2070
2071/* Define to 1 if you have the `sched_getaffinity' function. */
2072#undef HAVE_SCHED_GETAFFINITY
2073
2074/* Define to 1 if sched_getaffinity has a glibc compatible declaration. */
2075#undef HAVE_SCHED_GETAFFINITY_LIKE_GLIBC
2076
2077/* Define to 1 if you have the `sched_getaffinity_np' function. */
2078#undef HAVE_SCHED_GETAFFINITY_NP
2079
2080/* Define to 1 if you have the <sched.h> header file. */
2081#undef HAVE_SCHED_H
2082
2083/* Define to 1 if you have the <search.h> header file. */
2084#undef HAVE_SEARCH_H
2085
2086/* Define to 1 if you have the `secure_getenv' function. */
2087#undef HAVE_SECURE_GETENV
2088
2089/* Define to 1 if you have the <selinux/context.h> header file. */
2090#undef HAVE_SELINUX_CONTEXT_H
2091
2092/* Define to 1 if you have the <selinux/flask.h> header file. */
2093#undef HAVE_SELINUX_FLASK_H
2094
2095/* Define to 1 if you have the <selinux/selinux.h> header file. */
2096#undef HAVE_SELINUX_SELINUX_H
2097
2098/* Define to 1 if you have the <semaphore.h> header file. */
2099#undef HAVE_SEMAPHORE_H
2100
2101/* Define to 1 if you have the `setdtablesize' function. */
2102#undef HAVE_SETDTABLESIZE
2103
2104/* Define to 1 if you have the `setenv' function. */
2105#undef HAVE_SETENV
2106
2107/* Define to 1 if you have the `setgroups' function. */
2108#undef HAVE_SETGROUPS
2109
2110/* Define to 1 if you have the `sethostname' function. */
2111#undef HAVE_SETHOSTNAME
2112
2113/* Define to 1 if you have the `setmntent' function. */
2114#undef HAVE_SETMNTENT
2115
2116/* Define to 1 if you have the `setrlimit' function. */
2117#undef HAVE_SETRLIMIT
2118
2119/* Define to 1 if you have the `settimeofday' function. */
2120#undef HAVE_SETTIMEOFDAY
2121
2122/* Define to 1 if you have the `shutdown' function. */
2123#undef HAVE_SHUTDOWN
2124
2125/* Define to 1 if you have the `sig2str' function. */
2126#undef HAVE_SIG2STR
2127
2128/* Define to 1 if you have the `sigaction' function. */
2129#undef HAVE_SIGACTION
2130
2131/* Define to 1 if you have the `sigaltstack' function. */
2132#undef HAVE_SIGALTSTACK
2133
2134/* Define to 1 if the system has the type `siginfo_t'. */
2135#undef HAVE_SIGINFO_T
2136
2137/* Define to 1 if you have the `siginterrupt' function. */
2138#undef HAVE_SIGINTERRUPT
2139
2140/* Define to 1 if 'sig_atomic_t' is a signed integer type. */
2141#undef HAVE_SIGNED_SIG_ATOMIC_T
2142
2143/* Define to 1 if 'wchar_t' is a signed integer type. */
2144#undef HAVE_SIGNED_WCHAR_T
2145
2146/* Define to 1 if 'wint_t' is a signed integer type. */
2147#undef HAVE_SIGNED_WINT_T
2148
2149/* Define to 1 if the system has the type `sigset_t'. */
2150#undef HAVE_SIGSET_T
2151
2152/* Define to 1 if you have the `sigsuspend' function. */
2153#undef HAVE_SIGSUSPEND
2154
2155/* Define to 1 if you have the `sleep' function. */
2156#undef HAVE_SLEEP
2157
2158/* libsmack usability */
2159#undef HAVE_SMACK
2160
2161/* Define to 1 if you have the `snprintf' function. */
2162#undef HAVE_SNPRINTF
2163
2164/* Define if the return value of the snprintf function is the number of of
2165   bytes (excluding the terminating NUL) that would have been produced if the
2166   buffer had been large enough. */
2167#undef HAVE_SNPRINTF_RETVAL_C99
2168
2169/* Define if the locale_t type is as on Solaris 11.4. */
2170#undef HAVE_SOLARIS114_LOCALES
2171
2172/* Define to 1 if you have the `statacl' function. */
2173#undef HAVE_STATACL
2174
2175/* Define to 1 if you have the `statvfs' function. */
2176#undef HAVE_STATVFS
2177
2178/* Define to 1 if you have the `statx' function. */
2179#undef HAVE_STATX
2180
2181/* Define to 1 if you have the <stdint.h> header file. */
2182#undef HAVE_STDINT_H
2183
2184/* Define if <stdint.h> exists, doesn't clash with <sys/types.h>, and declares
2185   uintmax_t. */
2186#undef HAVE_STDINT_H_WITH_UINTMAX
2187
2188/* Define to 1 if you have the <stdio_ext.h> header file. */
2189#undef HAVE_STDIO_EXT_H
2190
2191/* Define to 1 if you have the <stdlib.h> header file. */
2192#undef HAVE_STDLIB_H
2193
2194/* Define to 1 if you have the `stime' function. */
2195#undef HAVE_STIME
2196
2197/* Define to 1 if you have the `stpcpy' function. */
2198#undef HAVE_STPCPY
2199
2200/* Define if you have the stpncpy() function and it works. */
2201#undef HAVE_STPNCPY
2202
2203/* Define to 1 if you have the `strdup' function. */
2204#undef HAVE_STRDUP
2205
2206/* Define to 1 if you have the `strerror_r' function. */
2207#undef HAVE_STRERROR_R
2208
2209/* Define to 1 if you have the <strings.h> header file. */
2210#undef HAVE_STRINGS_H
2211
2212/* Define to 1 if you have the <string.h> header file. */
2213#undef HAVE_STRING_H
2214
2215/* Define to 1 if you have the `strndup' function. */
2216#undef HAVE_STRNDUP
2217
2218/* Define to 1 if you have the `strnlen' function. */
2219#undef HAVE_STRNLEN
2220
2221/* Define to 1 if you have the <stropts.h> header file. */
2222#undef HAVE_STROPTS_H
2223
2224/* Define to 1 if you have the `strsignal' function. */
2225#undef HAVE_STRSIGNAL
2226
2227/* Define to 1 if the system has the 'strtod_l' function. */
2228#undef HAVE_STRTOD_L
2229
2230/* Define to 1 if you have the `strtof' function. */
2231#undef HAVE_STRTOF
2232
2233/* Define to 1 if you have the `strtoimax' function. */
2234#undef HAVE_STRTOIMAX
2235
2236/* Define to 1 if you have the `strtold' function. */
2237#undef HAVE_STRTOLD
2238
2239/* Define to 1 if you have the `strtold_l' function. */
2240#undef HAVE_STRTOLD_L
2241
2242/* Define to 1 if you have the `strtoll' function. */
2243#undef HAVE_STRTOLL
2244
2245/* Define to 1 if you have the `strtoull' function. */
2246#undef HAVE_STRTOULL
2247
2248/* Define to 1 if you have the `strtoumax' function. */
2249#undef HAVE_STRTOUMAX
2250
2251/* Define to 1 if the system has the type `struct addrinfo'. */
2252#undef HAVE_STRUCT_ADDRINFO
2253
2254/* Define if there is a member named d_type in the struct describing directory
2255   headers. */
2256#undef HAVE_STRUCT_DIRENT_D_TYPE
2257
2258/* Define to 1 if `f_fstypename' is a member of `struct fsstat'. */
2259#undef HAVE_STRUCT_FSSTAT_F_FSTYPENAME
2260
2261/* Define to 1 if `decimal_point' is a member of `struct lconv'. */
2262#undef HAVE_STRUCT_LCONV_DECIMAL_POINT
2263
2264/* Define to 1 if `n_un.n_name' is a member of `struct nlist'. */
2265#undef HAVE_STRUCT_NLIST_N_UN_N_NAME
2266
2267/* Define to 1 if `sa_sigaction' is a member of `struct sigaction'. */
2268#undef HAVE_STRUCT_SIGACTION_SA_SIGACTION
2269
2270/* Define to 1 if `sa_len' is a member of `struct sockaddr'. */
2271#undef HAVE_STRUCT_SOCKADDR_SA_LEN
2272
2273/* Define to 1 if the system has the type `struct sockaddr_storage'. */
2274#undef HAVE_STRUCT_SOCKADDR_STORAGE
2275
2276/* Define to 1 if `ss_family' is a member of `struct sockaddr_storage'. */
2277#undef HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY
2278
2279/* Define to 1 if `f_frsize' is a member of `struct statfs'. */
2280#undef HAVE_STRUCT_STATFS_F_FRSIZE
2281
2282/* Define to 1 if `f_fstypename' is a member of `struct statfs'. */
2283#undef HAVE_STRUCT_STATFS_F_FSTYPENAME
2284
2285/* Define to 1 if `f_namelen' is a member of `struct statfs'. */
2286#undef HAVE_STRUCT_STATFS_F_NAMELEN
2287
2288/* Define to 1 if `f_namemax' is a member of `struct statfs'. */
2289#undef HAVE_STRUCT_STATFS_F_NAMEMAX
2290
2291/* Define to 1 if `f_type' is a member of `struct statfs'. */
2292#undef HAVE_STRUCT_STATFS_F_TYPE
2293
2294/* Define to 1 if `f_basetype' is a member of `struct statvfs'. */
2295#undef HAVE_STRUCT_STATVFS_F_BASETYPE
2296
2297/* Define to 1 if `f_fstypename' is a member of `struct statvfs'. */
2298#undef HAVE_STRUCT_STATVFS_F_FSTYPENAME
2299
2300/* Define to 1 if `f_namemax' is a member of `struct statvfs'. */
2301#undef HAVE_STRUCT_STATVFS_F_NAMEMAX
2302
2303/* Define to 1 if `f_type' is a member of `struct statvfs'. */
2304#undef HAVE_STRUCT_STATVFS_F_TYPE
2305
2306/* Define to 1 if `st_atimensec' is a member of `struct stat'. */
2307#undef HAVE_STRUCT_STAT_ST_ATIMENSEC
2308
2309/* Define to 1 if `st_atimespec.tv_nsec' is a member of `struct stat'. */
2310#undef HAVE_STRUCT_STAT_ST_ATIMESPEC_TV_NSEC
2311
2312/* Define to 1 if `st_atim.st__tim.tv_nsec' is a member of `struct stat'. */
2313#undef HAVE_STRUCT_STAT_ST_ATIM_ST__TIM_TV_NSEC
2314
2315/* Define to 1 if `st_atim.tv_nsec' is a member of `struct stat'. */
2316#undef HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC
2317
2318/* Define to 1 if `st_author' is a member of `struct stat'. */
2319#undef HAVE_STRUCT_STAT_ST_AUTHOR
2320
2321/* Define to 1 if `st_birthtimensec' is a member of `struct stat'. */
2322#undef HAVE_STRUCT_STAT_ST_BIRTHTIMENSEC
2323
2324/* Define to 1 if `st_birthtimespec.tv_nsec' is a member of `struct stat'. */
2325#undef HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC
2326
2327/* Define to 1 if `st_birthtim.tv_nsec' is a member of `struct stat'. */
2328#undef HAVE_STRUCT_STAT_ST_BIRTHTIM_TV_NSEC
2329
2330/* Define to 1 if `st_blocks' is a member of `struct stat'. */
2331#undef HAVE_STRUCT_STAT_ST_BLOCKS
2332
2333/* Define to 1 if `mem_unit' is a member of `struct sysinfo'. */
2334#undef HAVE_STRUCT_SYSINFO_MEM_UNIT
2335
2336/* Define to 1 if `tm_zone' is a member of `struct tm'. */
2337#undef HAVE_STRUCT_TM_TM_ZONE
2338
2339/* Define to 1 if `ut_exit' is a member of `struct utmpx'. */
2340#undef HAVE_STRUCT_UTMPX_UT_EXIT
2341
2342/* Define to 1 if `ut_exit.e_exit' is a member of `struct utmpx'. */
2343#undef HAVE_STRUCT_UTMPX_UT_EXIT_E_EXIT
2344
2345/* Define to 1 if `ut_exit.e_termination' is a member of `struct utmpx'. */
2346#undef HAVE_STRUCT_UTMPX_UT_EXIT_E_TERMINATION
2347
2348/* Define to 1 if `ut_exit.ut_exit' is a member of `struct utmpx'. */
2349#undef HAVE_STRUCT_UTMPX_UT_EXIT_UT_EXIT
2350
2351/* Define to 1 if `ut_exit.ut_termination' is a member of `struct utmpx'. */
2352#undef HAVE_STRUCT_UTMPX_UT_EXIT_UT_TERMINATION
2353
2354/* Define to 1 if `ut_id' is a member of `struct utmpx'. */
2355#undef HAVE_STRUCT_UTMPX_UT_ID
2356
2357/* Define to 1 if `ut_name' is a member of `struct utmpx'. */
2358#undef HAVE_STRUCT_UTMPX_UT_NAME
2359
2360/* Define to 1 if `ut_pid' is a member of `struct utmpx'. */
2361#undef HAVE_STRUCT_UTMPX_UT_PID
2362
2363/* Define to 1 if `ut_type' is a member of `struct utmpx'. */
2364#undef HAVE_STRUCT_UTMPX_UT_TYPE
2365
2366/* Define to 1 if `ut_user' is a member of `struct utmpx'. */
2367#undef HAVE_STRUCT_UTMPX_UT_USER
2368
2369/* Define to 1 if `ut_exit' is a member of `struct utmp'. */
2370#undef HAVE_STRUCT_UTMP_UT_EXIT
2371
2372/* Define to 1 if `ut_exit.e_exit' is a member of `struct utmp'. */
2373#undef HAVE_STRUCT_UTMP_UT_EXIT_E_EXIT
2374
2375/* Define to 1 if `ut_exit.e_termination' is a member of `struct utmp'. */
2376#undef HAVE_STRUCT_UTMP_UT_EXIT_E_TERMINATION
2377
2378/* Define to 1 if `ut_exit.ut_exit' is a member of `struct utmp'. */
2379#undef HAVE_STRUCT_UTMP_UT_EXIT_UT_EXIT
2380
2381/* Define to 1 if `ut_exit.ut_termination' is a member of `struct utmp'. */
2382#undef HAVE_STRUCT_UTMP_UT_EXIT_UT_TERMINATION
2383
2384/* Define to 1 if `ut_id' is a member of `struct utmp'. */
2385#undef HAVE_STRUCT_UTMP_UT_ID
2386
2387/* Define to 1 if `ut_name' is a member of `struct utmp'. */
2388#undef HAVE_STRUCT_UTMP_UT_NAME
2389
2390/* Define to 1 if `ut_pid' is a member of `struct utmp'. */
2391#undef HAVE_STRUCT_UTMP_UT_PID
2392
2393/* Define to 1 if `ut_type' is a member of `struct utmp'. */
2394#undef HAVE_STRUCT_UTMP_UT_TYPE
2395
2396/* Define to 1 if `ut_user' is a member of `struct utmp'. */
2397#undef HAVE_STRUCT_UTMP_UT_USER
2398
2399/* Define to 1 if the system has the type `struct utsname'. */
2400#undef HAVE_STRUCT_UTSNAME
2401
2402/* Define to 1 if your `struct stat' has `st_blocks'. Deprecated, use
2403   `HAVE_STRUCT_STAT_ST_BLOCKS' instead. */
2404#undef HAVE_ST_BLOCKS
2405
2406/* Define if struct stat has an st_dm_mode member. */
2407#undef HAVE_ST_DM_MODE
2408
2409/* Define to 1 if you have the `symlink' function. */
2410#undef HAVE_SYMLINK
2411
2412/* Define to 1 if you have the `symlinkat' function. */
2413#undef HAVE_SYMLINKAT
2414
2415/* Define to 1 if you have the `sync' function. */
2416#undef HAVE_SYNC
2417
2418/* Define to 1 if you have the `syncfs' function. */
2419#undef HAVE_SYNCFS
2420
2421/* Define to 1 if you have the `sysctl' function. */
2422#undef HAVE_SYSCTL
2423
2424/* Define to 1 if you have the `sysinfo' function. */
2425#undef HAVE_SYSINFO
2426
2427/* FIXME */
2428#undef HAVE_SYSLOG
2429
2430/* Define to 1 if you have the <syslog.h> header file. */
2431#undef HAVE_SYSLOG_H
2432
2433/* Define to 1 if you have the `sysmp' function. */
2434#undef HAVE_SYSMP
2435
2436/* Define to 1 if you have the <sys/acl.h> header file. */
2437#undef HAVE_SYS_ACL_H
2438
2439/* Define to 1 if you have the <sys/bitypes.h> header file. */
2440#undef HAVE_SYS_BITYPES_H
2441
2442/* Define to 1 if you have the <sys/cdefs.h> header file. */
2443#undef HAVE_SYS_CDEFS_H
2444
2445/* Define to 1 if you have the <sys/fs/s5param.h> header file. */
2446#undef HAVE_SYS_FS_S5PARAM_H
2447
2448/* Define to 1 if you have the <sys/fs_types.h> header file. */
2449#undef HAVE_SYS_FS_TYPES_H
2450
2451/* Define to 1 if you have the <sys/inttypes.h> header file. */
2452#undef HAVE_SYS_INTTYPES_H
2453
2454/* Define to 1 if you have the <sys/ioctl.h> header file. */
2455#undef HAVE_SYS_IOCTL_H
2456
2457/* Define to 1 if you have the <sys/loadavg.h> header file. */
2458#undef HAVE_SYS_LOADAVG_H
2459
2460/* Define to 1 if you have the <sys/mman.h> header file. */
2461#undef HAVE_SYS_MMAN_H
2462
2463/* Define to 1 if you have the <sys/mntent.h> header file. */
2464#undef HAVE_SYS_MNTENT_H
2465
2466/* Define to 1 if you have the <sys/mount.h> header file. */
2467#undef HAVE_SYS_MOUNT_H
2468
2469/* Define to 1 if you have the <sys/mtio.h> header file. */
2470#undef HAVE_SYS_MTIO_H
2471
2472/* Define to 1 if you have the <sys/param.h> header file. */
2473#undef HAVE_SYS_PARAM_H
2474
2475/* Define to 1 if you have the <sys/pstat.h> header file. */
2476#undef HAVE_SYS_PSTAT_H
2477
2478/* Define to 1 if you have the <sys/resource.h> header file. */
2479#undef HAVE_SYS_RESOURCE_H
2480
2481/* Define to 1 if you have the <sys/select.h> header file. */
2482#undef HAVE_SYS_SELECT_H
2483
2484/* Define to 1 if you have the <sys/socket.h> header file. */
2485#undef HAVE_SYS_SOCKET_H
2486
2487/* Define to 1 if you have the <sys/statfs.h> header file. */
2488#undef HAVE_SYS_STATFS_H
2489
2490/* Define to 1 if you have the <sys/statvfs.h> header file. */
2491#undef HAVE_SYS_STATVFS_H
2492
2493/* Define to 1 if you have the <sys/stat.h> header file. */
2494#undef HAVE_SYS_STAT_H
2495
2496/* Define to 1 if you have the <sys/sysctl.h> header file. */
2497#undef HAVE_SYS_SYSCTL_H
2498
2499/* Define to 1 if you have the <sys/sysinfo.h> header file. */
2500#undef HAVE_SYS_SYSINFO_H
2501
2502/* Define to 1 if you have the <sys/sysmp.h> header file. */
2503#undef HAVE_SYS_SYSMP_H
2504
2505/* Define to 1 if you have the <sys/systemcfg.h> header file. */
2506#undef HAVE_SYS_SYSTEMCFG_H
2507
2508/* Define to 1 if you have the <sys/systeminfo.h> header file. */
2509#undef HAVE_SYS_SYSTEMINFO_H
2510
2511/* Define to 1 if you have the <sys/table.h> header file. */
2512#undef HAVE_SYS_TABLE_H
2513
2514/* Define to 1 if you have the <sys/time.h> header file. */
2515#undef HAVE_SYS_TIME_H
2516
2517/* Define to 1 if you have the <sys/types.h> header file. */
2518#undef HAVE_SYS_TYPES_H
2519
2520/* Define to 1 if you have the <sys/ucred.h> header file. */
2521#undef HAVE_SYS_UCRED_H
2522
2523/* Define to 1 if you have the <sys/uio.h> header file. */
2524#undef HAVE_SYS_UIO_H
2525
2526/* Define to 1 if you have the <sys/utsname.h> header file. */
2527#undef HAVE_SYS_UTSNAME_H
2528
2529/* Define to 1 if you have the <sys/vfs.h> header file. */
2530#undef HAVE_SYS_VFS_H
2531
2532/* Define to 1 if you have the <sys/wait.h> header file. */
2533#undef HAVE_SYS_WAIT_H
2534
2535/* Define to 1 if you have the `table' function. */
2536#undef HAVE_TABLE
2537
2538/* Define to 1 if the system has the 'tcgetattr' function. */
2539#undef HAVE_TCGETATTR
2540
2541/* Define to 1 if you have the `tcgetpgrp' function. */
2542#undef HAVE_TCGETPGRP
2543
2544/* Define to 1 if the system has the 'tcsetattr' function. */
2545#undef HAVE_TCSETATTR
2546
2547/* Define to 1 if you have the <termios.h> header file. */
2548#undef HAVE_TERMIOS_H
2549
2550/* Define to 1 if you have the `thrd_create' function. */
2551#undef HAVE_THRD_CREATE
2552
2553/* Define to 1 if you have the <threads.h> header file. */
2554#undef HAVE_THREADS_H
2555
2556/* Define to 1 if you have the `timegm' function. */
2557#undef HAVE_TIMEGM
2558
2559/* Define to 1 if you have the `timer_settime' function. */
2560#undef HAVE_TIMER_SETTIME
2561
2562/* Define to 1 if the system has the type `timezone_t'. */
2563#undef HAVE_TIMEZONE_T
2564
2565/* Define if struct tm has the tm_gmtoff member. */
2566#undef HAVE_TM_GMTOFF
2567
2568/* Define to 1 if your `struct tm' has `tm_zone'. Deprecated, use
2569   `HAVE_STRUCT_TM_TM_ZONE' instead. */
2570#undef HAVE_TM_ZONE
2571
2572/* Define to 1 if you have the `towlower' function. */
2573#undef HAVE_TOWLOWER
2574
2575/* Define to 1 if you have the `tsearch' function. */
2576#undef HAVE_TSEARCH
2577
2578/* Define to 1 if you don't have `tm_zone' but do have the external array
2579   `tzname'. */
2580#undef HAVE_TZNAME
2581
2582/* Define to 1 if you have the `tzset' function. */
2583#undef HAVE_TZSET
2584
2585/* Define to 1 if you have the `uname' function. */
2586#undef HAVE_UNAME
2587
2588/* Define to 1 if you have the <unistd.h> header file. */
2589#undef HAVE_UNISTD_H
2590
2591/* Define to 1 if you have the `unlinkat' function. */
2592#undef HAVE_UNLINKAT
2593
2594/* Define to 1 if you have the `unsetenv' function. */
2595#undef HAVE_UNSETENV
2596
2597/* Define to 1 if the system has the type 'unsigned long long int'. */
2598#undef HAVE_UNSIGNED_LONG_LONG_INT
2599
2600/* Define to 1 if you have the `uselocale' function. */
2601#undef HAVE_USELOCALE
2602
2603/* Define to 1 if you have the `usleep' function. */
2604#undef HAVE_USLEEP
2605
2606/* Define to 1 if you have the `utime' function. */
2607#undef HAVE_UTIME
2608
2609/* Define to 1 if you have the `utimensat' function. */
2610#undef HAVE_UTIMENSAT
2611
2612/* Define to 1 if you have the <utime.h> header file. */
2613#undef HAVE_UTIME_H
2614
2615/* Define to 1 if you have the `utmpname' function. */
2616#undef HAVE_UTMPNAME
2617
2618/* Define to 1 if you have the `utmpxname' function. */
2619#undef HAVE_UTMPXNAME
2620
2621/* Define to 1 if you have the <utmpx.h> header file. */
2622#undef HAVE_UTMPX_H
2623
2624/* Define to 1 if you have the <utmp.h> header file. */
2625#undef HAVE_UTMP_H
2626
2627/* FIXME */
2628#undef HAVE_UT_HOST
2629
2630/* Define if you have a global __progname variable */
2631#undef HAVE_VAR___PROGNAME
2632
2633/* Define to 1 if you have the `vasnprintf' function. */
2634#undef HAVE_VASNPRINTF
2635
2636/* Define to 1 if you have the `vasprintf' function. */
2637#undef HAVE_VASPRINTF
2638
2639/* Define to 1 if you have the `vfork' function. */
2640#undef HAVE_VFORK
2641
2642/* Define to 1 if you have the <vfork.h> header file. */
2643#undef HAVE_VFORK_H
2644
2645/* Define to 1 or 0, depending whether the compiler supports simple visibility
2646   declarations. */
2647#undef HAVE_VISIBILITY
2648
2649/* Define to 1 if you have the <wchar.h> header file. */
2650#undef HAVE_WCHAR_H
2651
2652/* Define if you have the 'wchar_t' type. */
2653#undef HAVE_WCHAR_T
2654
2655/* Define to 1 if you have the `wcrtomb' function. */
2656#undef HAVE_WCRTOMB
2657
2658/* Define to 1 if you have the `wcslen' function. */
2659#undef HAVE_WCSLEN
2660
2661/* Define to 1 if you have the `wcsnlen' function. */
2662#undef HAVE_WCSNLEN
2663
2664/* Define to 1 if you have the `wcswidth' function. */
2665#undef HAVE_WCSWIDTH
2666
2667/* Define to 1 if you have the `wctob' function. */
2668#undef HAVE_WCTOB
2669
2670/* Define to 1 if you have the <wctype.h> header file. */
2671#undef HAVE_WCTYPE_H
2672
2673/* Define to 1 if you have the `wcwidth' function. */
2674#undef HAVE_WCWIDTH
2675
2676/* Define to 1 if the compiler and linker support weak declarations of
2677   symbols. */
2678#undef HAVE_WEAK_SYMBOLS
2679
2680/* Define to 1 if you have the <winsock2.h> header file. */
2681#undef HAVE_WINSOCK2_H
2682
2683/* Define if you have the 'wint_t' type. */
2684#undef HAVE_WINT_T
2685
2686/* Define to 1 if you have the `wmemchr' function. */
2687#undef HAVE_WMEMCHR
2688
2689/* Define to 1 if you have the `wmemcpy' function. */
2690#undef HAVE_WMEMCPY
2691
2692/* Define to 1 if you have the `wmempcpy' function. */
2693#undef HAVE_WMEMPCPY
2694
2695/* Define to 1 if `fork' works. */
2696#undef HAVE_WORKING_FORK
2697
2698/* Define to 1 if fstatat (..., 0) works. For example, it does not work in AIX
2699   7.1. */
2700#undef HAVE_WORKING_FSTATAT_ZERO_FLAG
2701
2702/* Define to 1 if O_NOATIME works. */
2703#undef HAVE_WORKING_O_NOATIME
2704
2705/* Define to 1 if O_NOFOLLOW works. */
2706#undef HAVE_WORKING_O_NOFOLLOW
2707
2708/* Define if the uselocale function exists any may safely be called. */
2709#undef HAVE_WORKING_USELOCALE
2710
2711/* Define if utimes works properly. */
2712#undef HAVE_WORKING_UTIMES
2713
2714/* Define to 1 if `vfork' works. */
2715#undef HAVE_WORKING_VFORK
2716
2717/* Define to 1 if you have the <ws2tcpip.h> header file. */
2718#undef HAVE_WS2TCPIP_H
2719
2720/* Define to 1 if you have the <xlocale.h> header file. */
2721#undef HAVE_XLOCALE_H
2722
2723/* Define to 1 if the system has the type `_Bool'. */
2724#undef HAVE__BOOL
2725
2726/* Define to 1 if you have the `_fseeki64' function. */
2727#undef HAVE__FSEEKI64
2728
2729/* Define to 1 if you have the `_ftelli64' function. */
2730#undef HAVE__FTELLI64
2731
2732/* Define to 1 if you have the `_set_invalid_parameter_handler' function. */
2733#undef HAVE__SET_INVALID_PARAMETER_HANDLER
2734
2735/* Define to 1 if you have the external variable, _system_configuration with a
2736   member named physmem. */
2737#undef HAVE__SYSTEM_CONFIGURATION
2738
2739/* Define to 1 if the compiler supports __builtin_expect,
2740   and to 2 if <builtins.h> does.  */
2741#undef HAVE___BUILTIN_EXPECT
2742#ifndef HAVE___BUILTIN_EXPECT
2743# define __builtin_expect(e, c) (e)
2744#elif HAVE___BUILTIN_EXPECT == 2
2745# include <builtins.h>
2746#endif
2747
2748
2749/* Define to 1 if you have the `__fpurge' function. */
2750#undef HAVE___FPURGE
2751
2752/* Define to 1 if you have the `__freadahead' function. */
2753#undef HAVE___FREADAHEAD
2754
2755/* Define to 1 if you have the `__freading' function. */
2756#undef HAVE___FREADING
2757
2758/* Define to 1 if you have the `__freadptr' function. */
2759#undef HAVE___FREADPTR
2760
2761/* Define to 1 if you have the `__freadptrinc' function. */
2762#undef HAVE___FREADPTRINC
2763
2764/* Define to 1 if you have the `__fseterr' function. */
2765#undef HAVE___FSETERR
2766
2767/* Define to 1 if you have the `__fsetlocking' function. */
2768#undef HAVE___FSETLOCKING
2769
2770/* Define to 1 if the system has the type `__fsword_t'. */
2771#undef HAVE___FSWORD_T
2772
2773/* Define to 1 if the compiler supports the keyword '__inline'. */
2774#undef HAVE___INLINE
2775
2776/* Define to 1 if you have the `__secure_getenv' function. */
2777#undef HAVE___SECURE_GETENV
2778
2779/* Define to 1 if you have the `__xpg_strerror_r' function. */
2780#undef HAVE___XPG_STRERROR_R
2781
2782/* Define HOST_NAME_MAX when <limits.h> does not define it. */
2783#undef HOST_NAME_MAX
2784
2785/* The host operating system. */
2786#undef HOST_OPERATING_SYSTEM
2787
2788/* Define as const if the declaration of iconv() needs const. */
2789#undef ICONV_CONST
2790
2791/* Define to a symbolic name denoting the flavor of iconv_open()
2792   implementation. */
2793#undef ICONV_FLAVOR
2794
2795/* Define as the bit index in the word where to find bit 0 of the exponent of
2796   'long double'. */
2797#undef LDBL_EXPBIT0_BIT
2798
2799/* Define as the word index where to find the exponent of 'long double'. */
2800#undef LDBL_EXPBIT0_WORD
2801
2802/* Define as the bit index in the word where to find the sign of 'long
2803   double'. */
2804#undef LDBL_SIGNBIT_BIT
2805
2806/* Define as the word index where to find the sign of 'long double'. */
2807#undef LDBL_SIGNBIT_WORD
2808
2809/* Define to 1 if linkat can create hardlinks to symlinks */
2810#undef LINKAT_SYMLINK_NOTSUP
2811
2812/* Define to 1 if linkat fails to recognize a trailing slash. */
2813#undef LINKAT_TRAILING_SLASH_BUG
2814
2815/* Define to 1 if 'link(2)' dereferences symbolic links, 0 if it creates hard
2816   links to symlinks, -1 if it depends on the variable __xpg4, and -2 if
2817   unknown. */
2818#undef LINK_FOLLOWS_SYMLINKS
2819
2820/* FIXME */
2821#undef LOCALTIME_CACHE
2822
2823/* Define to 1 if lseek does not detect pipes. */
2824#undef LSEEK_PIPE_BROKEN
2825
2826/* Define to 1 if 'lstat' dereferences a symlink specified with a trailing
2827   slash. */
2828#undef LSTAT_FOLLOWS_SLASHED_SYMLINK
2829
2830/* Define to 1 if `major', `minor', and `makedev' are declared in <mkdev.h>.
2831   */
2832#undef MAJOR_IN_MKDEV
2833
2834/* Define to 1 if `major', `minor', and `makedev' are declared in
2835   <sysmacros.h>. */
2836#undef MAJOR_IN_SYSMACROS
2837
2838/* If malloc(0) is != NULL, define this to 1. Otherwise define this to 0. */
2839#undef MALLOC_0_IS_NONNULL
2840
2841/* Define to a substitute value for mmap()'s MAP_ANONYMOUS flag. */
2842#undef MAP_ANONYMOUS
2843
2844/* Define if the mbrtowc function does not return (size_t) -2 for empty input.
2845   */
2846#undef MBRTOWC_EMPTY_INPUT_BUG
2847
2848/* Define if the mbrtowc function may signal encoding errors in the C locale.
2849   */
2850#undef MBRTOWC_IN_C_LOCALE_MAYBE_EILSEQ
2851
2852/* Define if the mbrtowc function has the NULL pwc argument bug. */
2853#undef MBRTOWC_NULL_ARG1_BUG
2854
2855/* Define if the mbrtowc function has the NULL string argument bug. */
2856#undef MBRTOWC_NULL_ARG2_BUG
2857
2858/* Define if the mbrtowc function does not return 0 for a NUL character. */
2859#undef MBRTOWC_NUL_RETVAL_BUG
2860
2861/* Define if the mbrtowc function returns a wrong return value. */
2862#undef MBRTOWC_RETVAL_BUG
2863
2864/* Define if the mbrtowc function stores a wide character when reporting
2865   incomplete input. */
2866#undef MBRTOWC_STORES_INCOMPLETE_BUG
2867
2868/* Use GNU style printf and scanf.  */
2869#ifndef __USE_MINGW_ANSI_STDIO
2870# undef __USE_MINGW_ANSI_STDIO
2871#endif
2872
2873
2874/* Define to 1 if mkfifo does not reject trailing slash */
2875#undef MKFIFO_TRAILING_SLASH_BUG
2876
2877/* Define to 1 if mknod cannot create a fifo without super-user privileges */
2878#undef MKNOD_FIFO_BUG
2879
2880/* Define if (like SVR2) there is no specific function for reading the list of
2881   mounted file systems, and your system has these header files: <sys/fstyp.h>
2882   and <sys/statfs.h>. (SVR3) */
2883#undef MOUNTED_FREAD_FSTYP
2884
2885/* Define if there are functions named next_dev and fs_stat_dev for reading
2886   the list of mounted file systems. (BeOS) */
2887#undef MOUNTED_FS_STAT_DEV
2888
2889/* Define if there is a function named getextmntent for reading the list of
2890   mounted file systems. (Solaris) */
2891#undef MOUNTED_GETEXTMNTENT
2892
2893/* Define if there is a function named getfsstat for reading the list of
2894   mounted file systems. (DEC Alpha running OSF/1) */
2895#undef MOUNTED_GETFSSTAT
2896
2897/* Define if there is a function named getmntent for reading the list of
2898   mounted file systems, and that function takes a single argument. (4.3BSD,
2899   SunOS, HP-UX, Irix) */
2900#undef MOUNTED_GETMNTENT1
2901
2902/* Define if there is a function named getmntent for reading the list of
2903   mounted file systems, and that function takes two arguments. (SVR4) */
2904#undef MOUNTED_GETMNTENT2
2905
2906/* Define if there is a function named getmntinfo for reading the list of
2907   mounted file systems and it returns an array of 'struct statfs'. (4.4BSD,
2908   Darwin) */
2909#undef MOUNTED_GETMNTINFO
2910
2911/* Define if there is a function named getmntinfo for reading the list of
2912   mounted file systems and it returns an array of 'struct statvfs'. (NetBSD
2913   3.0) */
2914#undef MOUNTED_GETMNTINFO2
2915
2916/* Define if we are on interix, and ought to use statvfs plus some special
2917   knowledge on where mounted file systems can be found. (Interix) */
2918#undef MOUNTED_INTERIX_STATVFS
2919
2920/* Define if there is a function named mntctl that can be used to read the
2921   list of mounted file systems, and there is a system header file that
2922   declares 'struct vmount'. (AIX) */
2923#undef MOUNTED_VMOUNT
2924
2925/* Define to 1 on musl libc. */
2926#undef MUSL_LIBC
2927
2928/* Define to 1 if assertions should be disabled. */
2929#undef NDEBUG
2930
2931/* Define to 1 if fchmodat+AT_SYMLINK_NOFOLLOW does not work right on
2932   non-symlinks. */
2933#undef NEED_FCHMODAT_NONSYMLINK_FIX
2934
2935/* Define if the compilation of mktime.c should define 'mktime_internal'. */
2936#undef NEED_MKTIME_INTERNAL
2937
2938/* Define if the compilation of mktime.c should define 'mktime' with the
2939   native Windows TZ workaround. */
2940#undef NEED_MKTIME_WINDOWS
2941
2942/* Define if the compilation of mktime.c should define 'mktime' with the
2943   algorithmic workarounds. */
2944#undef NEED_MKTIME_WORKING
2945
2946/* Define if the vasnprintf implementation needs special code for the 'a' and
2947   'A' directives. */
2948#undef NEED_PRINTF_DIRECTIVE_A
2949
2950/* Define if the vasnprintf implementation needs special code for the 'F'
2951   directive. */
2952#undef NEED_PRINTF_DIRECTIVE_F
2953
2954/* Define if the vasnprintf implementation needs special code for the 'ls'
2955   directive. */
2956#undef NEED_PRINTF_DIRECTIVE_LS
2957
2958/* Define if the vasnprintf implementation needs special code for 'double'
2959   arguments. */
2960#undef NEED_PRINTF_DOUBLE
2961
2962/* Define if the vasnprintf implementation needs special code for surviving
2963   out-of-memory conditions. */
2964#undef NEED_PRINTF_ENOMEM
2965
2966/* Define if the vasnprintf implementation needs special code for the ' flag.
2967   */
2968#undef NEED_PRINTF_FLAG_GROUPING
2969
2970/* Define if the vasnprintf implementation needs special code for the '-'
2971   flag. */
2972#undef NEED_PRINTF_FLAG_LEFTADJUST
2973
2974/* Define if the vasnprintf implementation needs special code for the 0 flag.
2975   */
2976#undef NEED_PRINTF_FLAG_ZERO
2977
2978/* Define if the vasnprintf implementation needs special code for infinite
2979   'double' arguments. */
2980#undef NEED_PRINTF_INFINITE_DOUBLE
2981
2982/* Define if the vasnprintf implementation needs special code for infinite
2983   'long double' arguments. */
2984#undef NEED_PRINTF_INFINITE_LONG_DOUBLE
2985
2986/* Define if the vasnprintf implementation needs special code for 'long
2987   double' arguments. */
2988#undef NEED_PRINTF_LONG_DOUBLE
2989
2990/* Define if the vasnprintf implementation needs special code for supporting
2991   large precisions without arbitrary bounds. */
2992#undef NEED_PRINTF_UNBOUNDED_PRECISION
2993
2994/* Define to 1 to enable general improvements of setlocale. */
2995#undef NEED_SETLOCALE_IMPROVED
2996
2997/* Define to 1 to enable a multithread-safety fix of setlocale. */
2998#undef NEED_SETLOCALE_MTSAFE
2999
3000/* Define to 1 if the nlist n_name member is a pointer */
3001#undef N_NAME_POINTER
3002
3003/* Define to 1 if open() fails to recognize a trailing slash. */
3004#undef OPEN_TRAILING_SLASH_BUG
3005
3006/* Name of package */
3007#undef PACKAGE
3008
3009/* Define to the address where bug reports for this package should be sent. */
3010#undef PACKAGE_BUGREPORT
3011
3012/* Define to the full name of this package. */
3013#undef PACKAGE_NAME
3014
3015/* String identifying the packager of this software */
3016#undef PACKAGE_PACKAGER
3017
3018/* Packager info for bug reports (URL/e-mail/...) */
3019#undef PACKAGE_PACKAGER_BUG_REPORTS
3020
3021/* Packager-specific version information */
3022#undef PACKAGE_PACKAGER_VERSION
3023
3024/* Define to the full name and version of this package. */
3025#undef PACKAGE_STRING
3026
3027/* Define to the one symbol short name of this package. */
3028#undef PACKAGE_TARNAME
3029
3030/* Define to the home page for this package. */
3031#undef PACKAGE_URL
3032
3033/* Define to the version of this package. */
3034#undef PACKAGE_VERSION
3035
3036/* Define to the maximum link count that a true pipe can have. */
3037#undef PIPE_LINK_COUNT_MAX
3038
3039/* Define this if you prefer euidaccess to return the correct result even if
3040   this would make it nonreentrant. Define this only if your entire
3041   application is safe even if the uid or gid might temporarily change. If
3042   your application uses signal handlers or threads it is probably not safe.
3043   */
3044#undef PREFER_NONREENTRANT_EUIDACCESS
3045
3046/* Define if <inttypes.h> exists and defines unusable PRI* macros. */
3047#undef PRI_MACROS_BROKEN
3048
3049/* Define to the type that is the result of default argument promotions of
3050   type mode_t. */
3051#undef PROMOTED_MODE_T
3052
3053/* Define if pthread_create is an inline function. */
3054#undef PTHREAD_CREATE_IS_INLINE
3055
3056/* Define if the pthread_in_use() detection is hard. */
3057#undef PTHREAD_IN_USE_DETECTION_HARD
3058
3059/* Define if the 'robust' attribute of pthread_mutex* doesn't exist. */
3060#undef PTHREAD_MUTEXATTR_ROBUST_UNIMPLEMENTED
3061
3062/* Define to 1 if pthread_sigmask(), when it fails, returns -1 and sets errno.
3063   */
3064#undef PTHREAD_SIGMASK_FAILS_WITH_ERRNO
3065
3066/* Define to 1 if pthread_sigmask may return 0 and have no effect. */
3067#undef PTHREAD_SIGMASK_INEFFECTIVE
3068
3069/* Define to 1 if pthread_sigmask() unblocks signals incorrectly. */
3070#undef PTHREAD_SIGMASK_UNBLOCK_BUG
3071
3072/* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
3073   'ptrdiff_t'. */
3074#undef PTRDIFF_T_SUFFIX
3075
3076/* Define to 1 if readlink fails to recognize a trailing slash. */
3077#undef READLINK_TRAILING_SLASH_BUG
3078
3079/* Define if rename does not work when the destination file exists, as on
3080   Cygwin 1.5 or Windows. */
3081#undef RENAME_DEST_EXISTS_BUG
3082
3083/* Define if rename fails to leave hard links alone, as on NetBSD 1.6 or
3084   Cygwin 1.5. */
3085#undef RENAME_HARD_LINK_BUG
3086
3087/* Define if rename does not correctly handle slashes on the destination
3088   argument, such as on Solaris 11 or NetBSD 1.6. */
3089#undef RENAME_TRAILING_SLASH_DEST_BUG
3090
3091/* Define if rename does not correctly handle slashes on the source argument,
3092   such as on Solaris 9 or cygwin 1.5. */
3093#undef RENAME_TRAILING_SLASH_SOURCE_BUG
3094
3095/* Define to 1 if gnulib's dirfd() replacement is used. */
3096#undef REPLACE_DIRFD
3097
3098/* Define to 1 if gnulib's fchdir() replacement is used. */
3099#undef REPLACE_FCHDIR
3100
3101/* Define to 1 if stat needs help when passed a file name with a trailing
3102   slash */
3103#undef REPLACE_FUNC_STAT_FILE
3104
3105/* Define if nl_langinfo exists but is overridden by gnulib. */
3106#undef REPLACE_NL_LANGINFO
3107
3108/* Define to 1 if open() should work around the inability to open a directory.
3109   */
3110#undef REPLACE_OPEN_DIRECTORY
3111
3112/* Define to 1 if strerror(0) does not return a message implying success. */
3113#undef REPLACE_STRERROR_0
3114
3115/* Define if vasnprintf exists but is overridden by gnulib. */
3116#undef REPLACE_VASNPRINTF
3117
3118/* Define if vfprintf is overridden by a POSIX compliant gnulib
3119   implementation. */
3120#undef REPLACE_VFPRINTF_POSIX
3121
3122/* Define if vprintf is overridden by a POSIX compliant gnulib implementation.
3123   */
3124#undef REPLACE_VPRINTF_POSIX
3125
3126/* Define to 1 if setlocale (LC_ALL, NULL) is multithread-safe. */
3127#undef SETLOCALE_NULL_ALL_MTSAFE
3128
3129/* Define to 1 if setlocale (category, NULL) is multithread-safe. */
3130#undef SETLOCALE_NULL_ONE_MTSAFE
3131
3132/* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
3133   'sig_atomic_t'. */
3134#undef SIG_ATOMIC_T_SUFFIX
3135
3136/* Define as the maximum value of type 'size_t', if the system doesn't define
3137   it. */
3138#ifndef SIZE_MAX
3139# undef SIZE_MAX
3140#endif
3141
3142/* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
3143   'size_t'. */
3144#undef SIZE_T_SUFFIX
3145
3146/* If using the C implementation of alloca, define if you know the
3147   direction of stack growth for your system; otherwise it will be
3148   automatically deduced at runtime.
3149	STACK_DIRECTION > 0 => grows toward higher addresses
3150	STACK_DIRECTION < 0 => grows toward lower addresses
3151	STACK_DIRECTION = 0 => direction of growth unknown */
3152#undef STACK_DIRECTION
3153
3154/* Define if the block counts reported by statfs may be truncated to 2GB and
3155   the correct values may be stored in the f_spare array. (SunOS 4.1.2, 4.1.3,
3156   and 4.1.3_U1 are reported to have this problem. SunOS 4.1.1 seems not to be
3157   affected.) */
3158#undef STATFS_TRUNCATES_BLOCK_COUNTS
3159
3160/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
3161#undef STAT_MACROS_BROKEN
3162
3163/* Define if statfs takes 2 args and struct statfs has a field named f_bsize.
3164   (4.3BSD, SunOS 4, HP-UX) */
3165#undef STAT_STATFS2_BSIZE
3166
3167/* Define if statfs takes 2 args and struct statfs has a field named f_frsize.
3168   (glibc/Linux > 2.6) */
3169#undef STAT_STATFS2_FRSIZE
3170
3171/* Define if statfs takes 2 args and struct statfs has a field named f_fsize.
3172   (4.4BSD, NetBSD) */
3173#undef STAT_STATFS2_FSIZE
3174
3175/* Define if statfs takes 3 args. (DEC Alpha running OSF/1) */
3176#undef STAT_STATFS3_OSF1
3177
3178/* Define if statfs takes 4 args. (SVR3, old Irix) */
3179#undef STAT_STATFS4
3180
3181/* Define if there is a function named statvfs. (SVR4) */
3182#undef STAT_STATVFS
3183
3184/* Define if statvfs64 should be preferred over statvfs. */
3185#undef STAT_STATVFS64
3186
3187/* Define to 1 if you have the ANSI C header files. */
3188#undef STDC_HEADERS
3189
3190/* Define to 1 if strerror_r returns char *. */
3191#undef STRERROR_R_CHAR_P
3192
3193/* Define to 1 if strtold does not set errno upon underflow. */
3194#undef STRTOLD_HAS_UNDERFLOW_BUG
3195
3196/* Define to 1 if the f_fsid member of struct statfs is an integer. */
3197#undef STRUCT_STATFS_F_FSID_IS_INTEGER
3198
3199/* Define to 1 if the f_fsid member of struct statvfs is an integer. */
3200#undef STRUCT_STATVFS_F_FSID_IS_INTEGER
3201
3202/* Define to 1 on System V Release 4. */
3203#undef SVR4
3204
3205/* FIXME */
3206#undef TERMIOS_NEEDS_XOPEN_SOURCE
3207
3208/* Define to 1 if time_t is signed. */
3209#undef TIME_T_IS_SIGNED
3210
3211/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
3212#undef TIME_WITH_SYS_TIME
3213
3214/* Define to 1 if your <sys/time.h> declares `struct tm'. */
3215#undef TM_IN_SYS_TIME
3216
3217/* group used by system for TTYs */
3218#undef TTY_GROUP_NAME
3219
3220/* Define to 1 if the type of the st_atim member of a struct stat is struct
3221   timespec. */
3222#undef TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC
3223
3224/* Define if tzset clobbers localtime's static buffer. */
3225#undef TZSET_CLOBBERS_LOCALTIME
3226
3227/* Define to 1 for Encore UMAX. */
3228#undef UMAX
3229
3230/* Define to 1 for Encore UMAX 4.3 that has <inq_status/cpustats.h> instead of
3231   <sys/cpustats.h>. */
3232#undef UMAX4_3
3233
3234/* Define to 1 if unlink (dir) cannot possibly succeed. */
3235#undef UNLINK_CANNOT_UNLINK_DIR
3236
3237/* Define to 1 if unlink() on a parent directory may succeed */
3238#undef UNLINK_PARENT_BUG
3239
3240/* Define to nonzero if you want access control list support. */
3241#undef USE_ACL
3242
3243/* Define if the combination of the ISO C and POSIX multithreading APIs can be
3244   used. */
3245#undef USE_ISOC_AND_POSIX_THREADS
3246
3247/* Define if the ISO C multithreading library can be used. */
3248#undef USE_ISOC_THREADS
3249
3250/* Define to 1 if you want to use the Linux kernel cryptographic API. */
3251#undef USE_LINUX_CRYPTO_API
3252
3253/* Define if the POSIX multithreading library can be used. */
3254#undef USE_POSIX_THREADS
3255
3256/* Define if references to the POSIX multithreading library should be made
3257   weak. */
3258#undef USE_POSIX_THREADS_WEAK
3259
3260/* Enable extensions on AIX 3, Interix.  */
3261#ifndef _ALL_SOURCE
3262# undef _ALL_SOURCE
3263#endif
3264/* Enable general extensions on macOS.  */
3265#ifndef _DARWIN_C_SOURCE
3266# undef _DARWIN_C_SOURCE
3267#endif
3268/* Enable GNU extensions on systems that have them.  */
3269#ifndef _GNU_SOURCE
3270# undef _GNU_SOURCE
3271#endif
3272/* Enable NetBSD extensions on NetBSD.  */
3273#ifndef _NETBSD_SOURCE
3274# undef _NETBSD_SOURCE
3275#endif
3276/* Enable OpenBSD extensions on NetBSD.  */
3277#ifndef _OPENBSD_SOURCE
3278# undef _OPENBSD_SOURCE
3279#endif
3280/* Enable threading extensions on Solaris.  */
3281#ifndef _POSIX_PTHREAD_SEMANTICS
3282# undef _POSIX_PTHREAD_SEMANTICS
3283#endif
3284/* Enable extensions specified by ISO/IEC TS 18661-5:2014.  */
3285#ifndef __STDC_WANT_IEC_60559_ATTRIBS_EXT__
3286# undef __STDC_WANT_IEC_60559_ATTRIBS_EXT__
3287#endif
3288/* Enable extensions specified by ISO/IEC TS 18661-1:2014.  */
3289#ifndef __STDC_WANT_IEC_60559_BFP_EXT__
3290# undef __STDC_WANT_IEC_60559_BFP_EXT__
3291#endif
3292/* Enable extensions specified by ISO/IEC TS 18661-2:2015.  */
3293#ifndef __STDC_WANT_IEC_60559_DFP_EXT__
3294# undef __STDC_WANT_IEC_60559_DFP_EXT__
3295#endif
3296/* Enable extensions specified by ISO/IEC TS 18661-4:2015.  */
3297#ifndef __STDC_WANT_IEC_60559_FUNCS_EXT__
3298# undef __STDC_WANT_IEC_60559_FUNCS_EXT__
3299#endif
3300/* Enable extensions specified by ISO/IEC TS 18661-3:2015.  */
3301#ifndef __STDC_WANT_IEC_60559_TYPES_EXT__
3302# undef __STDC_WANT_IEC_60559_TYPES_EXT__
3303#endif
3304/* Enable extensions specified by ISO/IEC TR 24731-2:2010.  */
3305#ifndef __STDC_WANT_LIB_EXT2__
3306# undef __STDC_WANT_LIB_EXT2__
3307#endif
3308/* Enable extensions specified by ISO/IEC 24747:2009.  */
3309#ifndef __STDC_WANT_MATH_SPEC_FUNCS__
3310# undef __STDC_WANT_MATH_SPEC_FUNCS__
3311#endif
3312/* Enable extensions on HP NonStop.  */
3313#ifndef _TANDEM_SOURCE
3314# undef _TANDEM_SOURCE
3315#endif
3316/* Enable X/Open extensions if necessary.  HP-UX 11.11 defines
3317   mbstate_t only if _XOPEN_SOURCE is defined to 500, regardless of
3318   whether compiling with -Ae or -D_HPUX_SOURCE=1.  */
3319#ifndef _XOPEN_SOURCE
3320# undef _XOPEN_SOURCE
3321#endif
3322/* Enable X/Open compliant socket functions that do not require linking
3323   with -lxnet on HP-UX 11.11.  */
3324#ifndef _HPUX_ALT_XOPEN_SOCKET_API
3325# undef _HPUX_ALT_XOPEN_SOCKET_API
3326#endif
3327/* Enable general extensions on Solaris.  */
3328#ifndef __EXTENSIONS__
3329# undef __EXTENSIONS__
3330#endif
3331
3332
3333/* Define to 1 if you want getc etc. to use unlocked I/O if available.
3334   Unlocked I/O can improve performance in unithreaded apps, but it is not
3335   safe for multithreaded apps. */
3336#undef USE_UNLOCKED_IO
3337
3338/* Define if the native Windows multithreading API can be used. */
3339#undef USE_WINDOWS_THREADS
3340
3341/* Define if you want extended attribute support. */
3342#undef USE_XATTR
3343
3344/* Version number of package */
3345#undef VERSION
3346
3347/* Define to 1 if unsetenv returns void instead of int. */
3348#undef VOID_UNSETENV
3349
3350/* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
3351   'wchar_t'. */
3352#undef WCHAR_T_SUFFIX
3353
3354/* Define if the wcrtomb function does not work in the C locale. */
3355#undef WCRTOMB_C_LOCALE_BUG
3356
3357/* Define if the wcrtomb function has an incorrect return value. */
3358#undef WCRTOMB_RETVAL_BUG
3359
3360/* Define if WSAStartup is needed. */
3361#undef WINDOWS_SOCKETS
3362
3363/* Define if sys/ptem.h is required for struct winsize. */
3364#undef WINSIZE_IN_PTEM
3365
3366/* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
3367   'wint_t'. */
3368#undef WINT_T_SUFFIX
3369
3370/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
3371   significant byte first (like Motorola and SPARC, unlike Intel). */
3372#if defined AC_APPLE_UNIVERSAL_BUILD
3373# if defined __BIG_ENDIAN__
3374#  define WORDS_BIGENDIAN 1
3375# endif
3376#else
3377# ifndef WORDS_BIGENDIAN
3378#  undef WORDS_BIGENDIAN
3379# endif
3380#endif
3381
3382/* Number of bits in a file offset, on hosts where this is settable. */
3383#undef _FILE_OFFSET_BITS
3384
3385/* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */
3386#undef _LARGEFILE_SOURCE
3387
3388/* Define for large files, on AIX-style hosts. */
3389#undef _LARGE_FILES
3390
3391/* Define to 1 on Solaris. */
3392#undef _LCONV_C99
3393
3394/* Define to 1 if on MINIX. */
3395#undef _MINIX
3396
3397/* Define to 1 to make NetBSD features available. MINIX 3 needs this. */
3398#undef _NETBSD_SOURCE
3399
3400/* The _Noreturn keyword of C11.  */
3401#ifndef _Noreturn
3402# if (defined __cplusplus \
3403      && ((201103 <= __cplusplus && !(__GNUC__ == 4 && __GNUC_MINOR__ == 7)) \
3404          || (defined _MSC_VER && 1900 <= _MSC_VER)) \
3405      && 0)
3406    /* [[noreturn]] is not practically usable, because with it the syntax
3407         extern _Noreturn void func (...);
3408       would not be valid; such a declaration would only be valid with 'extern'
3409       and '_Noreturn' swapped, or without the 'extern' keyword.  However, some
3410       AIX system header files and several gnulib header files use precisely
3411       this syntax with 'extern'.  */
3412#  define _Noreturn [[noreturn]]
3413# elif ((!defined __cplusplus || defined __clang__) \
3414        && (201112 <= (defined __STDC_VERSION__ ? __STDC_VERSION__ : 0)  \
3415            || 4 < __GNUC__ + (7 <= __GNUC_MINOR__) \
3416            || (defined __apple_build_version__ \
3417                ? 6000000 <= __apple_build_version__ \
3418                : 3 < __clang_major__ + (5 <= __clang_minor__))))
3419   /* _Noreturn works as-is.  */
3420# elif 2 < __GNUC__ + (8 <= __GNUC_MINOR__) || 0x5110 <= __SUNPRO_C
3421#  define _Noreturn __attribute__ ((__noreturn__))
3422# elif 1200 <= (defined _MSC_VER ? _MSC_VER : 0)
3423#  define _Noreturn __declspec (noreturn)
3424# else
3425#  define _Noreturn
3426# endif
3427#endif
3428
3429
3430/* Define to 2 if the system does not provide POSIX.1 features except with
3431   this defined. */
3432#undef _POSIX_1_SOURCE
3433
3434/* Define to 1 in order to get the POSIX compatible declarations of socket
3435   functions. */
3436#undef _POSIX_PII_SOCKET
3437
3438/* Define to 1 if you need to in order for 'stat' and other things to work. */
3439#undef _POSIX_SOURCE
3440
3441/* Define if you want <regex.h> to include <limits.h>, so that it consistently
3442   overrides <limits.h>'s RE_DUP_MAX. */
3443#undef _REGEX_INCLUDE_LIMITS_H
3444
3445/* Define if you want regoff_t to be at least as wide POSIX requires. */
3446#undef _REGEX_LARGE_OFFSETS
3447
3448/* For standard stat data types on VMS. */
3449#undef _USE_STD_STAT
3450
3451/* Define to rpl_ if the getopt replacement functions and variables should be
3452   used. */
3453#undef __GETOPT_PREFIX
3454
3455/* For 64-bit time_t on 32-bit mingw. */
3456#undef __MINGW_USE_VC2005_COMPAT
3457
3458/* Define to 1 if the system <stdint.h> predates C++11. */
3459#undef __STDC_CONSTANT_MACROS
3460
3461/* Define to 1 if the system <stdint.h> predates C++11. */
3462#undef __STDC_LIMIT_MACROS
3463
3464/* The _GL_ASYNC_SAFE marker should be attached to functions that are
3465   signal handlers (for signals other than SIGABRT, SIGPIPE) or can be
3466   invoked from such signal handlers.  Such functions have some restrictions:
3467     * All functions that it calls should be marked _GL_ASYNC_SAFE as well,
3468       or should be listed as async-signal-safe in POSIX
3469       <https://pubs.opengroup.org/onlinepubs/9699919799/functions/V2_chap02.html#tag_15_04>
3470       section 2.4.3.  Note that malloc(), sprintf(), and fwrite(), in
3471       particular, are NOT async-signal-safe.
3472     * All memory locations (variables and struct fields) that these functions
3473       access must be marked 'volatile'.  This holds for both read and write
3474       accesses.  Otherwise the compiler might optimize away stores to and
3475       reads from such locations that occur in the program, depending on its
3476       data flow analysis.  For example, when the program contains a loop
3477       that is intended to inspect a variable set from within a signal handler
3478           while (!signal_occurred)
3479             ;
3480       the compiler is allowed to transform this into an endless loop if the
3481       variable 'signal_occurred' is not declared 'volatile'.
3482   Additionally, recall that:
3483     * A signal handler should not modify errno (except if it is a handler
3484       for a fatal signal and ends by raising the same signal again, thus
3485       provoking the termination of the process).  If it invokes a function
3486       that may clobber errno, it needs to save and restore the value of
3487       errno.  */
3488#define _GL_ASYNC_SAFE
3489
3490
3491/* Please see the Gnulib manual for how to use these macros.
3492
3493   Suppress extern inline with HP-UX cc, as it appears to be broken; see
3494   <https://lists.gnu.org/r/bug-texinfo/2013-02/msg00030.html>.
3495
3496   Suppress extern inline with Sun C in standards-conformance mode, as it
3497   mishandles inline functions that call each other.  E.g., for 'inline void f
3498   (void) { } inline void g (void) { f (); }', c99 incorrectly complains
3499   'reference to static identifier "f" in extern inline function'.
3500   This bug was observed with Sun C 5.12 SunOS_i386 2011/11/16.
3501
3502   Suppress extern inline (with or without __attribute__ ((__gnu_inline__)))
3503   on configurations that mistakenly use 'static inline' to implement
3504   functions or macros in standard C headers like <ctype.h>.  For example,
3505   if isdigit is mistakenly implemented via a static inline function,
3506   a program containing an extern inline function that calls isdigit
3507   may not work since the C standard prohibits extern inline functions
3508   from calling static functions (ISO C 99 section 6.7.4.(3).
3509   This bug is known to occur on:
3510
3511     OS X 10.8 and earlier; see:
3512     https://lists.gnu.org/r/bug-gnulib/2012-12/msg00023.html
3513
3514     DragonFly; see
3515     http://muscles.dragonflybsd.org/bulk/clang-master-potential/20141111_102002/logs/ah-tty-0.3.12.log
3516
3517     FreeBSD; see:
3518     https://lists.gnu.org/r/bug-gnulib/2014-07/msg00104.html
3519
3520   OS X 10.9 has a macro __header_inline indicating the bug is fixed for C and
3521   for clang but remains for g++; see <https://trac.macports.org/ticket/41033>.
3522   Assume DragonFly and FreeBSD will be similar.
3523
3524   GCC 4.3 and above with -std=c99 or -std=gnu99 implements ISO C99
3525   inline semantics, unless -fgnu89-inline is used.  It defines a macro
3526   __GNUC_STDC_INLINE__ to indicate this situation or a macro
3527   __GNUC_GNU_INLINE__ to indicate the opposite situation.
3528   GCC 4.2 with -std=c99 or -std=gnu99 implements the GNU C inline
3529   semantics but warns, unless -fgnu89-inline is used:
3530     warning: C99 inline functions are not supported; using GNU89
3531     warning: to disable this warning use -fgnu89-inline or the gnu_inline function attribute
3532   It defines a macro __GNUC_GNU_INLINE__ to indicate this situation.
3533 */
3534#if (((defined __APPLE__ && defined __MACH__) \
3535      || defined __DragonFly__ || defined __FreeBSD__) \
3536     && (defined __header_inline \
3537         ? (defined __cplusplus && defined __GNUC_STDC_INLINE__ \
3538            && ! defined __clang__) \
3539         : ((! defined _DONT_USE_CTYPE_INLINE_ \
3540             && (defined __GNUC__ || defined __cplusplus)) \
3541            || (defined _FORTIFY_SOURCE && 0 < _FORTIFY_SOURCE \
3542                && defined __GNUC__ && ! defined __cplusplus))))
3543# define _GL_EXTERN_INLINE_STDHEADER_BUG
3544#endif
3545#if ((__GNUC__ \
3546      ? defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ \
3547      : (199901L <= __STDC_VERSION__ \
3548         && !defined __HP_cc \
3549         && !defined __PGI \
3550         && !(defined __SUNPRO_C && __STDC__))) \
3551     && !defined _GL_EXTERN_INLINE_STDHEADER_BUG)
3552# define _GL_INLINE inline
3553# define _GL_EXTERN_INLINE extern inline
3554# define _GL_EXTERN_INLINE_IN_USE
3555#elif (2 < __GNUC__ + (7 <= __GNUC_MINOR__) && !defined __STRICT_ANSI__ \
3556       && !defined _GL_EXTERN_INLINE_STDHEADER_BUG)
3557# if defined __GNUC_GNU_INLINE__ && __GNUC_GNU_INLINE__
3558   /* __gnu_inline__ suppresses a GCC 4.2 diagnostic.  */
3559#  define _GL_INLINE extern inline __attribute__ ((__gnu_inline__))
3560# else
3561#  define _GL_INLINE extern inline
3562# endif
3563# define _GL_EXTERN_INLINE extern
3564# define _GL_EXTERN_INLINE_IN_USE
3565#else
3566# define _GL_INLINE static _GL_UNUSED
3567# define _GL_EXTERN_INLINE static _GL_UNUSED
3568#endif
3569
3570/* In GCC 4.6 (inclusive) to 5.1 (exclusive),
3571   suppress bogus "no previous prototype for 'FOO'"
3572   and "no previous declaration for 'FOO'" diagnostics,
3573   when FOO is an inline function in the header; see
3574   <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54113> and
3575   <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63877>.  */
3576#if __GNUC__ == 4 && 6 <= __GNUC_MINOR__
3577# if defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__
3578#  define _GL_INLINE_HEADER_CONST_PRAGMA
3579# else
3580#  define _GL_INLINE_HEADER_CONST_PRAGMA \
3581     _Pragma ("GCC diagnostic ignored \"-Wsuggest-attribute=const\"")
3582# endif
3583# define _GL_INLINE_HEADER_BEGIN \
3584    _Pragma ("GCC diagnostic push") \
3585    _Pragma ("GCC diagnostic ignored \"-Wmissing-prototypes\"") \
3586    _Pragma ("GCC diagnostic ignored \"-Wmissing-declarations\"") \
3587    _GL_INLINE_HEADER_CONST_PRAGMA
3588# define _GL_INLINE_HEADER_END \
3589    _Pragma ("GCC diagnostic pop")
3590#else
3591# define _GL_INLINE_HEADER_BEGIN
3592# define _GL_INLINE_HEADER_END
3593#endif
3594
3595/* Always use our fgetfilecon wrapper. */
3596#undef fgetfilecon
3597
3598/* Define to the overridden function name */
3599#undef fts_children
3600
3601/* Define to the overridden function name */
3602#undef fts_close
3603
3604/* Define to the overridden function name */
3605#undef fts_cross_check
3606
3607/* Define to the overridden function name */
3608#undef fts_open
3609
3610/* Define to the overridden function name */
3611#undef fts_read
3612
3613/* Define to the overridden function name */
3614#undef fts_set
3615
3616/* Always use our getfilecon wrapper. */
3617#undef getfilecon
3618
3619/* Define to `int' if <sys/types.h> doesn't define. */
3620#undef gid_t
3621
3622/* A replacement for va_copy, if needed.  */
3623#define gl_va_copy(a,b) ((a) = (b))
3624
3625/* Define to `__inline__' or `__inline' if that's what the C compiler
3626   calls it, or to nothing if 'inline' is not supported under any name.  */
3627#ifndef __cplusplus
3628#undef inline
3629#endif
3630
3631/* Define to `unsigned long int' if <sys/types.h> does not define. */
3632#undef ino_t
3633
3634/* Define to long or long long if <stdint.h> and <inttypes.h> don't define. */
3635#undef intmax_t
3636
3637/* Work around a bug in Apple GCC 4.0.1 build 5465: In C99 mode, it supports
3638   the ISO C 99 semantics of 'extern inline' (unlike the GNU C semantics of
3639   earlier versions), but does not display it by setting __GNUC_STDC_INLINE__.
3640   __APPLE__ && __MACH__ test for Mac OS X.
3641   __APPLE_CC__ tests for the Apple compiler and its version.
3642   __STDC_VERSION__ tests for the C99 mode.  */
3643#if defined __APPLE__ && defined __MACH__ && __APPLE_CC__ >= 5465 && !defined __cplusplus && __STDC_VERSION__ >= 199901L && !defined __GNUC_STDC_INLINE__
3644# define __GNUC_STDC_INLINE__ 1
3645#endif
3646
3647/* Always use our lgetfilecon wrapper. */
3648#undef lgetfilecon
3649
3650/* Define to 1 if the compiler is checking for lint. */
3651#undef lint
3652
3653/* Define to `unsigned int' if <sys/types.h> does not define. */
3654#undef major_t
3655
3656/* Define to a type if <wchar.h> does not define. */
3657#undef mbstate_t
3658
3659/* Define to `unsigned int' if <sys/types.h> does not define. */
3660#undef minor_t
3661
3662/* Define to the real name of the mktime_internal function. */
3663#undef mktime_internal
3664
3665/* Define to `int' if <sys/types.h> does not define. */
3666#undef mode_t
3667
3668/* Define to the name of the strftime replacement function. */
3669#undef my_strftime
3670
3671/* Define to the type of st_nlink in struct stat, or a supertype. */
3672#undef nlink_t
3673
3674/* Define to `long int' if <sys/types.h> does not define. */
3675#undef off_t
3676
3677/* Define to `int' if <sys/types.h> does not define. */
3678#undef pid_t
3679
3680/* Define as the type of the result of subtracting two pointers, if the system
3681   doesn't define it. */
3682#undef ptrdiff_t
3683
3684/* Define to rpl_re_comp if the replacement should be used. */
3685#undef re_comp
3686
3687/* Define to rpl_re_compile_fastmap if the replacement should be used. */
3688#undef re_compile_fastmap
3689
3690/* Define to rpl_re_compile_pattern if the replacement should be used. */
3691#undef re_compile_pattern
3692
3693/* Define to rpl_re_exec if the replacement should be used. */
3694#undef re_exec
3695
3696/* Define to rpl_re_match if the replacement should be used. */
3697#undef re_match
3698
3699/* Define to rpl_re_match_2 if the replacement should be used. */
3700#undef re_match_2
3701
3702/* Define to rpl_re_search if the replacement should be used. */
3703#undef re_search
3704
3705/* Define to rpl_re_search_2 if the replacement should be used. */
3706#undef re_search_2
3707
3708/* Define to rpl_re_set_registers if the replacement should be used. */
3709#undef re_set_registers
3710
3711/* Define to rpl_re_set_syntax if the replacement should be used. */
3712#undef re_set_syntax
3713
3714/* Define to rpl_re_syntax_options if the replacement should be used. */
3715#undef re_syntax_options
3716
3717/* Define to rpl_regcomp if the replacement should be used. */
3718#undef regcomp
3719
3720/* Define to rpl_regerror if the replacement should be used. */
3721#undef regerror
3722
3723/* Define to rpl_regexec if the replacement should be used. */
3724#undef regexec
3725
3726/* Define to rpl_regfree if the replacement should be used. */
3727#undef regfree
3728
3729/* Define to the equivalent of the C99 'restrict' keyword, or to
3730   nothing if this is not supported.  Do not define if restrict is
3731   supported directly.  */
3732#undef restrict
3733/* Work around a bug in older versions of Sun C++, which did not
3734   #define __restrict__ or support _Restrict or __restrict__
3735   even though the corresponding Sun C compiler ended up with
3736   "#define restrict _Restrict" or "#define restrict __restrict__"
3737   in the previous line.  This workaround can be removed once
3738   we assume Oracle Developer Studio 12.5 (2016) or later.  */
3739#if defined __SUNPRO_CC && !defined __RESTRICT && !defined __restrict__
3740# define _Restrict
3741# define __restrict__
3742#endif
3743
3744/* Define to `unsigned int' if <sys/types.h> does not define. */
3745#undef size_t
3746
3747/* type to use in place of socklen_t if not defined */
3748#undef socklen_t
3749
3750/* Define as a signed type of the same size as size_t. */
3751#undef ssize_t
3752
3753/* Define to `int' if <sys/types.h> doesn't define. */
3754#undef uid_t
3755
3756/* Define as a marker that can be attached to declarations that might not
3757    be used.  This helps to reduce warnings, such as from
3758    GCC -Wunused-parameter.  */
3759#if __GNUC__ >= 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)
3760# define _GL_UNUSED __attribute__ ((__unused__))
3761#else
3762# define _GL_UNUSED
3763#endif
3764/* The name _UNUSED_PARAMETER_ is an earlier spelling, although the name
3765   is a misnomer outside of parameter lists.  */
3766#define _UNUSED_PARAMETER_ _GL_UNUSED
3767
3768/* gcc supports the "unused" attribute on possibly unused labels, and
3769   g++ has since version 4.5.  Note to support C++ as well as C,
3770   _GL_UNUSED_LABEL should be used with a trailing ;  */
3771#if !defined __cplusplus || __GNUC__ > 4 \
3772    || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)
3773# define _GL_UNUSED_LABEL _GL_UNUSED
3774#else
3775# define _GL_UNUSED_LABEL
3776#endif
3777
3778/* The __pure__ attribute was added in gcc 2.96.  */
3779#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)
3780# define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__))
3781#else
3782# define _GL_ATTRIBUTE_PURE /* empty */
3783#endif
3784
3785/* The __const__ attribute was added in gcc 2.95.  */
3786#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95)
3787# define _GL_ATTRIBUTE_CONST __attribute__ ((__const__))
3788#else
3789# define _GL_ATTRIBUTE_CONST /* empty */
3790#endif
3791
3792/* The __malloc__ attribute was added in gcc 3.  */
3793#if 3 <= __GNUC__
3794# define _GL_ATTRIBUTE_MALLOC __attribute__ ((__malloc__))
3795#else
3796# define _GL_ATTRIBUTE_MALLOC /* empty */
3797#endif
3798
3799
3800/* Define to an unsigned 32-bit type if <sys/types.h> lacks this type. */
3801#undef useconds_t
3802
3803/* Define as a macro for copying va_list variables. */
3804#undef va_copy
3805
3806/* Define as `fork' if `vfork' does not work. */
3807#undef vfork
3808
3809/* Define to empty if the keyword `volatile' does not work. Warning: valid
3810   code using `volatile' can become incorrect without. Disable with care. */
3811#undef volatile
3812