Line data Source code
1 : /*
2 : Unix SMB/CIFS implementation.
3 : Build Options for Samba Suite
4 : Copyright (C) Vance Lankhaar <vlankhaar@linux.ca> 2003
5 : Copyright (C) Andrew Bartlett <abartlet@samba.org> 2001
6 :
7 : This program is free software; you can redistribute it and/or modify
8 : it under the terms of the GNU General Public License as published by
9 : the Free Software Foundation; either version 3 of the License, or
10 : (at your option) any later version.
11 :
12 : This program is distributed in the hope that it will be useful,
13 : but WITHOUT ANY WARRANTY; without even the implied warranty of
14 : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 : GNU General Public License for more details.
16 :
17 : You should have received a copy of the GNU General Public License
18 : along with this program; if not, see <http://www.gnu.org/licenses/>.
19 : */
20 :
21 : #include "includes.h"
22 : #include "dynconfig/dynconfig.h"
23 : #include "lib/cluster_support.h"
24 :
25 : static int output(bool screen, const char *format, ...) PRINTF_ATTRIBUTE(2,3);
26 : void build_options(bool screen);
27 :
28 :
29 : /****************************************************************************
30 : helper function for build_options
31 : ****************************************************************************/
32 52088 : static int output(bool screen, const char *format, ...)
33 : {
34 52088 : char *ptr = NULL;
35 52088 : int ret = 0;
36 2112 : va_list ap;
37 :
38 52088 : va_start(ap, format);
39 52088 : ret = vasprintf(&ptr,format,ap);
40 52088 : va_end(ap);
41 :
42 52088 : if (screen) {
43 54200 : d_printf("%s", ptr ? ptr : "");
44 : } else {
45 0 : DEBUG(4,("%s", ptr ? ptr : ""));
46 : }
47 :
48 52088 : SAFE_FREE(ptr);
49 52088 : return ret;
50 : }
51 :
52 : /****************************************************************************
53 : options set at build time for the samba suite
54 : ****************************************************************************/
55 50 : void build_options(bool screen)
56 : {
57 50 : if ((DEBUGLEVEL < 4) && (!screen)) {
58 0 : return;
59 : }
60 :
61 :
62 : /* Output various paths to files and directories */
63 50 : output(screen,"\nPaths:\n"
64 : " SBINDIR: %s\n"
65 : " BINDIR: %s\n"
66 : " CONFIGFILE: %s\n"
67 : " LOGFILEBASE: %s\n"
68 : " LMHOSTSFILE: %s\n"
69 : " LIBDIR: %s\n"
70 : " DATADIR: %s\n"
71 : " SAMBA_DATADIR: %s\n"
72 : " MODULESDIR: %s\n"
73 : " SHLIBEXT: %s\n"
74 : " LOCKDIR: %s\n"
75 : " STATEDIR: %s\n"
76 : " CACHEDIR: %s\n"
77 : " PIDDIR: %s\n"
78 : " SMB_PASSWD_FILE: %s\n"
79 : " PRIVATE_DIR: %s\n"
80 : " BINDDNS_DIR: %s\n",
81 : get_dyn_SBINDIR(),
82 : get_dyn_BINDIR(),
83 : get_dyn_CONFIGFILE(),
84 : get_dyn_LOGFILEBASE(),
85 : get_dyn_LMHOSTSFILE(),
86 : get_dyn_LIBDIR(),
87 : get_dyn_DATADIR(),
88 : get_dyn_SAMBA_DATADIR(),
89 : get_dyn_MODULESDIR(),
90 : get_dyn_SHLIBEXT(),
91 : get_dyn_LOCKDIR(),
92 : get_dyn_STATEDIR(),
93 : get_dyn_CACHEDIR(),
94 : get_dyn_PIDDIR(),
95 : get_dyn_SMB_PASSWD_FILE(),
96 : get_dyn_PRIVATE_DIR(),
97 : get_dyn_BINDDNS_DIR());
98 :
99 :
100 : /* Show System Headers */
101 50 : output(screen, "\nSystem Headers:\n");
102 :
103 : #ifdef HAVE_SYS_ACL_H
104 50 : output(screen, " HAVE_SYS_ACL_H\n");
105 : #endif
106 : #ifdef HAVE_SYS_AUXV_H
107 50 : output(screen, " HAVE_SYS_AUXV_H\n");
108 : #endif
109 : #ifdef HAVE_SYS_CAPABILITY_H
110 50 : output(screen, " HAVE_SYS_CAPABILITY_H\n");
111 : #endif
112 : #ifdef HAVE_SYS_CDEFS_H
113 50 : output(screen, " HAVE_SYS_CDEFS_H\n");
114 : #endif
115 : #ifdef HAVE_SYS_DIR_H
116 50 : output(screen, " HAVE_SYS_DIR_H\n");
117 : #endif
118 : #ifdef HAVE_SYS_EPOLL_H
119 50 : output(screen, " HAVE_SYS_EPOLL_H\n");
120 : #endif
121 : #ifdef HAVE_SYS_EVENTFD_H
122 50 : output(screen, " HAVE_SYS_EVENTFD_H\n");
123 : #endif
124 : #ifdef HAVE_SYS_FCNTL_H
125 50 : output(screen, " HAVE_SYS_FCNTL_H\n");
126 : #endif
127 : #ifdef HAVE_SYS_FILE_H
128 50 : output(screen, " HAVE_SYS_FILE_H\n");
129 : #endif
130 : #ifdef HAVE_SYS_INOTIFY_H
131 50 : output(screen, " HAVE_SYS_INOTIFY_H\n");
132 : #endif
133 : #ifdef HAVE_SYS_IOCTL_H
134 50 : output(screen, " HAVE_SYS_IOCTL_H\n");
135 : #endif
136 : #ifdef HAVE_SYS_IPC_H
137 50 : output(screen, " HAVE_SYS_IPC_H\n");
138 : #endif
139 : #ifdef HAVE_SYS_KERNEL_PROC_CORE_PATTERN
140 50 : output(screen, " HAVE_SYS_KERNEL_PROC_CORE_PATTERN\n");
141 : #endif
142 : #ifdef HAVE_SYS_MMAN_H
143 50 : output(screen, " HAVE_SYS_MMAN_H\n");
144 : #endif
145 : #ifdef HAVE_SYS_MOUNT_H
146 50 : output(screen, " HAVE_SYS_MOUNT_H\n");
147 : #endif
148 : #ifdef HAVE_SYS_PARAM_H
149 50 : output(screen, " HAVE_SYS_PARAM_H\n");
150 : #endif
151 : #ifdef HAVE_SYS_PRCTL_H
152 50 : output(screen, " HAVE_SYS_PRCTL_H\n");
153 : #endif
154 : #ifdef HAVE_SYS_QUOTAS
155 50 : output(screen, " HAVE_SYS_QUOTAS\n");
156 : #endif
157 : #ifdef HAVE_SYS_QUOTA_H
158 50 : output(screen, " HAVE_SYS_QUOTA_H\n");
159 : #endif
160 : #ifdef HAVE_SYS_RANDOM_H
161 50 : output(screen, " HAVE_SYS_RANDOM_H\n");
162 : #endif
163 : #ifdef HAVE_SYS_RESOURCE_H
164 50 : output(screen, " HAVE_SYS_RESOURCE_H\n");
165 : #endif
166 : #ifdef HAVE_SYS_SELECT_H
167 50 : output(screen, " HAVE_SYS_SELECT_H\n");
168 : #endif
169 : #ifdef HAVE_SYS_SENDFILE_H
170 50 : output(screen, " HAVE_SYS_SENDFILE_H\n");
171 : #endif
172 : #ifdef HAVE_SYS_SHM_H
173 50 : output(screen, " HAVE_SYS_SHM_H\n");
174 : #endif
175 : #ifdef HAVE_SYS_SIGNALFD_H
176 50 : output(screen, " HAVE_SYS_SIGNALFD_H\n");
177 : #endif
178 : #ifdef HAVE_SYS_SOCKET_H
179 50 : output(screen, " HAVE_SYS_SOCKET_H\n");
180 : #endif
181 : #ifdef HAVE_SYS_STATFS_H
182 50 : output(screen, " HAVE_SYS_STATFS_H\n");
183 : #endif
184 : #ifdef HAVE_SYS_STATVFS_H
185 50 : output(screen, " HAVE_SYS_STATVFS_H\n");
186 : #endif
187 : #ifdef HAVE_SYS_STAT_H
188 50 : output(screen, " HAVE_SYS_STAT_H\n");
189 : #endif
190 : #ifdef HAVE_SYS_SYSCALL_H
191 50 : output(screen, " HAVE_SYS_SYSCALL_H\n");
192 : #endif
193 : #ifdef HAVE_SYS_SYSCTL_H
194 : output(screen, " HAVE_SYS_SYSCTL_H\n");
195 : #endif
196 : #ifdef HAVE_SYS_SYSLOG_H
197 50 : output(screen, " HAVE_SYS_SYSLOG_H\n");
198 : #endif
199 : #ifdef HAVE_SYS_SYSMACROS_H
200 50 : output(screen, " HAVE_SYS_SYSMACROS_H\n");
201 : #endif
202 : #ifdef HAVE_SYS_TERMIOS_H
203 50 : output(screen, " HAVE_SYS_TERMIOS_H\n");
204 : #endif
205 : #ifdef HAVE_SYS_TIMEB_H
206 50 : output(screen, " HAVE_SYS_TIMEB_H\n");
207 : #endif
208 : #ifdef HAVE_SYS_TIMERFD_H
209 50 : output(screen, " HAVE_SYS_TIMERFD_H\n");
210 : #endif
211 : #ifdef HAVE_SYS_TIMES_H
212 50 : output(screen, " HAVE_SYS_TIMES_H\n");
213 : #endif
214 : #ifdef HAVE_SYS_TIME_H
215 50 : output(screen, " HAVE_SYS_TIME_H\n");
216 : #endif
217 : #ifdef HAVE_SYS_TYPES_H
218 50 : output(screen, " HAVE_SYS_TYPES_H\n");
219 : #endif
220 : #ifdef HAVE_SYS_UCONTEXT_H
221 50 : output(screen, " HAVE_SYS_UCONTEXT_H\n");
222 : #endif
223 : #ifdef HAVE_SYS_UIO_H
224 50 : output(screen, " HAVE_SYS_UIO_H\n");
225 : #endif
226 : #ifdef HAVE_SYS_UNISTD_H
227 50 : output(screen, " HAVE_SYS_UNISTD_H\n");
228 : #endif
229 : #ifdef HAVE_SYS_UN_H
230 50 : output(screen, " HAVE_SYS_UN_H\n");
231 : #endif
232 : #ifdef HAVE_SYS_UTSNAME_H
233 50 : output(screen, " HAVE_SYS_UTSNAME_H\n");
234 : #endif
235 : #ifdef HAVE_SYS_VFS_H
236 31 : output(screen, " HAVE_SYS_VFS_H\n");
237 : #endif
238 19 : #ifdef HAVE_SYS_WAIT_H
239 31 : output(screen, " HAVE_SYS_WAIT_H\n");
240 : #endif
241 19 : #ifdef HAVE_SYS_XATTR_H
242 31 : output(screen, " HAVE_SYS_XATTR_H\n");
243 : #endif
244 19 :
245 :
246 : /* Show Headers */
247 50 : output(screen, "\nHeaders:\n");
248 :
249 : #ifdef HAVE_ACL_LIBACL_H
250 50 : output(screen, " HAVE_ACL_LIBACL_H\n");
251 : #endif
252 : #ifdef HAVE_ALLOCA_H
253 50 : output(screen, " HAVE_ALLOCA_H\n");
254 : #endif
255 : #ifdef HAVE_ARCHIVE_H
256 50 : output(screen, " HAVE_ARCHIVE_H\n");
257 : #endif
258 : #ifdef HAVE_ARPA_INET_H
259 50 : output(screen, " HAVE_ARPA_INET_H\n");
260 : #endif
261 : #ifdef HAVE_ARPA_NAMESER_H
262 50 : output(screen, " HAVE_ARPA_NAMESER_H\n");
263 : #endif
264 : #ifdef HAVE_ASM_TYPES_H
265 50 : output(screen, " HAVE_ASM_TYPES_H\n");
266 : #endif
267 : #ifdef HAVE_ASM_UNISTD_H
268 50 : output(screen, " HAVE_ASM_UNISTD_H\n");
269 : #endif
270 : #ifdef HAVE_ASSERT_H
271 50 : output(screen, " HAVE_ASSERT_H\n");
272 : #endif
273 : #ifdef HAVE_ATTR_ATTRIBUTES_H
274 50 : output(screen, " HAVE_ATTR_ATTRIBUTES_H\n");
275 : #endif
276 : #ifdef HAVE_ATTR_XATTR_H
277 50 : output(screen, " HAVE_ATTR_XATTR_H\n");
278 : #endif
279 : #ifdef HAVE_AVAHI_COMMON_WATCH_H
280 50 : output(screen, " HAVE_AVAHI_COMMON_WATCH_H\n");
281 : #endif
282 : #ifdef HAVE_BSD_LIBUTIL_H
283 50 : output(screen, " HAVE_BSD_LIBUTIL_H\n");
284 : #endif
285 : #ifdef HAVE_BSD_STRING_H
286 50 : output(screen, " HAVE_BSD_STRING_H\n");
287 : #endif
288 : #ifdef HAVE_BSD_UNISTD_H
289 50 : output(screen, " HAVE_BSD_UNISTD_H\n");
290 : #endif
291 : #ifdef HAVE_CEPHFS_LIBCEPHFS_H
292 50 : output(screen, " HAVE_CEPHFS_LIBCEPHFS_H\n");
293 : #endif
294 : #ifdef HAVE_COM_ERR_H
295 50 : output(screen, " HAVE_COM_ERR_H\n");
296 : #endif
297 : #ifdef HAVE_CONFIG_H
298 50 : output(screen, " HAVE_CONFIG_H\n");
299 : #endif
300 : #ifdef HAVE_CRYPT_H
301 50 : output(screen, " HAVE_CRYPT_H\n");
302 : #endif
303 : #ifdef HAVE_CTYPE_H
304 50 : output(screen, " HAVE_CTYPE_H\n");
305 : #endif
306 : #ifdef HAVE_CUPS_CUPS_H
307 50 : output(screen, " HAVE_CUPS_CUPS_H\n");
308 : #endif
309 : #ifdef HAVE_CUPS_LANGUAGE_H
310 50 : output(screen, " HAVE_CUPS_LANGUAGE_H\n");
311 : #endif
312 : #ifdef HAVE_CURSES_H
313 50 : output(screen, " HAVE_CURSES_H\n");
314 : #endif
315 : #ifdef HAVE_DBUS_DBUS_H
316 50 : output(screen, " HAVE_DBUS_DBUS_H\n");
317 : #endif
318 : #ifdef HAVE_DIRENT_H
319 50 : output(screen, " HAVE_DIRENT_H\n");
320 : #endif
321 : #ifdef HAVE_DLFCN_H
322 50 : output(screen, " HAVE_DLFCN_H\n");
323 : #endif
324 : #ifdef HAVE_ENDIAN_H
325 50 : output(screen, " HAVE_ENDIAN_H\n");
326 : #endif
327 : #ifdef HAVE_ERRNO_H
328 50 : output(screen, " HAVE_ERRNO_H\n");
329 : #endif
330 : #ifdef HAVE_ERR_H
331 50 : output(screen, " HAVE_ERR_H\n");
332 : #endif
333 : #ifdef HAVE_EXECINFO_H
334 50 : output(screen, " HAVE_EXECINFO_H\n");
335 : #endif
336 : #ifdef HAVE_FCNTL_H
337 31 : output(screen, " HAVE_FCNTL_H\n");
338 : #endif
339 : #ifdef HAVE_FLOAT_H
340 50 : output(screen, " HAVE_FLOAT_H\n");
341 : #endif
342 : #ifdef HAVE_FNMATCH_H
343 50 : output(screen, " HAVE_FNMATCH_H\n");
344 : #endif
345 : #ifdef HAVE_FORM_H
346 50 : output(screen, " HAVE_FORM_H\n");
347 : #endif
348 : #ifdef HAVE_FTW_H
349 50 : output(screen, " HAVE_FTW_H\n");
350 : #endif
351 : #ifdef HAVE_FUSE_FUSE_LOWLEVEL_H
352 19 : output(screen, " HAVE_FUSE_FUSE_LOWLEVEL_H\n");
353 : #endif
354 : #ifdef HAVE_GETOPT_H
355 50 : output(screen, " HAVE_GETOPT_H\n");
356 : #endif
357 : #ifdef HAVE_GLIB_H
358 50 : output(screen, " HAVE_GLIB_H\n");
359 : #endif
360 : #ifdef HAVE_GLOB_H
361 50 : output(screen, " HAVE_GLOB_H\n");
362 : #endif
363 : #ifdef HAVE_GNU_LIB_NAMES_H
364 50 : output(screen, " HAVE_GNU_LIB_NAMES_H\n");
365 : #endif
366 : #ifdef HAVE_GPFS_H
367 50 : output(screen, " HAVE_GPFS_H\n");
368 : #endif
369 : #ifdef HAVE_GPGME_H
370 50 : output(screen, " HAVE_GPGME_H\n");
371 : #endif
372 : #ifdef HAVE_GRP_H
373 50 : output(screen, " HAVE_GRP_H\n");
374 : #endif
375 : #ifdef HAVE_GSSAPI_GSSAPI_H
376 50 : output(screen, " HAVE_GSSAPI_GSSAPI_H\n");
377 : #endif
378 : #ifdef HAVE_GSSAPI_GSSAPI_KRB5_H
379 50 : output(screen, " HAVE_GSSAPI_GSSAPI_KRB5_H\n");
380 : #endif
381 : #ifdef HAVE_GSSAPI_GSSAPI_SPNEGO_H
382 49 : output(screen, " HAVE_GSSAPI_GSSAPI_SPNEGO_H\n");
383 : #endif
384 : #ifdef HAVE_ICONV_H
385 50 : output(screen, " HAVE_ICONV_H\n");
386 : #endif
387 : #ifdef HAVE_IFADDRS_H
388 50 : output(screen, " HAVE_IFADDRS_H\n");
389 : #endif
390 : #ifdef HAVE_INTTYPES_H
391 50 : output(screen, " HAVE_INTTYPES_H\n");
392 : #endif
393 : #ifdef HAVE_KEYUTILS_H
394 50 : output(screen, " HAVE_KEYUTILS_H\n");
395 : #endif
396 : #ifdef HAVE_KRB5_H
397 49 : output(screen, " HAVE_KRB5_H\n");
398 : #endif
399 : #ifdef HAVE_KRB5_LOCATE_PLUGIN_H
400 50 : output(screen, " HAVE_KRB5_LOCATE_PLUGIN_H\n");
401 : #endif
402 : #ifdef HAVE_LANGINFO_H
403 50 : output(screen, " HAVE_LANGINFO_H\n");
404 : #endif
405 : #ifdef HAVE_LASTLOG_H
406 50 : output(screen, " HAVE_LASTLOG_H\n");
407 : #endif
408 : #ifdef HAVE_LBER_H
409 50 : output(screen, " HAVE_LBER_H\n");
410 : #endif
411 : #ifdef HAVE_LDAP_H
412 50 : output(screen, " HAVE_LDAP_H\n");
413 : #endif
414 : #ifdef HAVE_LIBGEN_H
415 50 : output(screen, " HAVE_LIBGEN_H\n");
416 : #endif
417 : #ifdef HAVE_LIBINTL_H
418 50 : output(screen, " HAVE_LIBINTL_H\n");
419 : #endif
420 : #ifdef HAVE_LIBURING_COMPAT_H
421 50 : output(screen, " HAVE_LIBURING_COMPAT_H\n");
422 : #endif
423 : #ifdef HAVE_LIBURING_H
424 50 : output(screen, " HAVE_LIBURING_H\n");
425 : #endif
426 : #ifdef HAVE_LIMITS_H
427 50 : output(screen, " HAVE_LIMITS_H\n");
428 : #endif
429 : #ifdef HAVE_LINUX_ETHTOOL_H
430 50 : output(screen, " HAVE_LINUX_ETHTOOL_H\n");
431 : #endif
432 : #ifdef HAVE_LINUX_FALLOC_H
433 50 : output(screen, " HAVE_LINUX_FALLOC_H\n");
434 : #endif
435 : #ifdef HAVE_LINUX_FCNTL_H
436 50 : output(screen, " HAVE_LINUX_FCNTL_H\n");
437 : #endif
438 : #ifdef HAVE_LINUX_FS_H
439 50 : output(screen, " HAVE_LINUX_FS_H\n");
440 : #endif
441 : #ifdef HAVE_LINUX_IOCTL_H
442 50 : output(screen, " HAVE_LINUX_IOCTL_H\n");
443 : #endif
444 : #ifdef HAVE_LINUX_NETLINK_H
445 50 : output(screen, " HAVE_LINUX_NETLINK_H\n");
446 : #endif
447 : #ifdef HAVE_LINUX_OPENAT2_H
448 50 : output(screen, " HAVE_LINUX_OPENAT2_H\n");
449 : #endif
450 : #ifdef HAVE_LINUX_RTNETLINK_H
451 50 : output(screen, " HAVE_LINUX_RTNETLINK_H\n");
452 : #endif
453 : #ifdef HAVE_LINUX_SOCKIOS_H
454 50 : output(screen, " HAVE_LINUX_SOCKIOS_H\n");
455 : #endif
456 : #ifdef HAVE_LINUX_TYPES_H
457 50 : output(screen, " HAVE_LINUX_TYPES_H\n");
458 : #endif
459 : #ifdef HAVE_LMDB_H
460 50 : output(screen, " HAVE_LMDB_H\n");
461 : #endif
462 : #ifdef HAVE_LOCALE_H
463 50 : output(screen, " HAVE_LOCALE_H\n");
464 : #endif
465 : #ifdef HAVE_MALLOC_H
466 50 : output(screen, " HAVE_MALLOC_H\n");
467 : #endif
468 : #ifdef HAVE_MEMORY_H
469 50 : output(screen, " HAVE_MEMORY_H\n");
470 : #endif
471 : #ifdef HAVE_MENU_H
472 50 : output(screen, " HAVE_MENU_H\n");
473 : #endif
474 : #ifdef HAVE_MNTENT_H
475 50 : output(screen, " HAVE_MNTENT_H\n");
476 : #endif
477 : #ifdef HAVE_NCURSES_H
478 50 : output(screen, " HAVE_NCURSES_H\n");
479 : #endif
480 : #ifdef HAVE_NETDB_H
481 50 : output(screen, " HAVE_NETDB_H\n");
482 : #endif
483 : #ifdef HAVE_NETINET_IN_H
484 50 : output(screen, " HAVE_NETINET_IN_H\n");
485 : #endif
486 : #ifdef HAVE_NETINET_IN_SYSTM_H
487 50 : output(screen, " HAVE_NETINET_IN_SYSTM_H\n");
488 : #endif
489 : #ifdef HAVE_NETINET_IP_H
490 50 : output(screen, " HAVE_NETINET_IP_H\n");
491 : #endif
492 : #ifdef HAVE_NETINET_TCP_H
493 50 : output(screen, " HAVE_NETINET_TCP_H\n");
494 : #endif
495 : #ifdef HAVE_NET_IF_H
496 50 : output(screen, " HAVE_NET_IF_H\n");
497 : #endif
498 : #ifdef HAVE_NSS_H
499 50 : output(screen, " HAVE_NSS_H\n");
500 : #endif
501 : #ifdef HAVE_PANEL_H
502 50 : output(screen, " HAVE_PANEL_H\n");
503 : #endif
504 : #ifdef HAVE_POLL_H
505 50 : output(screen, " HAVE_POLL_H\n");
506 : #endif
507 : #ifdef HAVE_POPT_H
508 50 : output(screen, " HAVE_POPT_H\n");
509 : #endif
510 : #ifdef HAVE_PTHREAD_H
511 50 : output(screen, " HAVE_PTHREAD_H\n");
512 : #endif
513 : #ifdef HAVE_PTY_H
514 50 : output(screen, " HAVE_PTY_H\n");
515 : #endif
516 : #ifdef HAVE_PWD_H
517 50 : output(screen, " HAVE_PWD_H\n");
518 : #endif
519 : #ifdef HAVE_PYTHON_H
520 50 : output(screen, " HAVE_PYTHON_H\n");
521 : #endif
522 : #ifdef HAVE_READLINE_HISTORY_H
523 50 : output(screen, " HAVE_READLINE_HISTORY_H\n");
524 : #endif
525 : #ifdef HAVE_READLINE_READLINE_H
526 50 : output(screen, " HAVE_READLINE_READLINE_H\n");
527 : #endif
528 : #ifdef HAVE_RESOLV_H
529 50 : output(screen, " HAVE_RESOLV_H\n");
530 : #endif
531 : #ifdef HAVE_RPCSVC_RQUOTA_H
532 50 : output(screen, " HAVE_RPCSVC_RQUOTA_H\n");
533 : #endif
534 : #ifdef HAVE_RPC_NETTYPE_H
535 50 : output(screen, " HAVE_RPC_NETTYPE_H\n");
536 : #endif
537 : #ifdef HAVE_RPC_RPC_H
538 50 : output(screen, " HAVE_RPC_RPC_H\n");
539 : #endif
540 : #ifdef HAVE_RPC_TYPES_H
541 50 : output(screen, " HAVE_RPC_TYPES_H\n");
542 : #endif
543 : #ifdef HAVE_RPC_XDR_H
544 50 : output(screen, " HAVE_RPC_XDR_H\n");
545 : #endif
546 : #ifdef HAVE_SCHED_H
547 50 : output(screen, " HAVE_SCHED_H\n");
548 : #endif
549 : #ifdef HAVE_SECURITY_PAM_APPL_H
550 50 : output(screen, " HAVE_SECURITY_PAM_APPL_H\n");
551 : #endif
552 : #ifdef HAVE_SECURITY_PAM_EXT_H
553 50 : output(screen, " HAVE_SECURITY_PAM_EXT_H\n");
554 : #endif
555 : #ifdef HAVE_SECURITY_PAM_MODULES_H
556 50 : output(screen, " HAVE_SECURITY_PAM_MODULES_H\n");
557 : #endif
558 : #ifdef HAVE_SECURITY__PAM_MACROS_H
559 50 : output(screen, " HAVE_SECURITY__PAM_MACROS_H\n");
560 : #endif
561 : #ifdef HAVE_SETJMP_H
562 50 : output(screen, " HAVE_SETJMP_H\n");
563 : #endif
564 : #ifdef HAVE_SHADOW_H
565 50 : output(screen, " HAVE_SHADOW_H\n");
566 : #endif
567 : #ifdef HAVE_SIGNAL_H
568 50 : output(screen, " HAVE_SIGNAL_H\n");
569 : #endif
570 : #ifdef HAVE_STDARG_H
571 50 : output(screen, " HAVE_STDARG_H\n");
572 : #endif
573 : #ifdef HAVE_STDATOMIC_H
574 50 : output(screen, " HAVE_STDATOMIC_H\n");
575 : #endif
576 : #ifdef HAVE_STDBOOL_H
577 50 : output(screen, " HAVE_STDBOOL_H\n");
578 : #endif
579 : #ifdef HAVE_STDDEF_H
580 50 : output(screen, " HAVE_STDDEF_H\n");
581 : #endif
582 : #ifdef HAVE_STDINT_H
583 50 : output(screen, " HAVE_STDINT_H\n");
584 : #endif
585 : #ifdef HAVE_STDIO_H
586 50 : output(screen, " HAVE_STDIO_H\n");
587 : #endif
588 : #ifdef HAVE_STDLIB_H
589 50 : output(screen, " HAVE_STDLIB_H\n");
590 : #endif
591 : #ifdef HAVE_STRINGS_H
592 50 : output(screen, " HAVE_STRINGS_H\n");
593 : #endif
594 : #ifdef HAVE_STRING_H
595 50 : output(screen, " HAVE_STRING_H\n");
596 : #endif
597 : #ifdef HAVE_STRUCT_OPEN_HOW_LIBURING_COMPAT_H
598 50 : output(screen, " HAVE_STRUCT_OPEN_HOW_LIBURING_COMPAT_H\n");
599 : #endif
600 : #ifdef HAVE_SYSCALL_H
601 31 : output(screen, " HAVE_SYSCALL_H\n");
602 : #endif
603 : #ifdef HAVE_SYSLOG_H
604 50 : output(screen, " HAVE_SYSLOG_H\n");
605 : #endif
606 : #ifdef HAVE_TERMCAP_H
607 50 : output(screen, " HAVE_TERMCAP_H\n");
608 : #endif
609 : #ifdef HAVE_TERMIOS_H
610 50 : output(screen, " HAVE_TERMIOS_H\n");
611 : #endif
612 : #ifdef HAVE_TERMIO_H
613 50 : output(screen, " HAVE_TERMIO_H\n");
614 : #endif
615 : #ifdef HAVE_TERM_H
616 50 : output(screen, " HAVE_TERM_H\n");
617 : #endif
618 : #ifdef HAVE_TIME_H
619 50 : output(screen, " HAVE_TIME_H\n");
620 : #endif
621 : #ifdef HAVE_UNICODE_USTRING_H
622 50 : output(screen, " HAVE_UNICODE_USTRING_H\n");
623 : #endif
624 : #ifdef HAVE_UNISTD_H
625 50 : output(screen, " HAVE_UNISTD_H\n");
626 : #endif
627 0 : #ifdef HAVE_UTIME_H
628 49 : output(screen, " HAVE_UTIME_H\n");
629 : #endif
630 1 : #ifdef HAVE_XFS_XQM_H
631 49 : output(screen, " HAVE_XFS_XQM_H\n");
632 : #endif
633 1 : #ifdef HAVE_ZLIB_H
634 30 : output(screen, " HAVE_ZLIB_H\n");
635 : #endif
636 20 :
637 :
638 : /* Show UTMP Options */
639 50 : output(screen, "\nUTMP Options:\n");
640 :
641 : #ifdef HAVE_GETUTMPX
642 50 : output(screen, " HAVE_GETUTMPX\n");
643 : #endif
644 : #ifdef HAVE_UTMPX_H
645 50 : output(screen, " HAVE_UTMPX_H\n");
646 : #endif
647 : #ifdef HAVE_UTMP_H
648 50 : output(screen, " HAVE_UTMP_H\n");
649 : #endif
650 : #ifdef HAVE_UT_UT_EXIT
651 50 : output(screen, " HAVE_UT_UT_EXIT\n");
652 : #endif
653 : #ifdef HAVE_UT_UT_HOST
654 50 : output(screen, " HAVE_UT_UT_HOST\n");
655 : #endif
656 : #ifdef HAVE_UT_UT_ID
657 50 : output(screen, " HAVE_UT_UT_ID\n");
658 : #endif
659 : #ifdef HAVE_UT_UT_NAME
660 50 : output(screen, " HAVE_UT_UT_NAME\n");
661 : #endif
662 : #ifdef HAVE_UT_UT_PID
663 50 : output(screen, " HAVE_UT_UT_PID\n");
664 : #endif
665 : #ifdef HAVE_UT_UT_TIME
666 50 : output(screen, " HAVE_UT_UT_TIME\n");
667 : #endif
668 : #ifdef HAVE_UT_UT_TV
669 50 : output(screen, " HAVE_UT_UT_TV\n");
670 : #endif
671 : #ifdef HAVE_UT_UT_TYPE
672 50 : output(screen, " HAVE_UT_UT_TYPE\n");
673 : #endif
674 : #ifdef HAVE_UT_UT_USER
675 50 : output(screen, " HAVE_UT_UT_USER\n");
676 : #endif
677 0 : #ifdef PUTUTLINE_RETURNS_UTMP
678 49 : output(screen, " PUTUTLINE_RETURNS_UTMP\n");
679 : #endif
680 1 : #ifdef SIZEOF_UTMP_UT_LINE
681 49 : output(screen, " SIZEOF_UTMP_UT_LINE\n");
682 : #endif
683 1 : #ifdef WITH_UTMP
684 30 : output(screen, " WITH_UTMP\n");
685 : #endif
686 20 :
687 :
688 : /* Show HAVE_* Defines */
689 49 : output(screen, "\nHAVE_* Defines:\n");
690 :
691 : #ifdef HAVE_64_BIT_SIZE_T_FOR_LMDB
692 49 : output(screen, " HAVE_64_BIT_SIZE_T_FOR_LMDB\n");
693 : #endif
694 : #ifdef HAVE_ACCEPT4
695 31 : output(screen, " HAVE_ACCEPT4\n");
696 : #endif
697 : #ifdef HAVE_ACCEPT_PSOCKLEN_T
698 0 : output(screen, " HAVE_ACCEPT_PSOCKLEN_T\n");
699 : #endif
700 : #ifdef HAVE_ACL_EVERYONE
701 20 : output(screen, " HAVE_ACL_EVERYONE\n");
702 : #endif
703 : #ifdef HAVE_ACL_GET_FILE
704 31 : output(screen, " HAVE_ACL_GET_FILE\n");
705 : #endif
706 : #ifdef HAVE_ACL_GET_PERM_NP
707 20 : output(screen, " HAVE_ACL_GET_PERM_NP\n");
708 : #endif
709 : #ifdef HAVE_ADDR_TYPE_IN_KRB5_ADDRESS
710 50 : output(screen, " HAVE_ADDR_TYPE_IN_KRB5_ADDRESS\n");
711 : #endif
712 : #ifdef HAVE_ADD_KEY
713 50 : output(screen, " HAVE_ADD_KEY\n");
714 : #endif
715 : #ifdef HAVE_ADS
716 50 : output(screen, " HAVE_ADS\n");
717 : #endif
718 : #ifdef HAVE_AP_OPTS_USE_SUBKEY
719 50 : output(screen, " HAVE_AP_OPTS_USE_SUBKEY\n");
720 : #endif
721 : #ifdef HAVE_ARCHIVE_READ_FREE
722 50 : output(screen, " HAVE_ARCHIVE_READ_FREE\n");
723 : #endif
724 : #ifdef HAVE_ARCHIVE_READ_SUPPORT_FILTER_ALL
725 49 : output(screen, " HAVE_ARCHIVE_READ_SUPPORT_FILTER_ALL\n");
726 : #endif
727 : #ifdef HAVE_ASPRINTF
728 31 : output(screen, " HAVE_ASPRINTF\n");
729 : #endif
730 : #ifdef HAVE_ATEXIT
731 50 : output(screen, " HAVE_ATEXIT\n");
732 : #endif
733 : #ifdef HAVE_ATOMIC_ADD_32
734 20 : output(screen, " HAVE_ATOMIC_ADD_32\n");
735 : #endif
736 : #ifdef HAVE_ATOMIC_THREAD_FENCE
737 49 : output(screen, " HAVE_ATOMIC_THREAD_FENCE\n");
738 : #endif
739 : #ifdef HAVE_ATOMIC_THREAD_FENCE_SUPPORT
740 50 : output(screen, " HAVE_ATOMIC_THREAD_FENCE_SUPPORT\n");
741 : #endif
742 : #ifdef HAVE_ATTRIBUTE_PRINTF_FORMAT
743 50 : output(screen, " HAVE_ATTRIBUTE_PRINTF_FORMAT\n");
744 : #endif
745 : #ifdef HAVE_AVAHI_CLIENT_NEW
746 20 : output(screen, " HAVE_AVAHI_CLIENT_NEW\n");
747 : #endif
748 : #ifdef HAVE_AVAHI_STRERROR
749 50 : output(screen, " HAVE_AVAHI_STRERROR\n");
750 : #endif
751 : #ifdef HAVE_BACKTRACE
752 50 : output(screen, " HAVE_BACKTRACE\n");
753 : #endif
754 : #ifdef HAVE_BACKTRACE_SYMBOLS
755 50 : output(screen, " HAVE_BACKTRACE_SYMBOLS\n");
756 : #endif
757 : #ifdef HAVE_BASENAME
758 50 : output(screen, " HAVE_BASENAME\n");
759 : #endif
760 : #ifdef HAVE_BER_SCANF
761 49 : output(screen, " HAVE_BER_SCANF\n");
762 : #endif
763 : #ifdef HAVE_BER_SOCKBUF_ADD_IO
764 31 : output(screen, " HAVE_BER_SOCKBUF_ADD_IO\n");
765 : #endif
766 : #ifdef HAVE_BER_TAG_T
767 50 : output(screen, " HAVE_BER_TAG_T\n");
768 : #endif
769 : #ifdef HAVE_BIG_ENDIAN
770 20 : output(screen, " HAVE_BIG_ENDIAN\n");
771 : #endif
772 : #ifdef HAVE_BIND
773 50 : output(screen, " HAVE_BIND\n");
774 : #endif
775 : #ifdef HAVE_BINDRESVPORT
776 50 : output(screen, " HAVE_BINDRESVPORT\n");
777 : #endif
778 : #ifdef HAVE_BINDTEXTDOMAIN
779 50 : output(screen, " HAVE_BINDTEXTDOMAIN\n");
780 : #endif
781 : #ifdef HAVE_BIND_TEXTDOMAIN_CODESET
782 50 : output(screen, " HAVE_BIND_TEXTDOMAIN_CODESET\n");
783 : #endif
784 : #ifdef HAVE_BLKCNT_T
785 49 : output(screen, " HAVE_BLKCNT_T\n");
786 : #endif
787 : #ifdef HAVE_BLKSIZE_T
788 30 : output(screen, " HAVE_BLKSIZE_T\n");
789 : #endif
790 : #ifdef HAVE_BOOL
791 30 : output(screen, " HAVE_BOOL\n");
792 : #endif
793 : #ifdef HAVE_BROKEN_READLINK
794 0 : output(screen, " HAVE_BROKEN_READLINK\n");
795 : #endif
796 : #ifdef HAVE_BSD_SETGRENT
797 19 : output(screen, " HAVE_BSD_SETGRENT\n");
798 : #endif
799 : #ifdef HAVE_BSD_STRTOLL
800 20 : output(screen, " HAVE_BSD_STRTOLL\n");
801 : #endif
802 : #ifdef HAVE_BSWAP16
803 20 : output(screen, " HAVE_BSWAP16\n");
804 : #endif
805 : #ifdef HAVE_BSWAP32
806 20 : output(screen, " HAVE_BSWAP32\n");
807 : #endif
808 : #ifdef HAVE_BZERO
809 50 : output(screen, " HAVE_BZERO\n");
810 : #endif
811 : #ifdef HAVE_C99_VSNPRINTF
812 50 : output(screen, " HAVE_C99_VSNPRINTF\n");
813 : #endif
814 : #ifdef HAVE_CAP_GET_PROC
815 50 : output(screen, " HAVE_CAP_GET_PROC\n");
816 : #endif
817 : #ifdef HAVE_CEPH
818 50 : output(screen, " HAVE_CEPH\n");
819 : #endif
820 : #ifdef HAVE_CEPH_FDOPENDIR
821 50 : output(screen, " HAVE_CEPH_FDOPENDIR\n");
822 : #endif
823 : #ifdef HAVE_CEPH_MKDIRAT
824 50 : output(screen, " HAVE_CEPH_MKDIRAT\n");
825 : #endif
826 : #ifdef HAVE_CEPH_OPENAT
827 50 : output(screen, " HAVE_CEPH_OPENAT\n");
828 : #endif
829 : #ifdef HAVE_CEPH_READLINKAT
830 50 : output(screen, " HAVE_CEPH_READLINKAT\n");
831 : #endif
832 : #ifdef HAVE_CEPH_SELECT_FILESYSTEM
833 50 : output(screen, " HAVE_CEPH_SELECT_FILESYSTEM\n");
834 : #endif
835 : #ifdef HAVE_CEPH_STATX
836 50 : output(screen, " HAVE_CEPH_STATX\n");
837 : #endif
838 : #ifdef HAVE_CEPH_STATXAT
839 49 : output(screen, " HAVE_CEPH_STATXAT\n");
840 : #endif
841 : #ifdef HAVE_CEPH_SYMLINKAT
842 31 : output(screen, " HAVE_CEPH_SYMLINKAT\n");
843 : #endif
844 : #ifdef HAVE_CEPH_UNLINKAT
845 50 : output(screen, " HAVE_CEPH_UNLINKAT\n");
846 : #endif
847 : #ifdef HAVE_CGETENT
848 20 : output(screen, " HAVE_CGETENT\n");
849 : #endif
850 : #ifdef HAVE_CHARSET_CP850
851 49 : output(screen, " HAVE_CHARSET_CP850\n");
852 : #endif
853 : #ifdef HAVE_CHARSET_UTF_8
854 31 : output(screen, " HAVE_CHARSET_UTF_8\n");
855 : #endif
856 : #ifdef HAVE_CHECKSUM_IN_KRB5_CHECKSUM
857 50 : output(screen, " HAVE_CHECKSUM_IN_KRB5_CHECKSUM\n");
858 : #endif
859 : #ifdef HAVE_CHFLAGS
860 20 : output(screen, " HAVE_CHFLAGS\n");
861 : #endif
862 : #ifdef HAVE_CHMOD
863 49 : output(screen, " HAVE_CHMOD\n");
864 : #endif
865 : #ifdef HAVE_CHOWN
866 50 : output(screen, " HAVE_CHOWN\n");
867 : #endif
868 : #ifdef HAVE_CHROOT
869 50 : output(screen, " HAVE_CHROOT\n");
870 : #endif
871 : #ifdef HAVE_CHSIZE
872 20 : output(screen, " HAVE_CHSIZE\n");
873 : #endif
874 : #ifdef HAVE_CLEARENV
875 50 : output(screen, " HAVE_CLEARENV\n");
876 : #endif
877 : #ifdef HAVE_CLOCK_GETTIME
878 50 : output(screen, " HAVE_CLOCK_GETTIME\n");
879 : #endif
880 : #ifdef HAVE_CLOCK_MONOTONIC
881 50 : output(screen, " HAVE_CLOCK_MONOTONIC\n");
882 : #endif
883 : #ifdef HAVE_CLOCK_PROCESS_CPUTIME_ID
884 50 : output(screen, " HAVE_CLOCK_PROCESS_CPUTIME_ID\n");
885 : #endif
886 : #ifdef HAVE_CLOCK_REALTIME
887 50 : output(screen, " HAVE_CLOCK_REALTIME\n");
888 : #endif
889 : #ifdef HAVE_CLOSEFROM
890 31 : output(screen, " HAVE_CLOSEFROM\n");
891 : #endif
892 : #ifdef HAVE_COMPARISON_FN_T
893 50 : output(screen, " HAVE_COMPARISON_FN_T\n");
894 : #endif
895 : #ifdef HAVE_COMPILER_WILL_OPTIMIZE_OUT_FNS
896 50 : output(screen, " HAVE_COMPILER_WILL_OPTIMIZE_OUT_FNS\n");
897 : #endif
898 : #ifdef HAVE_CONNECT
899 50 : output(screen, " HAVE_CONNECT\n");
900 : #endif
901 : #ifdef HAVE_CONSTRUCTOR_ATTRIBUTE
902 31 : output(screen, " HAVE_CONSTRUCTOR_ATTRIBUTE\n");
903 : #endif
904 : #ifdef HAVE_COPY_FILE_RANGE
905 49 : output(screen, " HAVE_COPY_FILE_RANGE\n");
906 : #endif
907 : #ifdef HAVE_CPPFUNCTION
908 50 : output(screen, " HAVE_CPPFUNCTION\n");
909 : #endif
910 : #ifdef HAVE_CRYPT
911 50 : output(screen, " HAVE_CRYPT\n");
912 : #endif
913 : #ifdef HAVE_CRYPT16
914 2 : output(screen, " HAVE_CRYPT16\n");
915 : #endif
916 : #ifdef HAVE_CRYPT_R
917 49 : output(screen, " HAVE_CRYPT_R\n");
918 : #endif
919 : #ifdef HAVE_CRYPT_RN
920 49 : output(screen, " HAVE_CRYPT_RN\n");
921 : #endif
922 : #ifdef HAVE_CUPS
923 50 : output(screen, " HAVE_CUPS\n");
924 : #endif
925 : #ifdef HAVE_DARWIN_INITGROUPS
926 21 : output(screen, " HAVE_DARWIN_INITGROUPS\n");
927 : #endif
928 : #ifdef HAVE_DBUS_1
929 50 : output(screen, " HAVE_DBUS_1\n");
930 : #endif
931 : #ifdef HAVE_DECL_ACCEPT
932 49 : output(screen, " HAVE_DECL_ACCEPT\n");
933 : #endif
934 : #ifdef HAVE_DECL_ASPRINTF
935 50 : output(screen, " HAVE_DECL_ASPRINTF\n");
936 : #endif
937 : #ifdef HAVE_DECL_BINDTEXTDOMAIN
938 50 : output(screen, " HAVE_DECL_BINDTEXTDOMAIN\n");
939 : #endif
940 : #ifdef HAVE_DECL_BIND_TEXTDOMAIN_CODESET
941 50 : output(screen, " HAVE_DECL_BIND_TEXTDOMAIN_CODESET\n");
942 : #endif
943 : #ifdef HAVE_DECL_DGETTEXT
944 50 : output(screen, " HAVE_DECL_DGETTEXT\n");
945 : #endif
946 : #ifdef HAVE_DECL_DLOPEN
947 50 : output(screen, " HAVE_DECL_DLOPEN\n");
948 : #endif
949 : #ifdef HAVE_DECL_ENDHOSTENT
950 50 : output(screen, " HAVE_DECL_ENDHOSTENT\n");
951 : #endif
952 : #ifdef HAVE_DECL_EVENTFD
953 50 : output(screen, " HAVE_DECL_EVENTFD\n");
954 : #endif
955 : #ifdef HAVE_DECL_EWOULDBLOCK
956 50 : output(screen, " HAVE_DECL_EWOULDBLOCK\n");
957 : #endif
958 : #ifdef HAVE_DECL_FDATASYNC
959 50 : output(screen, " HAVE_DECL_FDATASYNC\n");
960 : #endif
961 : #ifdef HAVE_DECL_FS_COMPR_FL
962 50 : output(screen, " HAVE_DECL_FS_COMPR_FL\n");
963 : #endif
964 : #ifdef HAVE_DECL_FS_IOC_GETFLAGS
965 50 : output(screen, " HAVE_DECL_FS_IOC_GETFLAGS\n");
966 : #endif
967 : #ifdef HAVE_DECL_GETGRENT_R
968 50 : output(screen, " HAVE_DECL_GETGRENT_R\n");
969 : #endif
970 : #ifdef HAVE_DECL_GETGRGID_R
971 50 : output(screen, " HAVE_DECL_GETGRGID_R\n");
972 : #endif
973 : #ifdef HAVE_DECL_GETGRNAM_R
974 50 : output(screen, " HAVE_DECL_GETGRNAM_R\n");
975 : #endif
976 : #ifdef HAVE_DECL_GETHOSTNAME
977 50 : output(screen, " HAVE_DECL_GETHOSTNAME\n");
978 : #endif
979 : #ifdef HAVE_DECL_GETNAMEINFO
980 50 : output(screen, " HAVE_DECL_GETNAMEINFO\n");
981 : #endif
982 : #ifdef HAVE_DECL_GETPWENT_R
983 50 : output(screen, " HAVE_DECL_GETPWENT_R\n");
984 : #endif
985 : #ifdef HAVE_DECL_GETPWNAM_R
986 50 : output(screen, " HAVE_DECL_GETPWNAM_R\n");
987 : #endif
988 : #ifdef HAVE_DECL_GETPWUID_R
989 50 : output(screen, " HAVE_DECL_GETPWUID_R\n");
990 : #endif
991 : #ifdef HAVE_DECL_GETTEXT
992 50 : output(screen, " HAVE_DECL_GETTEXT\n");
993 : #endif
994 : #ifdef HAVE_DECL_GETTIMEOFDAY
995 50 : output(screen, " HAVE_DECL_GETTIMEOFDAY\n");
996 : #endif
997 : #ifdef HAVE_DECL_H_ERRNO
998 50 : output(screen, " HAVE_DECL_H_ERRNO\n");
999 : #endif
1000 : #ifdef HAVE_DECL_IOCTL
1001 50 : output(screen, " HAVE_DECL_IOCTL\n");
1002 : #endif
1003 : #ifdef HAVE_DECL_KRB5_AUTH_CON_SET_REQ_CKSUMTYPE
1004 31 : output(screen, " HAVE_DECL_KRB5_AUTH_CON_SET_REQ_CKSUMTYPE\n");
1005 : #endif
1006 : #ifdef HAVE_DECL_KRB5_GET_CREDENTIALS_FOR_USER
1007 50 : output(screen, " HAVE_DECL_KRB5_GET_CREDENTIALS_FOR_USER\n");
1008 : #endif
1009 : #ifdef HAVE_DECL_KRB5_PAC_GET_BUFFER
1010 31 : output(screen, " HAVE_DECL_KRB5_PAC_GET_BUFFER\n");
1011 : #endif
1012 : #ifdef HAVE_DECL_MALLOC
1013 49 : output(screen, " HAVE_DECL_MALLOC\n");
1014 : #endif
1015 : #ifdef HAVE_DECL_MEMALIGN
1016 50 : output(screen, " HAVE_DECL_MEMALIGN\n");
1017 : #endif
1018 : #ifdef HAVE_DECL_NS_NAME_COMPRESS
1019 49 : output(screen, " HAVE_DECL_NS_NAME_COMPRESS\n");
1020 : #endif
1021 : #ifdef HAVE_DECL_PAM_PROMPT
1022 21 : output(screen, " HAVE_DECL_PAM_PROMPT\n");
1023 : #endif
1024 : #ifdef HAVE_DECL_PAM_STRERROR
1025 49 : output(screen, " HAVE_DECL_PAM_STRERROR\n");
1026 : #endif
1027 : #ifdef HAVE_DECL_PAM_VPROMPT
1028 21 : output(screen, " HAVE_DECL_PAM_VPROMPT\n");
1029 : #endif
1030 : #ifdef HAVE_DECL_PTHREAD_MUTEX_ROBUST
1031 30 : output(screen, " HAVE_DECL_PTHREAD_MUTEX_ROBUST\n");
1032 : #endif
1033 : #ifdef HAVE_DECL_READAHEAD
1034 50 : output(screen, " HAVE_DECL_READAHEAD\n");
1035 : #endif
1036 : #ifdef HAVE_DECL_RECVMMSG
1037 50 : output(screen, " HAVE_DECL_RECVMMSG\n");
1038 : #endif
1039 : #ifdef HAVE_DECL_RL_EVENT_HOOK
1040 49 : output(screen, " HAVE_DECL_RL_EVENT_HOOK\n");
1041 : #endif
1042 : #ifdef HAVE_DECL_SENDMMSG
1043 50 : output(screen, " HAVE_DECL_SENDMMSG\n");
1044 : #endif
1045 : #ifdef HAVE_DECL_SETGRENT
1046 50 : output(screen, " HAVE_DECL_SETGRENT\n");
1047 : #endif
1048 : #ifdef HAVE_DECL_SETGROUPS
1049 21 : output(screen, " HAVE_DECL_SETGROUPS\n");
1050 : #endif
1051 : #ifdef HAVE_DECL_SETHOSTENT
1052 49 : output(screen, " HAVE_DECL_SETHOSTENT\n");
1053 : #endif
1054 : #ifdef HAVE_DECL_SNPRINTF
1055 50 : output(screen, " HAVE_DECL_SNPRINTF\n");
1056 : #endif
1057 : #ifdef HAVE_DECL_STRPTIME
1058 50 : output(screen, " HAVE_DECL_STRPTIME\n");
1059 : #endif
1060 : #ifdef HAVE_DECL_SYSCALL
1061 31 : output(screen, " HAVE_DECL_SYSCALL\n");
1062 : #endif
1063 : #ifdef HAVE_DECL_TEXTDOMAIN
1064 50 : output(screen, " HAVE_DECL_TEXTDOMAIN\n");
1065 : #endif
1066 : #ifdef HAVE_DECL_VASPRINTF
1067 50 : output(screen, " HAVE_DECL_VASPRINTF\n");
1068 : #endif
1069 : #ifdef HAVE_DECL_VSNPRINTF
1070 30 : output(screen, " HAVE_DECL_VSNPRINTF\n");
1071 : #endif
1072 : #ifdef HAVE_DECL__RES
1073 50 : output(screen, " HAVE_DECL__RES\n");
1074 : #endif
1075 : #ifdef HAVE_DESTRUCTOR_ATTRIBUTE
1076 50 : output(screen, " HAVE_DESTRUCTOR_ATTRIBUTE\n");
1077 : #endif
1078 : #ifdef HAVE_DES_PCBC_ENCRYPT
1079 19 : output(screen, " HAVE_DES_PCBC_ENCRYPT\n");
1080 : #endif
1081 : #ifdef HAVE_DEVICE_MAJOR_FN
1082 50 : output(screen, " HAVE_DEVICE_MAJOR_FN\n");
1083 : #endif
1084 : #ifdef HAVE_DEVICE_MINOR_FN
1085 49 : output(screen, " HAVE_DEVICE_MINOR_FN\n");
1086 : #endif
1087 : #ifdef HAVE_DEVNM
1088 21 : output(screen, " HAVE_DEVNM\n");
1089 : #endif
1090 : #ifdef HAVE_DGETTEXT
1091 50 : output(screen, " HAVE_DGETTEXT\n");
1092 : #endif
1093 : #ifdef HAVE_DIRENT_D_OFF
1094 49 : output(screen, " HAVE_DIRENT_D_OFF\n");
1095 : #endif
1096 : #ifdef HAVE_DIRFD
1097 49 : output(screen, " HAVE_DIRFD\n");
1098 : #endif
1099 : #ifdef HAVE_DIRFD_DECL
1100 31 : output(screen, " HAVE_DIRFD_DECL\n");
1101 : #endif
1102 : #ifdef HAVE_DIRNAME
1103 31 : output(screen, " HAVE_DIRNAME\n");
1104 : #endif
1105 : #ifdef HAVE_DIR_DD_FD
1106 21 : output(screen, " HAVE_DIR_DD_FD\n");
1107 : #endif
1108 : #ifdef HAVE_DLCLOSE
1109 50 : output(screen, " HAVE_DLCLOSE\n");
1110 : #endif
1111 : #ifdef HAVE_DLERROR
1112 29 : output(screen, " HAVE_DLERROR\n");
1113 : #endif
1114 : #ifdef HAVE_DLOPEN
1115 49 : output(screen, " HAVE_DLOPEN\n");
1116 : #endif
1117 : #ifdef HAVE_DLSYM
1118 49 : output(screen, " HAVE_DLSYM\n");
1119 : #endif
1120 : #ifdef HAVE_DM_GET_EVENTLIST
1121 21 : output(screen, " HAVE_DM_GET_EVENTLIST\n");
1122 : #endif
1123 : #ifdef HAVE_DNSSERVICEREGISTER
1124 21 : output(screen, " HAVE_DNSSERVICEREGISTER\n");
1125 : #endif
1126 : #ifdef HAVE_DNS_SEARCH
1127 19 : output(screen, " HAVE_DNS_SEARCH\n");
1128 : #endif
1129 : #ifdef HAVE_DN_EXPAND
1130 49 : output(screen, " HAVE_DN_EXPAND\n");
1131 : #endif
1132 : #ifdef HAVE_DPRINTF
1133 49 : output(screen, " HAVE_DPRINTF\n");
1134 : #endif
1135 : #ifdef HAVE_DQB_FSOFTLIMIT
1136 21 : output(screen, " HAVE_DQB_FSOFTLIMIT\n");
1137 : #endif
1138 : #ifdef HAVE_DUP2
1139 50 : output(screen, " HAVE_DUP2\n");
1140 : #endif
1141 : #ifdef HAVE_ENCTYPE_AES128_CTS_HMAC_SHA1_96
1142 49 : output(screen, " HAVE_ENCTYPE_AES128_CTS_HMAC_SHA1_96\n");
1143 : #endif
1144 : #ifdef HAVE_ENCTYPE_AES256_CTS_HMAC_SHA1_96
1145 50 : output(screen, " HAVE_ENCTYPE_AES256_CTS_HMAC_SHA1_96\n");
1146 : #endif
1147 : #ifdef HAVE_ENCTYPE_ARCFOUR_HMAC
1148 50 : output(screen, " HAVE_ENCTYPE_ARCFOUR_HMAC\n");
1149 : #endif
1150 : #ifdef HAVE_ENCTYPE_ARCFOUR_HMAC_MD5
1151 50 : output(screen, " HAVE_ENCTYPE_ARCFOUR_HMAC_MD5\n");
1152 : #endif
1153 : #ifdef HAVE_ENCTYPE_ARCFOUR_HMAC_MD5_56
1154 50 : output(screen, " HAVE_ENCTYPE_ARCFOUR_HMAC_MD5_56\n");
1155 : #endif
1156 : #ifdef HAVE_ENDHOSTENT
1157 50 : output(screen, " HAVE_ENDHOSTENT\n");
1158 : #endif
1159 : #ifdef HAVE_ENDMNTENT
1160 50 : output(screen, " HAVE_ENDMNTENT\n");
1161 : #endif
1162 : #ifdef HAVE_ENVIRON_DECL
1163 50 : output(screen, " HAVE_ENVIRON_DECL\n");
1164 : #endif
1165 : #ifdef HAVE_EPOLL
1166 31 : output(screen, " HAVE_EPOLL\n");
1167 : #endif
1168 : #ifdef HAVE_EPOLL_CREATE1
1169 50 : output(screen, " HAVE_EPOLL_CREATE1\n");
1170 : #endif
1171 : #ifdef HAVE_ERR
1172 50 : output(screen, " HAVE_ERR\n");
1173 : #endif
1174 : #ifdef HAVE_ERRNO_DECL
1175 50 : output(screen, " HAVE_ERRNO_DECL\n");
1176 : #endif
1177 : #ifdef HAVE_ERRX
1178 50 : output(screen, " HAVE_ERRX\n");
1179 : #endif
1180 : #ifdef HAVE_ETHTOOL
1181 50 : output(screen, " HAVE_ETHTOOL\n");
1182 : #endif
1183 : #ifdef HAVE_ETYPE_IN_ENCRYPTEDDATA
1184 50 : output(screen, " HAVE_ETYPE_IN_ENCRYPTEDDATA\n");
1185 : #endif
1186 : #ifdef HAVE_EVENTFD
1187 31 : output(screen, " HAVE_EVENTFD\n");
1188 : #endif
1189 : #ifdef HAVE_EVENTFD_UNSIGNED_INT
1190 50 : output(screen, " HAVE_EVENTFD_UNSIGNED_INT\n");
1191 : #endif
1192 : #ifdef HAVE_EXECL
1193 50 : output(screen, " HAVE_EXECL\n");
1194 : #endif
1195 : #ifdef HAVE_E_DATA_POINTER_IN_KRB5_ERROR
1196 50 : output(screen, " HAVE_E_DATA_POINTER_IN_KRB5_ERROR\n");
1197 : #endif
1198 : #ifdef HAVE_FALLOCATE
1199 49 : output(screen, " HAVE_FALLOCATE\n");
1200 : #endif
1201 : #ifdef HAVE_FALLOC_FL_PUNCH_HOLE
1202 50 : output(screen, " HAVE_FALLOC_FL_PUNCH_HOLE\n");
1203 : #endif
1204 : #ifdef HAVE_FALLTHROUGH_ATTRIBUTE
1205 50 : output(screen, " HAVE_FALLTHROUGH_ATTRIBUTE\n");
1206 : #endif
1207 : #ifdef HAVE_FCHFLAGS
1208 21 : output(screen, " HAVE_FCHFLAGS\n");
1209 : #endif
1210 : #ifdef HAVE_FCHMOD
1211 50 : output(screen, " HAVE_FCHMOD\n");
1212 : #endif
1213 : #ifdef HAVE_FCHOWN
1214 49 : output(screen, " HAVE_FCHOWN\n");
1215 : #endif
1216 : #ifdef HAVE_FCNTL64
1217 50 : output(screen, " HAVE_FCNTL64\n");
1218 : #endif
1219 : #ifdef HAVE_FCNTL_LOCK
1220 50 : output(screen, " HAVE_FCNTL_LOCK\n");
1221 : #endif
1222 : #ifdef HAVE_FDATASYNC
1223 50 : output(screen, " HAVE_FDATASYNC\n");
1224 : #endif
1225 : #ifdef HAVE_FDOPENDIR
1226 50 : output(screen, " HAVE_FDOPENDIR\n");
1227 : #endif
1228 : #ifdef HAVE_FLAGS_IN_KRB5_CREDS
1229 50 : output(screen, " HAVE_FLAGS_IN_KRB5_CREDS\n");
1230 : #endif
1231 : #ifdef HAVE_FLOCK
1232 50 : output(screen, " HAVE_FLOCK\n");
1233 : #endif
1234 : #ifdef HAVE_FMEMOPEN
1235 49 : output(screen, " HAVE_FMEMOPEN\n");
1236 : #endif
1237 : #ifdef HAVE_FOPEN64
1238 31 : output(screen, " HAVE_FOPEN64\n");
1239 : #endif
1240 : #ifdef HAVE_FREEADDRINFO
1241 50 : output(screen, " HAVE_FREEADDRINFO\n");
1242 : #endif
1243 : #ifdef HAVE_FREEHOSTENT
1244 21 : output(screen, " HAVE_FREEHOSTENT\n");
1245 : #endif
1246 : #ifdef HAVE_FREEIFADDRS
1247 50 : output(screen, " HAVE_FREEIFADDRS\n");
1248 : #endif
1249 : #ifdef HAVE_FREE_CHECKSUM
1250 30 : output(screen, " HAVE_FREE_CHECKSUM\n");
1251 : #endif
1252 : #ifdef HAVE_FRSIZE
1253 50 : output(screen, " HAVE_FRSIZE\n");
1254 : #endif
1255 : #ifdef HAVE_FSEEKO
1256 50 : output(screen, " HAVE_FSEEKO\n");
1257 : #endif
1258 : #ifdef HAVE_FSID_INT
1259 50 : output(screen, " HAVE_FSID_INT\n");
1260 : #endif
1261 : #ifdef HAVE_FSYNC
1262 50 : output(screen, " HAVE_FSYNC\n");
1263 : #endif
1264 : #ifdef HAVE_FTRUNCATE
1265 50 : output(screen, " HAVE_FTRUNCATE\n");
1266 : #endif
1267 : #ifdef HAVE_FTRUNCATE_EXTEND
1268 50 : output(screen, " HAVE_FTRUNCATE_EXTEND\n");
1269 : #endif
1270 : #ifdef HAVE_FUNCTION_ATTRIBUTE_FORMAT
1271 50 : output(screen, " HAVE_FUNCTION_ATTRIBUTE_FORMAT\n");
1272 : #endif
1273 : #ifdef HAVE_FUNCTION_MACRO
1274 50 : output(screen, " HAVE_FUNCTION_MACRO\n");
1275 : #endif
1276 : #ifdef HAVE_FUTIMENS
1277 50 : output(screen, " HAVE_FUTIMENS\n");
1278 : #endif
1279 : #ifdef HAVE_F_OWNER_EX
1280 49 : output(screen, " HAVE_F_OWNER_EX\n");
1281 : #endif
1282 : #ifdef HAVE_F_SETLEASE_DECL
1283 31 : output(screen, " HAVE_F_SETLEASE_DECL\n");
1284 : #endif
1285 : #ifdef HAVE_GAI_STRERROR
1286 50 : output(screen, " HAVE_GAI_STRERROR\n");
1287 : #endif
1288 : #ifdef HAVE_GCC_ATOMIC_BUILTINS
1289 21 : output(screen, " HAVE_GCC_ATOMIC_BUILTINS\n");
1290 : #endif
1291 : #ifdef HAVE_GCC_THREAD_LOCAL_STORAGE
1292 49 : output(screen, " HAVE_GCC_THREAD_LOCAL_STORAGE\n");
1293 : #endif
1294 : #ifdef HAVE_GCC_VOLATILE_MEMORY_PROTECTION
1295 49 : output(screen, " HAVE_GCC_VOLATILE_MEMORY_PROTECTION\n");
1296 : #endif
1297 : #ifdef HAVE_GETADDRINFO
1298 50 : output(screen, " HAVE_GETADDRINFO\n");
1299 : #endif
1300 : #ifdef HAVE_GETAUTHUID
1301 21 : output(screen, " HAVE_GETAUTHUID\n");
1302 : #endif
1303 : #ifdef HAVE_GETAUXVAL
1304 50 : output(screen, " HAVE_GETAUXVAL\n");
1305 : #endif
1306 : #ifdef HAVE_GETCWD
1307 49 : output(screen, " HAVE_GETCWD\n");
1308 : #endif
1309 : #ifdef HAVE_GETDOMAINNAME
1310 50 : output(screen, " HAVE_GETDOMAINNAME\n");
1311 : #endif
1312 : #ifdef HAVE_GETGRENT
1313 50 : output(screen, " HAVE_GETGRENT\n");
1314 : #endif
1315 : #ifdef HAVE_GETGRENT_R
1316 50 : output(screen, " HAVE_GETGRENT_R\n");
1317 : #endif
1318 : #ifdef HAVE_GETGRENT_R_DECL
1319 50 : output(screen, " HAVE_GETGRENT_R_DECL\n");
1320 : #endif
1321 : #ifdef HAVE_GETGRGID_R
1322 31 : output(screen, " HAVE_GETGRGID_R\n");
1323 : #endif
1324 : #ifdef HAVE_GETGRNAM
1325 30 : output(screen, " HAVE_GETGRNAM\n");
1326 : #endif
1327 : #ifdef HAVE_GETGRNAM_R
1328 50 : output(screen, " HAVE_GETGRNAM_R\n");
1329 : #endif
1330 : #ifdef HAVE_GETGROUPLIST
1331 50 : output(screen, " HAVE_GETGROUPLIST\n");
1332 : #endif
1333 : #ifdef HAVE_GETGRSET
1334 21 : output(screen, " HAVE_GETGRSET\n");
1335 : #endif
1336 : #ifdef HAVE_GETHOSTBYADDR
1337 50 : output(screen, " HAVE_GETHOSTBYADDR\n");
1338 : #endif
1339 : #ifdef HAVE_GETHOSTBYADDR_R
1340 49 : output(screen, " HAVE_GETHOSTBYADDR_R\n");
1341 : #endif
1342 : #ifdef HAVE_GETHOSTBYNAME
1343 50 : output(screen, " HAVE_GETHOSTBYNAME\n");
1344 : #endif
1345 : #ifdef HAVE_GETHOSTBYNAME2
1346 50 : output(screen, " HAVE_GETHOSTBYNAME2\n");
1347 : #endif
1348 : #ifdef HAVE_GETHOSTBYNAME2_R
1349 50 : output(screen, " HAVE_GETHOSTBYNAME2_R\n");
1350 : #endif
1351 : #ifdef HAVE_GETHOSTBYNAME_R
1352 50 : output(screen, " HAVE_GETHOSTBYNAME_R\n");
1353 : #endif
1354 : #ifdef HAVE_GETHOSTENT
1355 50 : output(screen, " HAVE_GETHOSTENT\n");
1356 : #endif
1357 : #ifdef HAVE_GETHOSTENT_R
1358 49 : output(screen, " HAVE_GETHOSTENT_R\n");
1359 : #endif
1360 : #ifdef HAVE_GETHOSTNAME
1361 49 : output(screen, " HAVE_GETHOSTNAME\n");
1362 : #endif
1363 : #ifdef HAVE_GETIFADDRS
1364 50 : output(screen, " HAVE_GETIFADDRS\n");
1365 : #endif
1366 : #ifdef HAVE_GETIPNODEBYADDR
1367 2 : output(screen, " HAVE_GETIPNODEBYADDR\n");
1368 : #endif
1369 : #ifdef HAVE_GETIPNODEBYNAME
1370 21 : output(screen, " HAVE_GETIPNODEBYNAME\n");
1371 : #endif
1372 : #ifdef HAVE_GETMNTENT
1373 49 : output(screen, " HAVE_GETMNTENT\n");
1374 : #endif
1375 : #ifdef HAVE_GETNAMEINFO
1376 49 : output(screen, " HAVE_GETNAMEINFO\n");
1377 : #endif
1378 : #ifdef HAVE_GETPAGESIZE
1379 49 : output(screen, " HAVE_GETPAGESIZE\n");
1380 : #endif
1381 : #ifdef HAVE_GETPEEREID
1382 49 : output(screen, " HAVE_GETPEEREID\n");
1383 : #endif
1384 : #ifdef HAVE_GETPGRP
1385 50 : output(screen, " HAVE_GETPGRP\n");
1386 : #endif
1387 : #ifdef HAVE_GETPROGNAME
1388 21 : output(screen, " HAVE_GETPROGNAME\n");
1389 : #endif
1390 : #ifdef HAVE_GETPWANAM
1391 21 : output(screen, " HAVE_GETPWANAM\n");
1392 : #endif
1393 : #ifdef HAVE_GETPWENT_R
1394 49 : output(screen, " HAVE_GETPWENT_R\n");
1395 : #endif
1396 : #ifdef HAVE_GETPWENT_R_DECL
1397 49 : output(screen, " HAVE_GETPWENT_R_DECL\n");
1398 : #endif
1399 : #ifdef HAVE_GETPWNAM
1400 50 : output(screen, " HAVE_GETPWNAM\n");
1401 : #endif
1402 : #ifdef HAVE_GETPWNAM_R
1403 50 : output(screen, " HAVE_GETPWNAM_R\n");
1404 : #endif
1405 : #ifdef HAVE_GETPWUID_R
1406 50 : output(screen, " HAVE_GETPWUID_R\n");
1407 : #endif
1408 : #ifdef HAVE_GETQUOTA_RSLT_GETQUOTA_RSLT_U
1409 50 : output(screen, " HAVE_GETQUOTA_RSLT_GETQUOTA_RSLT_U\n");
1410 : #endif
1411 : #ifdef HAVE_GETRANDOM
1412 50 : output(screen, " HAVE_GETRANDOM\n");
1413 : #endif
1414 : #ifdef HAVE_GETRESGID
1415 50 : output(screen, " HAVE_GETRESGID\n");
1416 : #endif
1417 : #ifdef HAVE_GETRESUID
1418 50 : output(screen, " HAVE_GETRESUID\n");
1419 : #endif
1420 : #ifdef HAVE_GETRLIMIT
1421 50 : output(screen, " HAVE_GETRLIMIT\n");
1422 : #endif
1423 : #ifdef HAVE_GETSPNAM
1424 49 : output(screen, " HAVE_GETSPNAM\n");
1425 : #endif
1426 : #ifdef HAVE_GETTEXT
1427 50 : output(screen, " HAVE_GETTEXT\n");
1428 : #endif
1429 : #ifdef HAVE_GETTIMEOFDAY_TZ
1430 50 : output(screen, " HAVE_GETTIMEOFDAY_TZ\n");
1431 : #endif
1432 : #ifdef HAVE_GETTIMEOFDAY_TZ_VOID
1433 21 : output(screen, " HAVE_GETTIMEOFDAY_TZ_VOID\n");
1434 : #endif
1435 : #ifdef HAVE_GETXATTR
1436 50 : output(screen, " HAVE_GETXATTR\n");
1437 : #endif
1438 : #ifdef HAVE_GET_CURRENT_DIR_NAME
1439 49 : output(screen, " HAVE_GET_CURRENT_DIR_NAME\n");
1440 : #endif
1441 : #ifdef HAVE_GLIB
1442 50 : output(screen, " HAVE_GLIB\n");
1443 : #endif
1444 : #ifdef HAVE_GLIB_2_0
1445 49 : output(screen, " HAVE_GLIB_2_0\n");
1446 : #endif
1447 : #ifdef HAVE_GLOB
1448 50 : output(screen, " HAVE_GLOB\n");
1449 : #endif
1450 : #ifdef HAVE_GLUSTERFS
1451 49 : output(screen, " HAVE_GLUSTERFS\n");
1452 : #endif
1453 : #ifdef HAVE_GNUTLS
1454 21 : output(screen, " HAVE_GNUTLS\n");
1455 : #endif
1456 : #ifdef HAVE_GNUTLS_FIPS_MODE_SUPPORTED
1457 50 : output(screen, " HAVE_GNUTLS_FIPS_MODE_SUPPORTED\n");
1458 : #endif
1459 : #ifdef HAVE_GPFS
1460 20 : output(screen, " HAVE_GPFS\n");
1461 : #endif
1462 : #ifdef HAVE_GPGME
1463 50 : output(screen, " HAVE_GPGME\n");
1464 : #endif
1465 : #ifdef HAVE_GPGME_NEW
1466 49 : output(screen, " HAVE_GPGME_NEW\n");
1467 : #endif
1468 : #ifdef HAVE_GRANTPT
1469 50 : output(screen, " HAVE_GRANTPT\n");
1470 : #endif
1471 : #ifdef HAVE_GSSAPI
1472 50 : output(screen, " HAVE_GSSAPI\n");
1473 : #endif
1474 : #ifdef HAVE_GSSKRB5_EXTRACT_AUTHZ_DATA_FROM_SEC_CONTEXT
1475 50 : output(screen, " HAVE_GSSKRB5_EXTRACT_AUTHZ_DATA_FROM_SEC_CONTEXT\n");
1476 : #endif
1477 : #ifdef HAVE_GSSKRB5_GET_SUBKEY
1478 50 : output(screen, " HAVE_GSSKRB5_GET_SUBKEY\n");
1479 : #endif
1480 : #ifdef HAVE_GSS_DISPLAY_STATUS
1481 50 : output(screen, " HAVE_GSS_DISPLAY_STATUS\n");
1482 : #endif
1483 : #ifdef HAVE_GSS_EXPORT_CRED
1484 50 : output(screen, " HAVE_GSS_EXPORT_CRED\n");
1485 : #endif
1486 : #ifdef HAVE_GSS_IMPORT_CRED
1487 50 : output(screen, " HAVE_GSS_IMPORT_CRED\n");
1488 : #endif
1489 : #ifdef HAVE_GSS_INQUIRE_SEC_CONTEXT_BY_OID
1490 50 : output(screen, " HAVE_GSS_INQUIRE_SEC_CONTEXT_BY_OID\n");
1491 : #endif
1492 : #ifdef HAVE_GSS_KRB5_CRED_NO_CI_FLAGS_X
1493 50 : output(screen, " HAVE_GSS_KRB5_CRED_NO_CI_FLAGS_X\n");
1494 : #endif
1495 : #ifdef HAVE_GSS_KRB5_EXPORT_LUCID_SEC_CONTEXT
1496 31 : output(screen, " HAVE_GSS_KRB5_EXPORT_LUCID_SEC_CONTEXT\n");
1497 : #endif
1498 : #ifdef HAVE_GSS_KRB5_IMPORT_CRED
1499 31 : output(screen, " HAVE_GSS_KRB5_IMPORT_CRED\n");
1500 : #endif
1501 : #ifdef HAVE_GSS_OID_EQUAL
1502 31 : output(screen, " HAVE_GSS_OID_EQUAL\n");
1503 : #endif
1504 : #ifdef HAVE_GSS_WRAP_IOV
1505 31 : output(screen, " HAVE_GSS_WRAP_IOV\n");
1506 : #endif
1507 : #ifdef HAVE_HISTORY_LIST
1508 49 : output(screen, " HAVE_HISTORY_LIST\n");
1509 : #endif
1510 : #ifdef HAVE_HSTRERROR
1511 50 : output(screen, " HAVE_HSTRERROR\n");
1512 : #endif
1513 : #ifdef HAVE_HTTPCONNECT
1514 50 : output(screen, " HAVE_HTTPCONNECT\n");
1515 : #endif
1516 : #ifdef HAVE_HTTPCONNECT2
1517 31 : output(screen, " HAVE_HTTPCONNECT2\n");
1518 : #endif
1519 : #ifdef HAVE_HTTPCONNECTENCRYPT
1520 50 : output(screen, " HAVE_HTTPCONNECTENCRYPT\n");
1521 : #endif
1522 : #ifdef HAVE_H_ERRNO
1523 50 : output(screen, " HAVE_H_ERRNO\n");
1524 : #endif
1525 : #ifdef HAVE_ICONV
1526 49 : output(screen, " HAVE_ICONV\n");
1527 : #endif
1528 : #ifdef HAVE_ICONV_ERRNO_ILLEGAL_MULTIBYTE
1529 49 : output(screen, " HAVE_ICONV_ERRNO_ILLEGAL_MULTIBYTE\n");
1530 : #endif
1531 : #ifdef HAVE_ICONV_OPEN
1532 30 : output(screen, " HAVE_ICONV_OPEN\n");
1533 : #endif
1534 : #ifdef HAVE_ICU_I18N
1535 49 : output(screen, " HAVE_ICU_I18N\n");
1536 : #endif
1537 : #ifdef HAVE_IFACE_AIX
1538 50 : output(screen, " HAVE_IFACE_AIX\n");
1539 : #endif
1540 : #ifdef HAVE_IFACE_GETIFADDRS
1541 21 : output(screen, " HAVE_IFACE_GETIFADDRS\n");
1542 : #endif
1543 : #ifdef HAVE_IFACE_IFCONF
1544 20 : output(screen, " HAVE_IFACE_IFCONF\n");
1545 : #endif
1546 : #ifdef HAVE_IFACE_IFREQ
1547 19 : output(screen, " HAVE_IFACE_IFREQ\n");
1548 : #endif
1549 : #ifdef HAVE_IF_NAMEINDEX
1550 20 : output(screen, " HAVE_IF_NAMEINDEX\n");
1551 : #endif
1552 : #ifdef HAVE_IF_NAMETOINDEX
1553 49 : output(screen, " HAVE_IF_NAMETOINDEX\n");
1554 : #endif
1555 : #ifdef HAVE_IMMEDIATE_STRUCTURES
1556 50 : output(screen, " HAVE_IMMEDIATE_STRUCTURES\n");
1557 : #endif
1558 : #ifdef HAVE_INCOHERENT_MMAP
1559 50 : output(screen, " HAVE_INCOHERENT_MMAP\n");
1560 : #endif
1561 : #ifdef HAVE_INET_ATON
1562 20 : output(screen, " HAVE_INET_ATON\n");
1563 : #endif
1564 : #ifdef HAVE_INET_NTOA
1565 49 : output(screen, " HAVE_INET_NTOA\n");
1566 : #endif
1567 : #ifdef HAVE_INET_NTOP
1568 50 : output(screen, " HAVE_INET_NTOP\n");
1569 : #endif
1570 : #ifdef HAVE_INET_PTON
1571 31 : output(screen, " HAVE_INET_PTON\n");
1572 : #endif
1573 : #ifdef HAVE_INFLATEINIT2
1574 50 : output(screen, " HAVE_INFLATEINIT2\n");
1575 : #endif
1576 : #ifdef HAVE_INITGROUPS
1577 21 : output(screen, " HAVE_INITGROUPS\n");
1578 : #endif
1579 : #ifdef HAVE_INITIALIZE_KRB5_ERROR_TABLE
1580 49 : output(screen, " HAVE_INITIALIZE_KRB5_ERROR_TABLE\n");
1581 : #endif
1582 : #ifdef HAVE_INITSCR
1583 50 : output(screen, " HAVE_INITSCR\n");
1584 : #endif
1585 : #ifdef HAVE_INNETGR
1586 50 : output(screen, " HAVE_INNETGR\n");
1587 : #endif
1588 : #ifdef HAVE_INOTIFY
1589 50 : output(screen, " HAVE_INOTIFY\n");
1590 : #endif
1591 : #ifdef HAVE_INOTIFY_INIT
1592 50 : output(screen, " HAVE_INOTIFY_INIT\n");
1593 : #endif
1594 : #ifdef HAVE_INO_T
1595 50 : output(screen, " HAVE_INO_T\n");
1596 : #endif
1597 : #ifdef HAVE_INT16_T
1598 50 : output(screen, " HAVE_INT16_T\n");
1599 : #endif
1600 : #ifdef HAVE_INT32_T
1601 49 : output(screen, " HAVE_INT32_T\n");
1602 : #endif
1603 : #ifdef HAVE_INT64_T
1604 50 : output(screen, " HAVE_INT64_T\n");
1605 : #endif
1606 : #ifdef HAVE_INT8_T
1607 50 : output(screen, " HAVE_INT8_T\n");
1608 : #endif
1609 : #ifdef HAVE_INTPTR_T
1610 50 : output(screen, " HAVE_INTPTR_T\n");
1611 : #endif
1612 : #ifdef HAVE_IOCTL_INT
1613 50 : output(screen, " HAVE_IOCTL_INT\n");
1614 : #endif
1615 : #ifdef HAVE_IO_URING_RING_DONTFORK
1616 21 : output(screen, " HAVE_IO_URING_RING_DONTFORK\n");
1617 : #endif
1618 : #ifdef HAVE_IPRINT
1619 30 : output(screen, " HAVE_IPRINT\n");
1620 : #endif
1621 : #ifdef HAVE_IPV6
1622 50 : output(screen, " HAVE_IPV6\n");
1623 : #endif
1624 : #ifdef HAVE_IPV6_V6ONLY
1625 50 : output(screen, " HAVE_IPV6_V6ONLY\n");
1626 : #endif
1627 : #ifdef HAVE_IRUSEROK
1628 50 : output(screen, " HAVE_IRUSEROK\n");
1629 : #endif
1630 : #ifdef HAVE_ISATTY
1631 50 : output(screen, " HAVE_ISATTY\n");
1632 : #endif
1633 : #ifdef HAVE_ITEM_COUNT
1634 31 : output(screen, " HAVE_ITEM_COUNT\n");
1635 : #endif
1636 : #ifdef HAVE_JANSSON
1637 50 : output(screen, " HAVE_JANSSON\n");
1638 : #endif
1639 : #ifdef HAVE_JSON_OBJECT
1640 31 : output(screen, " HAVE_JSON_OBJECT\n");
1641 : #endif
1642 : #ifdef HAVE_KERNEL_OPLOCKS_LINUX
1643 31 : output(screen, " HAVE_KERNEL_OPLOCKS_LINUX\n");
1644 : #endif
1645 : #ifdef HAVE_KEYCTL_GET_PERSISTENT
1646 31 : output(screen, " HAVE_KEYCTL_GET_PERSISTENT\n");
1647 : #endif
1648 : #ifdef HAVE_KRB5
1649 31 : output(screen, " HAVE_KRB5\n");
1650 : #endif
1651 : #ifdef HAVE_KRB5_ADDLOG_FUNC_NEED_CONTEXT
1652 31 : output(screen, " HAVE_KRB5_ADDLOG_FUNC_NEED_CONTEXT\n");
1653 : #endif
1654 : #ifdef HAVE_KRB5_ADDRESSES
1655 50 : output(screen, " HAVE_KRB5_ADDRESSES\n");
1656 : #endif
1657 : #ifdef HAVE_KRB5_AUTH_CON_SETKEY
1658 50 : output(screen, " HAVE_KRB5_AUTH_CON_SETKEY\n");
1659 : #endif
1660 : #ifdef HAVE_KRB5_CC_COPY_CACHE
1661 49 : output(screen, " HAVE_KRB5_CC_COPY_CACHE\n");
1662 : #endif
1663 : #ifdef HAVE_KRB5_CC_GET_LIFETIME
1664 31 : output(screen, " HAVE_KRB5_CC_GET_LIFETIME\n");
1665 : #endif
1666 : #ifdef HAVE_KRB5_CONFIG_GET_BOOL_DEFAULT
1667 50 : output(screen, " HAVE_KRB5_CONFIG_GET_BOOL_DEFAULT\n");
1668 : #endif
1669 : #ifdef HAVE_KRB5_CONST_PAC
1670 50 : output(screen, " HAVE_KRB5_CONST_PAC\n");
1671 : #endif
1672 : #ifdef HAVE_KRB5_CREATE_CHECKSUM
1673 31 : output(screen, " HAVE_KRB5_CREATE_CHECKSUM\n");
1674 : #endif
1675 : #ifdef HAVE_KRB5_CRYPTO
1676 49 : output(screen, " HAVE_KRB5_CRYPTO\n");
1677 : #endif
1678 : #ifdef HAVE_KRB5_CRYPTO_DESTROY
1679 31 : output(screen, " HAVE_KRB5_CRYPTO_DESTROY\n");
1680 : #endif
1681 : #ifdef HAVE_KRB5_CRYPTO_INIT
1682 50 : output(screen, " HAVE_KRB5_CRYPTO_INIT\n");
1683 : #endif
1684 : #ifdef HAVE_KRB5_C_VERIFY_CHECKSUM
1685 50 : output(screen, " HAVE_KRB5_C_VERIFY_CHECKSUM\n");
1686 : #endif
1687 : #ifdef HAVE_KRB5_DATA_COPY
1688 50 : output(screen, " HAVE_KRB5_DATA_COPY\n");
1689 : #endif
1690 : #ifdef HAVE_KRB5_ENCTYPE_TO_STRING
1691 50 : output(screen, " HAVE_KRB5_ENCTYPE_TO_STRING\n");
1692 : #endif
1693 : #ifdef HAVE_KRB5_ENCTYPE_TO_STRING_WITH_KRB5_CONTEXT_ARG
1694 31 : output(screen, " HAVE_KRB5_ENCTYPE_TO_STRING_WITH_KRB5_CONTEXT_ARG\n");
1695 : #endif
1696 : #ifdef HAVE_KRB5_FREE_ERROR_CONTENTS
1697 50 : output(screen, " HAVE_KRB5_FREE_ERROR_CONTENTS\n");
1698 : #endif
1699 : #ifdef HAVE_KRB5_FREE_HOST_REALM
1700 50 : output(screen, " HAVE_KRB5_FREE_HOST_REALM\n");
1701 : #endif
1702 : #ifdef HAVE_KRB5_FREE_UNPARSED_NAME
1703 50 : output(screen, " HAVE_KRB5_FREE_UNPARSED_NAME\n");
1704 : #endif
1705 : #ifdef HAVE_KRB5_FWD_TGT_CREDS
1706 50 : output(screen, " HAVE_KRB5_FWD_TGT_CREDS\n");
1707 : #endif
1708 : #ifdef HAVE_KRB5_GET_CREDS
1709 50 : output(screen, " HAVE_KRB5_GET_CREDS\n");
1710 : #endif
1711 : #ifdef HAVE_KRB5_GET_CREDS_OPT_ALLOC
1712 50 : output(screen, " HAVE_KRB5_GET_CREDS_OPT_ALLOC\n");
1713 : #endif
1714 : #ifdef HAVE_KRB5_GET_CREDS_OPT_SET_IMPERSONATE
1715 31 : output(screen, " HAVE_KRB5_GET_CREDS_OPT_SET_IMPERSONATE\n");
1716 : #endif
1717 : #ifdef HAVE_KRB5_GET_DEFAULT_IN_TKT_ETYPES
1718 31 : output(screen, " HAVE_KRB5_GET_DEFAULT_IN_TKT_ETYPES\n");
1719 : #endif
1720 : #ifdef HAVE_KRB5_GET_HOST_REALM
1721 31 : output(screen, " HAVE_KRB5_GET_HOST_REALM\n");
1722 : #endif
1723 : #ifdef HAVE_KRB5_GET_INIT_CREDS_KEYBLOCK
1724 31 : output(screen, " HAVE_KRB5_GET_INIT_CREDS_KEYBLOCK\n");
1725 : #endif
1726 : #ifdef HAVE_KRB5_GET_INIT_CREDS_OPT_ALLOC
1727 50 : output(screen, " HAVE_KRB5_GET_INIT_CREDS_OPT_ALLOC\n");
1728 : #endif
1729 : #ifdef HAVE_KRB5_GET_INIT_CREDS_OPT_FREE
1730 31 : output(screen, " HAVE_KRB5_GET_INIT_CREDS_OPT_FREE\n");
1731 : #endif
1732 : #ifdef HAVE_KRB5_GET_INIT_CREDS_OPT_GET_ERROR
1733 50 : output(screen, " HAVE_KRB5_GET_INIT_CREDS_OPT_GET_ERROR\n");
1734 : #endif
1735 : #ifdef HAVE_KRB5_GET_INIT_CREDS_OPT_SET_FAST_CCACHE
1736 50 : output(screen, " HAVE_KRB5_GET_INIT_CREDS_OPT_SET_FAST_CCACHE\n");
1737 : #endif
1738 : #ifdef HAVE_KRB5_GET_INIT_CREDS_OPT_SET_FAST_FLAGS
1739 50 : output(screen, " HAVE_KRB5_GET_INIT_CREDS_OPT_SET_FAST_FLAGS\n");
1740 : #endif
1741 : #ifdef HAVE_KRB5_GET_INIT_CREDS_OPT_SET_PAC_REQUEST
1742 30 : output(screen, " HAVE_KRB5_GET_INIT_CREDS_OPT_SET_PAC_REQUEST\n");
1743 : #endif
1744 : #ifdef HAVE_KRB5_GET_PW_SALT
1745 49 : output(screen, " HAVE_KRB5_GET_PW_SALT\n");
1746 : #endif
1747 : #ifdef HAVE_KRB5_GET_RENEWED_CREDS
1748 50 : output(screen, " HAVE_KRB5_GET_RENEWED_CREDS\n");
1749 : #endif
1750 : #ifdef HAVE_KRB5_KEYBLOCK_INIT
1751 50 : output(screen, " HAVE_KRB5_KEYBLOCK_INIT\n");
1752 : #endif
1753 : #ifdef HAVE_KRB5_KEYBLOCK_KEYVALUE
1754 50 : output(screen, " HAVE_KRB5_KEYBLOCK_KEYVALUE\n");
1755 : #endif
1756 : #ifdef HAVE_KRB5_KEYTAB_ENTRY_KEYBLOCK
1757 50 : output(screen, " HAVE_KRB5_KEYTAB_ENTRY_KEYBLOCK\n");
1758 : #endif
1759 : #ifdef HAVE_KRB5_KRBHST_GET_ADDRINFO
1760 50 : output(screen, " HAVE_KRB5_KRBHST_GET_ADDRINFO\n");
1761 : #endif
1762 : #ifdef HAVE_KRB5_KRBHST_INIT
1763 31 : output(screen, " HAVE_KRB5_KRBHST_INIT\n");
1764 : #endif
1765 : #ifdef HAVE_KRB5_KT_COMPARE
1766 50 : output(screen, " HAVE_KRB5_KT_COMPARE\n");
1767 : #endif
1768 : #ifdef HAVE_KRB5_KT_FREE_ENTRY
1769 50 : output(screen, " HAVE_KRB5_KT_FREE_ENTRY\n");
1770 : #endif
1771 : #ifdef HAVE_KRB5_KU_OTHER_CKSUM
1772 50 : output(screen, " HAVE_KRB5_KU_OTHER_CKSUM\n");
1773 : #endif
1774 : #ifdef HAVE_KRB5_MAKE_PRINCIPAL
1775 31 : output(screen, " HAVE_KRB5_MAKE_PRINCIPAL\n");
1776 : #endif
1777 : #ifdef HAVE_KRB5_MK_REQ_EXTENDED
1778 50 : output(screen, " HAVE_KRB5_MK_REQ_EXTENDED\n");
1779 : #endif
1780 : #ifdef HAVE_KRB5_PAC_IS_TRUSTED
1781 31 : output(screen, " HAVE_KRB5_PAC_IS_TRUSTED\n");
1782 : #endif
1783 : #ifdef HAVE_KRB5_PDU_NONE_DECL
1784 31 : output(screen, " HAVE_KRB5_PDU_NONE_DECL\n");
1785 : #endif
1786 : #ifdef HAVE_KRB5_PRINCIPAL_COMPARE_ANY_REALM
1787 31 : output(screen, " HAVE_KRB5_PRINCIPAL_COMPARE_ANY_REALM\n");
1788 : #endif
1789 : #ifdef HAVE_KRB5_PRINCIPAL_GET_COMP_STRING
1790 50 : output(screen, " HAVE_KRB5_PRINCIPAL_GET_COMP_STRING\n");
1791 : #endif
1792 : #ifdef HAVE_KRB5_PRINCIPAL_GET_NUM_COMP
1793 31 : output(screen, " HAVE_KRB5_PRINCIPAL_GET_NUM_COMP\n");
1794 : #endif
1795 : #ifdef HAVE_KRB5_PRINCIPAL_GET_REALM
1796 31 : output(screen, " HAVE_KRB5_PRINCIPAL_GET_REALM\n");
1797 : #endif
1798 : #ifdef HAVE_KRB5_PRINCIPAL_GET_TYPE
1799 50 : output(screen, " HAVE_KRB5_PRINCIPAL_GET_TYPE\n");
1800 : #endif
1801 : #ifdef HAVE_KRB5_PRINCIPAL_SET_REALM
1802 31 : output(screen, " HAVE_KRB5_PRINCIPAL_SET_REALM\n");
1803 : #endif
1804 : #ifdef HAVE_KRB5_PRINCIPAL_SET_TYPE
1805 31 : output(screen, " HAVE_KRB5_PRINCIPAL_SET_TYPE\n");
1806 : #endif
1807 : #ifdef HAVE_KRB5_PROMPT_TYPE
1808 50 : output(screen, " HAVE_KRB5_PROMPT_TYPE\n");
1809 : #endif
1810 : #ifdef HAVE_KRB5_REALM_TYPE
1811 50 : output(screen, " HAVE_KRB5_REALM_TYPE\n");
1812 : #endif
1813 : #ifdef HAVE_KRB5_SET_DEFAULT_IN_TKT_ETYPES
1814 31 : output(screen, " HAVE_KRB5_SET_DEFAULT_IN_TKT_ETYPES\n");
1815 : #endif
1816 : #ifdef HAVE_KRB5_SET_REAL_TIME
1817 31 : output(screen, " HAVE_KRB5_SET_REAL_TIME\n");
1818 : #endif
1819 : #ifdef HAVE_KRB5_STRING_TO_KEY
1820 31 : output(screen, " HAVE_KRB5_STRING_TO_KEY\n");
1821 : #endif
1822 : #ifdef HAVE_KRB5_STRING_TO_KEY_SALT
1823 31 : output(screen, " HAVE_KRB5_STRING_TO_KEY_SALT\n");
1824 : #endif
1825 : #ifdef HAVE_KRB5_WARNX
1826 31 : output(screen, " HAVE_KRB5_WARNX\n");
1827 : #endif
1828 : #ifdef HAVE_KRB_STRUCT_WINSIZE
1829 50 : output(screen, " HAVE_KRB_STRUCT_WINSIZE\n");
1830 : #endif
1831 : #ifdef HAVE_LARGEFILE
1832 50 : output(screen, " HAVE_LARGEFILE\n");
1833 : #endif
1834 : #ifdef HAVE_LBER_LOG_PRINT_FN
1835 31 : output(screen, " HAVE_LBER_LOG_PRINT_FN\n");
1836 : #endif
1837 : #ifdef HAVE_LCHOWN
1838 31 : output(screen, " HAVE_LCHOWN\n");
1839 : #endif
1840 : #ifdef HAVE_LDAP
1841 31 : output(screen, " HAVE_LDAP\n");
1842 : #endif
1843 : #ifdef HAVE_LDAP_ADD_RESULT_ENTRY
1844 50 : output(screen, " HAVE_LDAP_ADD_RESULT_ENTRY\n");
1845 : #endif
1846 : #ifdef HAVE_LDAP_INIT
1847 50 : output(screen, " HAVE_LDAP_INIT\n");
1848 : #endif
1849 : #ifdef HAVE_LDAP_INITIALIZE
1850 31 : output(screen, " HAVE_LDAP_INITIALIZE\n");
1851 : #endif
1852 : #ifdef HAVE_LDAP_INIT_FD
1853 50 : output(screen, " HAVE_LDAP_INIT_FD\n");
1854 : #endif
1855 : #ifdef HAVE_LDAP_OPT_SOCKBUF
1856 49 : output(screen, " HAVE_LDAP_OPT_SOCKBUF\n");
1857 : #endif
1858 : #ifdef HAVE_LDAP_SASL_WRAPPING
1859 31 : output(screen, " HAVE_LDAP_SASL_WRAPPING\n");
1860 : #endif
1861 : #ifdef HAVE_LDAP_SET_REBIND_PROC
1862 50 : output(screen, " HAVE_LDAP_SET_REBIND_PROC\n");
1863 : #endif
1864 : #ifdef HAVE_LDWRAP
1865 50 : output(screen, " HAVE_LDWRAP\n");
1866 : #endif
1867 : #ifdef HAVE_LD_VERSION_SCRIPT
1868 50 : output(screen, " HAVE_LD_VERSION_SCRIPT\n");
1869 : #endif
1870 : #ifdef HAVE_LIBACL
1871 20 : output(screen, " HAVE_LIBACL\n");
1872 : #endif
1873 : #ifdef HAVE_LIBARCHIVE
1874 50 : output(screen, " HAVE_LIBARCHIVE\n");
1875 : #endif
1876 : #ifdef HAVE_LIBAVAHI_COMMON
1877 50 : output(screen, " HAVE_LIBAVAHI_COMMON\n");
1878 : #endif
1879 : #ifdef HAVE_LIBBSD
1880 49 : output(screen, " HAVE_LIBBSD\n");
1881 : #endif
1882 : #ifdef HAVE_LIBCAP
1883 50 : output(screen, " HAVE_LIBCAP\n");
1884 : #endif
1885 : #ifdef HAVE_LIBCEPHFS
1886 50 : output(screen, " HAVE_LIBCEPHFS\n");
1887 : #endif
1888 : #ifdef HAVE_LIBCRYPT
1889 50 : output(screen, " HAVE_LIBCRYPT\n");
1890 : #endif
1891 : #ifdef HAVE_LIBCUPS
1892 50 : output(screen, " HAVE_LIBCUPS\n");
1893 : #endif
1894 : #ifdef HAVE_LIBDBUS_1
1895 50 : output(screen, " HAVE_LIBDBUS_1\n");
1896 : #endif
1897 : #ifdef HAVE_LIBFORM
1898 50 : output(screen, " HAVE_LIBFORM\n");
1899 : #endif
1900 : #ifdef HAVE_LIBGLIB_2_0
1901 31 : output(screen, " HAVE_LIBGLIB_2_0\n");
1902 : #endif
1903 : #ifdef HAVE_LIBGPGME
1904 50 : output(screen, " HAVE_LIBGPGME\n");
1905 : #endif
1906 : #ifdef HAVE_LIBICUDATA
1907 50 : output(screen, " HAVE_LIBICUDATA\n");
1908 : #endif
1909 : #ifdef HAVE_LIBICUI18N
1910 50 : output(screen, " HAVE_LIBICUI18N\n");
1911 : #endif
1912 : #ifdef HAVE_LIBICUUC
1913 49 : output(screen, " HAVE_LIBICUUC\n");
1914 : #endif
1915 : #ifdef HAVE_LIBJANSSON
1916 50 : output(screen, " HAVE_LIBJANSSON\n");
1917 : #endif
1918 : #ifdef HAVE_LIBKEYUTILS
1919 50 : output(screen, " HAVE_LIBKEYUTILS\n");
1920 : #endif
1921 : #ifdef HAVE_LIBKRB5
1922 50 : output(screen, " HAVE_LIBKRB5\n");
1923 : #endif
1924 : #ifdef HAVE_LIBLBER
1925 50 : output(screen, " HAVE_LIBLBER\n");
1926 : #endif
1927 : #ifdef HAVE_LIBLDAP
1928 50 : output(screen, " HAVE_LIBLDAP\n");
1929 : #endif
1930 : #ifdef HAVE_LIBLMDB
1931 50 : output(screen, " HAVE_LIBLMDB\n");
1932 : #endif
1933 : #ifdef HAVE_LIBMENU
1934 50 : output(screen, " HAVE_LIBMENU\n");
1935 : #endif
1936 : #ifdef HAVE_LIBNCURSES
1937 50 : output(screen, " HAVE_LIBNCURSES\n");
1938 : #endif
1939 : #ifdef HAVE_LIBNSL
1940 50 : output(screen, " HAVE_LIBNSL\n");
1941 : #endif
1942 : #ifdef HAVE_LIBPAM
1943 50 : output(screen, " HAVE_LIBPAM\n");
1944 : #endif
1945 : #ifdef HAVE_LIBPANEL
1946 50 : output(screen, " HAVE_LIBPANEL\n");
1947 : #endif
1948 : #ifdef HAVE_LIBPOPT
1949 50 : output(screen, " HAVE_LIBPOPT\n");
1950 : #endif
1951 : #ifdef HAVE_LIBREADLINE
1952 50 : output(screen, " HAVE_LIBREADLINE\n");
1953 : #endif
1954 : #ifdef HAVE_LIBREPLACE
1955 50 : output(screen, " HAVE_LIBREPLACE\n");
1956 : #endif
1957 : #ifdef HAVE_LIBRESOLV
1958 49 : output(screen, " HAVE_LIBRESOLV\n");
1959 : #endif
1960 : #ifdef HAVE_LIBSYSTEMD
1961 50 : output(screen, " HAVE_LIBSYSTEMD\n");
1962 : #endif
1963 : #ifdef HAVE_LIBTASN1
1964 50 : output(screen, " HAVE_LIBTASN1\n");
1965 : #endif
1966 : #ifdef HAVE_LIBURING
1967 49 : output(screen, " HAVE_LIBURING\n");
1968 : #endif
1969 : #ifdef HAVE_LIBZ
1970 50 : output(screen, " HAVE_LIBZ\n");
1971 : #endif
1972 : #ifdef HAVE_LINK
1973 50 : output(screen, " HAVE_LINK\n");
1974 : #endif
1975 : #ifdef HAVE_LINUX_32BIT_SYSCALLS
1976 50 : output(screen, " HAVE_LINUX_32BIT_SYSCALLS\n");
1977 : #endif
1978 : #ifdef HAVE_LINUX_FALLOCATE
1979 21 : output(screen, " HAVE_LINUX_FALLOCATE\n");
1980 : #endif
1981 : #ifdef HAVE_LINUX_GETNAMEINFO
1982 49 : output(screen, " HAVE_LINUX_GETNAMEINFO\n");
1983 : #endif
1984 : #ifdef HAVE_LINUX_GETNAMEINFO_UNSIGNED
1985 50 : output(screen, " HAVE_LINUX_GETNAMEINFO_UNSIGNED\n");
1986 : #endif
1987 : #ifdef HAVE_LINUX_INOTIFY
1988 20 : output(screen, " HAVE_LINUX_INOTIFY\n");
1989 : #endif
1990 : #ifdef HAVE_LINUX_IOCTL
1991 49 : output(screen, " HAVE_LINUX_IOCTL\n");
1992 : #endif
1993 : #ifdef HAVE_LINUX_READAHEAD
1994 50 : output(screen, " HAVE_LINUX_READAHEAD\n");
1995 : #endif
1996 : #ifdef HAVE_LINUX_SPLICE
1997 50 : output(screen, " HAVE_LINUX_SPLICE\n");
1998 : #endif
1999 : #ifdef HAVE_LINUX_THREAD_CREDENTIALS
2000 50 : output(screen, " HAVE_LINUX_THREAD_CREDENTIALS\n");
2001 : #endif
2002 : #ifdef HAVE_LITTLE_ENDIAN
2003 50 : output(screen, " HAVE_LITTLE_ENDIAN\n");
2004 : #endif
2005 : #ifdef HAVE_LLSEEK
2006 50 : output(screen, " HAVE_LLSEEK\n");
2007 : #endif
2008 : #ifdef HAVE_LMDB
2009 21 : output(screen, " HAVE_LMDB\n");
2010 : #endif
2011 : #ifdef HAVE_LOFF_T
2012 30 : output(screen, " HAVE_LOFF_T\n");
2013 : #endif
2014 : #ifdef HAVE_LONGJMP
2015 50 : output(screen, " HAVE_LONGJMP\n");
2016 : #endif
2017 : #ifdef HAVE_LONG_LONG
2018 50 : output(screen, " HAVE_LONG_LONG\n");
2019 : #endif
2020 : #ifdef HAVE_LSEEK_HOLE_DATA
2021 31 : output(screen, " HAVE_LSEEK_HOLE_DATA\n");
2022 : #endif
2023 : #ifdef HAVE_LSTAT
2024 50 : output(screen, " HAVE_LSTAT\n");
2025 : #endif
2026 : #ifdef HAVE_LUTIMES
2027 50 : output(screen, " HAVE_LUTIMES\n");
2028 : #endif
2029 : #ifdef HAVE_MAKEDEV
2030 50 : output(screen, " HAVE_MAKEDEV\n");
2031 : #endif
2032 : #ifdef HAVE_MALLINFO2
2033 49 : output(screen, " HAVE_MALLINFO2\n");
2034 : #endif
2035 : #ifdef HAVE_MANDATORY_CEPH_API
2036 49 : output(screen, " HAVE_MANDATORY_CEPH_API\n");
2037 : #endif
2038 : #ifdef HAVE_MDB_ENV_CREATE
2039 50 : output(screen, " HAVE_MDB_ENV_CREATE\n");
2040 : #endif
2041 : #ifdef HAVE_MEMALIGN
2042 31 : output(screen, " HAVE_MEMALIGN\n");
2043 : #endif
2044 : #ifdef HAVE_MEMCPY
2045 50 : output(screen, " HAVE_MEMCPY\n");
2046 : #endif
2047 : #ifdef HAVE_MEMMEM
2048 50 : output(screen, " HAVE_MEMMEM\n");
2049 : #endif
2050 : #ifdef HAVE_MEMMOVE
2051 50 : output(screen, " HAVE_MEMMOVE\n");
2052 : #endif
2053 : #ifdef HAVE_MEMSET
2054 50 : output(screen, " HAVE_MEMSET\n");
2055 : #endif
2056 : #ifdef HAVE_MEMSET_EXPLICIT
2057 49 : output(screen, " HAVE_MEMSET_EXPLICIT\n");
2058 : #endif
2059 : #ifdef HAVE_MEMSET_S
2060 20 : output(screen, " HAVE_MEMSET_S\n");
2061 : #endif
2062 : #ifdef HAVE_MKDIR_MODE
2063 21 : output(screen, " HAVE_MKDIR_MODE\n");
2064 : #endif
2065 : #ifdef HAVE_MKDTEMP
2066 50 : output(screen, " HAVE_MKDTEMP\n");
2067 : #endif
2068 : #ifdef HAVE_MKNOD
2069 50 : output(screen, " HAVE_MKNOD\n");
2070 : #endif
2071 : #ifdef HAVE_MKNODAT
2072 50 : output(screen, " HAVE_MKNODAT\n");
2073 : #endif
2074 : #ifdef HAVE_MKOSTEMP
2075 50 : output(screen, " HAVE_MKOSTEMP\n");
2076 : #endif
2077 : #ifdef HAVE_MKTIME
2078 50 : output(screen, " HAVE_MKTIME\n");
2079 : #endif
2080 : #ifdef HAVE_MLOCK
2081 50 : output(screen, " HAVE_MLOCK\n");
2082 : #endif
2083 : #ifdef HAVE_MLOCKALL
2084 50 : output(screen, " HAVE_MLOCKALL\n");
2085 : #endif
2086 : #ifdef HAVE_MMAP
2087 50 : output(screen, " HAVE_MMAP\n");
2088 : #endif
2089 : #ifdef HAVE_MREMAP
2090 50 : output(screen, " HAVE_MREMAP\n");
2091 : #endif
2092 : #ifdef HAVE_MUNLOCK
2093 50 : output(screen, " HAVE_MUNLOCK\n");
2094 : #endif
2095 : #ifdef HAVE_MUNLOCKALL
2096 31 : output(screen, " HAVE_MUNLOCKALL\n");
2097 : #endif
2098 : #ifdef HAVE_NATIVE_ICONV
2099 31 : output(screen, " HAVE_NATIVE_ICONV\n");
2100 : #endif
2101 : #ifdef HAVE_NCURSES
2102 49 : output(screen, " HAVE_NCURSES\n");
2103 : #endif
2104 : #ifdef HAVE_NETGROUP
2105 49 : output(screen, " HAVE_NETGROUP\n");
2106 : #endif
2107 : #ifdef HAVE_NEW_FIELD
2108 50 : output(screen, " HAVE_NEW_FIELD\n");
2109 : #endif
2110 : #ifdef HAVE_NEW_FORM
2111 50 : output(screen, " HAVE_NEW_FORM\n");
2112 : #endif
2113 : #ifdef HAVE_NEW_LIBREADLINE
2114 49 : output(screen, " HAVE_NEW_LIBREADLINE\n");
2115 : #endif
2116 : #ifdef HAVE_NEW_PANEL
2117 50 : output(screen, " HAVE_NEW_PANEL\n");
2118 : #endif
2119 : #ifdef HAVE_NFS_QUOTAS
2120 50 : output(screen, " HAVE_NFS_QUOTAS\n");
2121 : #endif
2122 : #ifdef HAVE_NFTW
2123 50 : output(screen, " HAVE_NFTW\n");
2124 : #endif
2125 : #ifdef HAVE_NSCD_FLUSH_CACHE
2126 49 : output(screen, " HAVE_NSCD_FLUSH_CACHE\n");
2127 : #endif
2128 : #ifdef HAVE_NSS_XBYY_KEY_IPNODE
2129 20 : output(screen, " HAVE_NSS_XBYY_KEY_IPNODE\n");
2130 : #endif
2131 : #ifdef HAVE_NS_NAME_COMPRESS
2132 21 : output(screen, " HAVE_NS_NAME_COMPRESS\n");
2133 : #endif
2134 : #ifdef HAVE_OFD_LOCKS
2135 50 : output(screen, " HAVE_OFD_LOCKS\n");
2136 : #endif
2137 : #ifdef HAVE_OFFSET_T
2138 49 : output(screen, " HAVE_OFFSET_T\n");
2139 : #endif
2140 : #ifdef HAVE_OPEN64
2141 21 : output(screen, " HAVE_OPEN64\n");
2142 : #endif
2143 : #ifdef HAVE_OPENAT
2144 50 : output(screen, " HAVE_OPENAT\n");
2145 : #endif
2146 : #ifdef HAVE_OPENAT64
2147 49 : output(screen, " HAVE_OPENAT64\n");
2148 : #endif
2149 : #ifdef HAVE_OPENPTY
2150 50 : output(screen, " HAVE_OPENPTY\n");
2151 : #endif
2152 : #ifdef HAVE_OPEN_O_DIRECT
2153 50 : output(screen, " HAVE_OPEN_O_DIRECT\n");
2154 : #endif
2155 : #ifdef HAVE_PAM_GET_DATA
2156 50 : output(screen, " HAVE_PAM_GET_DATA\n");
2157 : #endif
2158 : #ifdef HAVE_PAM_RADIO_TYPE
2159 49 : output(screen, " HAVE_PAM_RADIO_TYPE\n");
2160 : #endif
2161 : #ifdef HAVE_PAM_RHOST
2162 30 : output(screen, " HAVE_PAM_RHOST\n");
2163 : #endif
2164 : #ifdef HAVE_PAM_START
2165 31 : output(screen, " HAVE_PAM_START\n");
2166 : #endif
2167 : #ifdef HAVE_PAM_START_CONFDIR
2168 50 : output(screen, " HAVE_PAM_START_CONFDIR\n");
2169 : #endif
2170 : #ifdef HAVE_PAM_STRERROR_CONST
2171 49 : output(screen, " HAVE_PAM_STRERROR_CONST\n");
2172 : #endif
2173 : #ifdef HAVE_PAM_SYSLOG
2174 1 : output(screen, " HAVE_PAM_SYSLOG\n");
2175 : #endif
2176 : #ifdef HAVE_PAM_TTY
2177 50 : output(screen, " HAVE_PAM_TTY\n");
2178 : #endif
2179 : #ifdef HAVE_PAM_VSYSLOG
2180 50 : output(screen, " HAVE_PAM_VSYSLOG\n");
2181 : #endif
2182 : #ifdef HAVE_PASSWD_PW_AGE
2183 49 : output(screen, " HAVE_PASSWD_PW_AGE\n");
2184 : #endif
2185 : #ifdef HAVE_PASSWD_PW_COMMENT
2186 20 : output(screen, " HAVE_PASSWD_PW_COMMENT\n");
2187 : #endif
2188 : #ifdef HAVE_PATHCONF
2189 21 : output(screen, " HAVE_PATHCONF\n");
2190 : #endif
2191 : #ifdef HAVE_PEERCRED
2192 50 : output(screen, " HAVE_PEERCRED\n");
2193 : #endif
2194 : #ifdef HAVE_PIPE
2195 50 : output(screen, " HAVE_PIPE\n");
2196 : #endif
2197 : #ifdef HAVE_PLEDGE
2198 49 : output(screen, " HAVE_PLEDGE\n");
2199 : #endif
2200 : #ifdef HAVE_POLL
2201 21 : output(screen, " HAVE_POLL\n");
2202 : #endif
2203 : #ifdef HAVE_POPT
2204 50 : output(screen, " HAVE_POPT\n");
2205 : #endif
2206 : #ifdef HAVE_POPTGETCONTEXT
2207 31 : output(screen, " HAVE_POPTGETCONTEXT\n");
2208 : #endif
2209 : #ifdef HAVE_POSIX_ACLS
2210 50 : output(screen, " HAVE_POSIX_ACLS\n");
2211 : #endif
2212 : #ifdef HAVE_POSIX_CAPABILITIES
2213 50 : output(screen, " HAVE_POSIX_CAPABILITIES\n");
2214 : #endif
2215 : #ifdef HAVE_POSIX_FADVISE
2216 50 : output(screen, " HAVE_POSIX_FADVISE\n");
2217 : #endif
2218 : #ifdef HAVE_POSIX_FALLOCATE
2219 31 : output(screen, " HAVE_POSIX_FALLOCATE\n");
2220 : #endif
2221 : #ifdef HAVE_POSIX_MEMALIGN
2222 31 : output(screen, " HAVE_POSIX_MEMALIGN\n");
2223 : #endif
2224 : #ifdef HAVE_POSIX_OPENPT
2225 50 : output(screen, " HAVE_POSIX_OPENPT\n");
2226 : #endif
2227 : #ifdef HAVE_PRCTL
2228 50 : output(screen, " HAVE_PRCTL\n");
2229 : #endif
2230 : #ifdef HAVE_PREAD
2231 50 : output(screen, " HAVE_PREAD\n");
2232 : #endif
2233 : #ifdef HAVE_PREAD_DECL
2234 31 : output(screen, " HAVE_PREAD_DECL\n");
2235 : #endif
2236 : #ifdef HAVE_PRINTF
2237 50 : output(screen, " HAVE_PRINTF\n");
2238 : #endif
2239 : #ifdef HAVE_PROGRAM_INVOCATION_SHORT_NAME
2240 50 : output(screen, " HAVE_PROGRAM_INVOCATION_SHORT_NAME\n");
2241 : #endif
2242 : #ifdef HAVE_PTHREAD
2243 50 : output(screen, " HAVE_PTHREAD\n");
2244 : #endif
2245 : #ifdef HAVE_PTHREAD_ATTR_INIT
2246 50 : output(screen, " HAVE_PTHREAD_ATTR_INIT\n");
2247 : #endif
2248 : #ifdef HAVE_PTHREAD_CREATE
2249 50 : output(screen, " HAVE_PTHREAD_CREATE\n");
2250 : #endif
2251 : #ifdef HAVE_PTHREAD_MUTEXATTR_SETROBUST
2252 50 : output(screen, " HAVE_PTHREAD_MUTEXATTR_SETROBUST\n");
2253 : #endif
2254 : #ifdef HAVE_PTHREAD_MUTEX_CONSISTENT
2255 50 : output(screen, " HAVE_PTHREAD_MUTEX_CONSISTENT\n");
2256 : #endif
2257 : #ifdef HAVE_PTRDIFF_T
2258 50 : output(screen, " HAVE_PTRDIFF_T\n");
2259 : #endif
2260 : #ifdef HAVE_PUTENV
2261 50 : output(screen, " HAVE_PUTENV\n");
2262 : #endif
2263 : #ifdef HAVE_PUTUTLINE
2264 49 : output(screen, " HAVE_PUTUTLINE\n");
2265 : #endif
2266 : #ifdef HAVE_PUTUTXLINE
2267 50 : output(screen, " HAVE_PUTUTXLINE\n");
2268 : #endif
2269 : #ifdef HAVE_PWRITE
2270 49 : output(screen, " HAVE_PWRITE\n");
2271 : #endif
2272 : #ifdef HAVE_PWRITE_DECL
2273 50 : output(screen, " HAVE_PWRITE_DECL\n");
2274 : #endif
2275 : #ifdef HAVE_PYEMBED
2276 50 : output(screen, " HAVE_PYEMBED\n");
2277 : #endif
2278 : #ifdef HAVE_PYEXT
2279 50 : output(screen, " HAVE_PYEXT\n");
2280 : #endif
2281 : #ifdef HAVE_QUOTACTL_LINUX
2282 50 : output(screen, " HAVE_QUOTACTL_LINUX\n");
2283 : #endif
2284 : #ifdef HAVE_RAND
2285 49 : output(screen, " HAVE_RAND\n");
2286 : #endif
2287 : #ifdef HAVE_RANDOM
2288 49 : output(screen, " HAVE_RANDOM\n");
2289 : #endif
2290 : #ifdef HAVE_RCMD
2291 50 : output(screen, " HAVE_RCMD\n");
2292 : #endif
2293 : #ifdef HAVE_RDCHK
2294 48 : output(screen, " HAVE_RDCHK\n");
2295 : #endif
2296 : #ifdef HAVE_READAHEAD_DECL
2297 20 : output(screen, " HAVE_READAHEAD_DECL\n");
2298 : #endif
2299 : #ifdef HAVE_READLINE_READLINE_WORKAROUND
2300 48 : output(screen, " HAVE_READLINE_READLINE_WORKAROUND\n");
2301 : #endif
2302 : #ifdef HAVE_READLINK
2303 20 : output(screen, " HAVE_READLINK\n");
2304 : #endif
2305 : #ifdef HAVE_READV
2306 49 : output(screen, " HAVE_READV\n");
2307 : #endif
2308 : #ifdef HAVE_REALPATH
2309 50 : output(screen, " HAVE_REALPATH\n");
2310 : #endif
2311 : #ifdef HAVE_RECVMMSG
2312 50 : output(screen, " HAVE_RECVMMSG\n");
2313 : #endif
2314 : #ifdef HAVE_RECVMMSG_CONST_TIMEOUT
2315 49 : output(screen, " HAVE_RECVMMSG_CONST_TIMEOUT\n");
2316 : #endif
2317 : #ifdef HAVE_RECVMMSG_SSIZE_T_CONST_TIMEOUT
2318 20 : output(screen, " HAVE_RECVMMSG_SSIZE_T_CONST_TIMEOUT\n");
2319 : #endif
2320 : #ifdef HAVE_RENAME
2321 20 : output(screen, " HAVE_RENAME\n");
2322 : #endif
2323 : #ifdef HAVE_RES_CLOSE
2324 29 : output(screen, " HAVE_RES_CLOSE\n");
2325 : #endif
2326 : #ifdef HAVE_RES_INIT
2327 20 : output(screen, " HAVE_RES_INIT\n");
2328 : #endif
2329 : #ifdef HAVE_RES_NCLOSE
2330 0 : output(screen, " HAVE_RES_NCLOSE\n");
2331 : #endif
2332 : #ifdef HAVE_RES_NDESTROY
2333 20 : output(screen, " HAVE_RES_NDESTROY\n");
2334 : #endif
2335 : #ifdef HAVE_RES_NINIT
2336 20 : output(screen, " HAVE_RES_NINIT\n");
2337 : #endif
2338 : #ifdef HAVE_RES_NQUERY
2339 20 : output(screen, " HAVE_RES_NQUERY\n");
2340 : #endif
2341 : #ifdef HAVE_RES_NSEARCH
2342 31 : output(screen, " HAVE_RES_NSEARCH\n");
2343 : #endif
2344 : #ifdef HAVE_RES_QUERY
2345 31 : output(screen, " HAVE_RES_QUERY\n");
2346 : #endif
2347 : #ifdef HAVE_RES_SEARCH
2348 50 : output(screen, " HAVE_RES_SEARCH\n");
2349 : #endif
2350 : #ifdef HAVE_RES_SOCKADDR_UNION_SIN
2351 30 : output(screen, " HAVE_RES_SOCKADDR_UNION_SIN\n");
2352 : #endif
2353 : #ifdef HAVE_RES_SOCKADDR_UNION_SIN6
2354 1 : output(screen, " HAVE_RES_SOCKADDR_UNION_SIN6\n");
2355 : #endif
2356 : #ifdef HAVE_RES_STATE_U_EXT_NSADDRS
2357 2 : output(screen, " HAVE_RES_STATE_U_EXT_NSADDRS\n");
2358 : #endif
2359 : #ifdef HAVE_RL_COMPLETION_FUNC_T
2360 30 : output(screen, " HAVE_RL_COMPLETION_FUNC_T\n");
2361 : #endif
2362 : #ifdef HAVE_RL_COMPLETION_MATCHES
2363 21 : output(screen, " HAVE_RL_COMPLETION_MATCHES\n");
2364 : #endif
2365 : #ifdef HAVE_ROBUST_MUTEXES
2366 49 : output(screen, " HAVE_ROBUST_MUTEXES\n");
2367 : #endif
2368 : #ifdef HAVE_RPC_RPC_HEADERS
2369 49 : output(screen, " HAVE_RPC_RPC_HEADERS\n");
2370 : #endif
2371 : #ifdef HAVE_RW_HINTS
2372 21 : output(screen, " HAVE_RW_HINTS\n");
2373 : #endif
2374 : #ifdef HAVE_SA_FAMILY_T
2375 31 : output(screen, " HAVE_SA_FAMILY_T\n");
2376 : #endif
2377 : #ifdef HAVE_SA_SIGINFO_DECL
2378 31 : output(screen, " HAVE_SA_SIGINFO_DECL\n");
2379 : #endif
2380 : #ifdef HAVE_SECURE_GETENV
2381 50 : output(screen, " HAVE_SECURE_GETENV\n");
2382 : #endif
2383 : #ifdef HAVE_SECURE_MKSTEMP
2384 31 : output(screen, " HAVE_SECURE_MKSTEMP\n");
2385 : #endif
2386 : #ifdef HAVE_SELECT
2387 50 : output(screen, " HAVE_SELECT\n");
2388 : #endif
2389 : #ifdef HAVE_SENDFILE
2390 49 : output(screen, " HAVE_SENDFILE\n");
2391 : #endif
2392 : #ifdef HAVE_SENDMMSG
2393 31 : output(screen, " HAVE_SENDMMSG\n");
2394 : #endif
2395 : #ifdef HAVE_SENDMMSG_SSIZE_T
2396 30 : output(screen, " HAVE_SENDMMSG_SSIZE_T\n");
2397 : #endif
2398 : #ifdef HAVE_SENDMSG
2399 21 : output(screen, " HAVE_SENDMSG\n");
2400 : #endif
2401 : #ifdef HAVE_SETBUFFER
2402 50 : output(screen, " HAVE_SETBUFFER\n");
2403 : #endif
2404 : #ifdef HAVE_SETEGID
2405 50 : output(screen, " HAVE_SETEGID\n");
2406 : #endif
2407 : #ifdef HAVE_SETENV
2408 49 : output(screen, " HAVE_SETENV\n");
2409 : #endif
2410 : #ifdef HAVE_SETENV_DECL
2411 50 : output(screen, " HAVE_SETENV_DECL\n");
2412 : #endif
2413 : #ifdef HAVE_SETEUID
2414 50 : output(screen, " HAVE_SETEUID\n");
2415 : #endif
2416 : #ifdef HAVE_SETGID
2417 49 : output(screen, " HAVE_SETGID\n");
2418 : #endif
2419 : #ifdef HAVE_SETGIDX
2420 30 : output(screen, " HAVE_SETGIDX\n");
2421 : #endif
2422 : #ifdef HAVE_SETGROUPS
2423 21 : output(screen, " HAVE_SETGROUPS\n");
2424 : #endif
2425 : #ifdef HAVE_SETHOSTENT
2426 49 : output(screen, " HAVE_SETHOSTENT\n");
2427 : #endif
2428 : #ifdef HAVE_SETITIMER
2429 50 : output(screen, " HAVE_SETITIMER\n");
2430 : #endif
2431 : #ifdef HAVE_SETLINEBUF
2432 50 : output(screen, " HAVE_SETLINEBUF\n");
2433 : #endif
2434 : #ifdef HAVE_SETLOCALE
2435 50 : output(screen, " HAVE_SETLOCALE\n");
2436 : #endif
2437 : #ifdef HAVE_SETLUID
2438 49 : output(screen, " HAVE_SETLUID\n");
2439 : #endif
2440 : #ifdef HAVE_SETMNTENT
2441 2 : output(screen, " HAVE_SETMNTENT\n");
2442 : #endif
2443 : #ifdef HAVE_SETPGID
2444 50 : output(screen, " HAVE_SETPGID\n");
2445 : #endif
2446 : #ifdef HAVE_SETPRIV
2447 49 : output(screen, " HAVE_SETPRIV\n");
2448 : #endif
2449 : #ifdef HAVE_SETPROCTITLE
2450 21 : output(screen, " HAVE_SETPROCTITLE\n");
2451 : #endif
2452 : #ifdef HAVE_SETPROCTITLE_INIT
2453 30 : output(screen, " HAVE_SETPROCTITLE_INIT\n");
2454 : #endif
2455 : #ifdef HAVE_SETPROGNAME
2456 49 : output(screen, " HAVE_SETPROGNAME\n");
2457 : #endif
2458 : #ifdef HAVE_SETREGID
2459 21 : output(screen, " HAVE_SETREGID\n");
2460 : #endif
2461 : #ifdef HAVE_SETRESGID
2462 30 : output(screen, " HAVE_SETRESGID\n");
2463 : #endif
2464 : #ifdef HAVE_SETRESGID_DECL
2465 49 : output(screen, " HAVE_SETRESGID_DECL\n");
2466 : #endif
2467 : #ifdef HAVE_SETRESUID
2468 49 : output(screen, " HAVE_SETRESUID\n");
2469 : #endif
2470 : #ifdef HAVE_SETRESUID_DECL
2471 50 : output(screen, " HAVE_SETRESUID_DECL\n");
2472 : #endif
2473 : #ifdef HAVE_SETREUID
2474 50 : output(screen, " HAVE_SETREUID\n");
2475 : #endif
2476 : #ifdef HAVE_SETSID
2477 50 : output(screen, " HAVE_SETSID\n");
2478 : #endif
2479 : #ifdef HAVE_SETUID
2480 50 : output(screen, " HAVE_SETUID\n");
2481 : #endif
2482 : #ifdef HAVE_SETUIDX
2483 49 : output(screen, " HAVE_SETUIDX\n");
2484 : #endif
2485 : #ifdef HAVE_SET_MENU_ITEMS
2486 21 : output(screen, " HAVE_SET_MENU_ITEMS\n");
2487 : #endif
2488 : #ifdef HAVE_SHARED_MMAP
2489 50 : output(screen, " HAVE_SHARED_MMAP\n");
2490 : #endif
2491 : #ifdef HAVE_SHL_FINDSYM
2492 49 : output(screen, " HAVE_SHL_FINDSYM\n");
2493 : #endif
2494 : #ifdef HAVE_SHL_LOAD
2495 1 : output(screen, " HAVE_SHL_LOAD\n");
2496 : #endif
2497 : #ifdef HAVE_SHL_UNLOAD
2498 20 : output(screen, " HAVE_SHL_UNLOAD\n");
2499 : #endif
2500 : #ifdef HAVE_SHOW_PANEL
2501 21 : output(screen, " HAVE_SHOW_PANEL\n");
2502 : #endif
2503 : #ifdef HAVE_SIGACTION
2504 31 : output(screen, " HAVE_SIGACTION\n");
2505 : #endif
2506 : #ifdef HAVE_SIGBLOCK
2507 31 : output(screen, " HAVE_SIGBLOCK\n");
2508 : #endif
2509 : #ifdef HAVE_SIGGETMASK
2510 30 : output(screen, " HAVE_SIGGETMASK\n");
2511 : #endif
2512 : #ifdef HAVE_SIGLONGJMP
2513 50 : output(screen, " HAVE_SIGLONGJMP\n");
2514 : #endif
2515 : #ifdef HAVE_SIGNALFD
2516 50 : output(screen, " HAVE_SIGNALFD\n");
2517 : #endif
2518 : #ifdef HAVE_SIGPROCMASK
2519 50 : output(screen, " HAVE_SIGPROCMASK\n");
2520 : #endif
2521 : #ifdef HAVE_SIGSET
2522 49 : output(screen, " HAVE_SIGSET\n");
2523 : #endif
2524 : #ifdef HAVE_SIGSETMASK
2525 49 : output(screen, " HAVE_SIGSETMASK\n");
2526 : #endif
2527 : #ifdef HAVE_SIG_ATOMIC_T_TYPE
2528 49 : output(screen, " HAVE_SIG_ATOMIC_T_TYPE\n");
2529 : #endif
2530 : #ifdef HAVE_SIMPLE_C_PROG
2531 49 : output(screen, " HAVE_SIMPLE_C_PROG\n");
2532 : #endif
2533 : #ifdef HAVE_SIZE_T
2534 49 : output(screen, " HAVE_SIZE_T\n");
2535 : #endif
2536 : #ifdef HAVE_SNPRINTF
2537 49 : output(screen, " HAVE_SNPRINTF\n");
2538 : #endif
2539 : #ifdef HAVE_SOCKADDR_SA_LEN
2540 48 : output(screen, " HAVE_SOCKADDR_SA_LEN\n");
2541 : #endif
2542 : #ifdef HAVE_SOCKET
2543 20 : output(screen, " HAVE_SOCKET\n");
2544 : #endif
2545 : #ifdef HAVE_SOCKETPAIR
2546 49 : output(screen, " HAVE_SOCKETPAIR\n");
2547 : #endif
2548 : #ifdef HAVE_SOCKLEN_T
2549 49 : output(screen, " HAVE_SOCKLEN_T\n");
2550 : #endif
2551 : #ifdef HAVE_SOCK_SIN6_LEN
2552 29 : output(screen, " HAVE_SOCK_SIN6_LEN\n");
2553 : #endif
2554 : #ifdef HAVE_SOCK_SIN_LEN
2555 20 : output(screen, " HAVE_SOCK_SIN_LEN\n");
2556 : #endif
2557 : #ifdef HAVE_SOLARIS_ENDHOSTENT
2558 20 : output(screen, " HAVE_SOLARIS_ENDHOSTENT\n");
2559 : #endif
2560 : #ifdef HAVE_SOLARIS_GETGRENT_R
2561 1 : output(screen, " HAVE_SOLARIS_GETGRENT_R\n");
2562 : #endif
2563 : #ifdef HAVE_SOLARIS_GETGRGID_R
2564 1 : output(screen, " HAVE_SOLARIS_GETGRGID_R\n");
2565 : #endif
2566 : #ifdef HAVE_SOLARIS_GETGRNAM_R
2567 1 : output(screen, " HAVE_SOLARIS_GETGRNAM_R\n");
2568 : #endif
2569 : #ifdef HAVE_SOLARIS_GETHOSTNAME
2570 1 : output(screen, " HAVE_SOLARIS_GETHOSTNAME\n");
2571 : #endif
2572 : #ifdef HAVE_SOLARIS_GETPWENT_R
2573 1 : output(screen, " HAVE_SOLARIS_GETPWENT_R\n");
2574 : #endif
2575 : #ifdef HAVE_SOLARIS_GETPWNAM_R
2576 1 : output(screen, " HAVE_SOLARIS_GETPWNAM_R\n");
2577 : #endif
2578 : #ifdef HAVE_SOLARIS_GETPWUID_R
2579 1 : output(screen, " HAVE_SOLARIS_GETPWUID_R\n");
2580 : #endif
2581 : #ifdef HAVE_SOLARIS_SETHOSTENT
2582 0 : output(screen, " HAVE_SOLARIS_SETHOSTENT\n");
2583 : #endif
2584 : #ifdef HAVE_SPLICE_DECL
2585 2 : output(screen, " HAVE_SPLICE_DECL\n");
2586 : #endif
2587 : #ifdef HAVE_SPOTLIGHT_BACKEND_ES
2588 31 : output(screen, " HAVE_SPOTLIGHT_BACKEND_ES\n");
2589 : #endif
2590 : #ifdef HAVE_SRAND
2591 31 : output(screen, " HAVE_SRAND\n");
2592 : #endif
2593 : #ifdef HAVE_SRANDOM
2594 49 : output(screen, " HAVE_SRANDOM\n");
2595 : #endif
2596 : #ifdef HAVE_SSIZE_T
2597 50 : output(screen, " HAVE_SSIZE_T\n");
2598 : #endif
2599 : #ifdef HAVE_SS_FAMILY
2600 50 : output(screen, " HAVE_SS_FAMILY\n");
2601 : #endif
2602 : #ifdef HAVE_STATFS_F_FSID
2603 50 : output(screen, " HAVE_STATFS_F_FSID\n");
2604 : #endif
2605 : #ifdef HAVE_STATVFS
2606 50 : output(screen, " HAVE_STATVFS\n");
2607 : #endif
2608 : #ifdef HAVE_STATVFS_F_FLAG
2609 50 : output(screen, " HAVE_STATVFS_F_FLAG\n");
2610 : #endif
2611 : #ifdef HAVE_STATVFS_F_FLAGS
2612 49 : output(screen, " HAVE_STATVFS_F_FLAGS\n");
2613 : #endif
2614 : #ifdef HAVE_STAT_HIRES_TIMESTAMPS
2615 21 : output(screen, " HAVE_STAT_HIRES_TIMESTAMPS\n");
2616 : #endif
2617 : #ifdef HAVE_STAT_ST_BLKSIZE
2618 50 : output(screen, " HAVE_STAT_ST_BLKSIZE\n");
2619 : #endif
2620 : #ifdef HAVE_STAT_ST_BLOCKS
2621 31 : output(screen, " HAVE_STAT_ST_BLOCKS\n");
2622 : #endif
2623 : #ifdef HAVE_STAT_ST_FLAGS
2624 49 : output(screen, " HAVE_STAT_ST_FLAGS\n");
2625 : #endif
2626 : #ifdef HAVE_STRCASECMP
2627 20 : output(screen, " HAVE_STRCASECMP\n");
2628 : #endif
2629 : #ifdef HAVE_STRCASESTR
2630 50 : output(screen, " HAVE_STRCASESTR\n");
2631 : #endif
2632 : #ifdef HAVE_STRCHR
2633 31 : output(screen, " HAVE_STRCHR\n");
2634 : #endif
2635 : #ifdef HAVE_STRCPY
2636 50 : output(screen, " HAVE_STRCPY\n");
2637 : #endif
2638 : #ifdef HAVE_STRDUP
2639 50 : output(screen, " HAVE_STRDUP\n");
2640 : #endif
2641 : #ifdef HAVE_STRERROR
2642 50 : output(screen, " HAVE_STRERROR\n");
2643 : #endif
2644 : #ifdef HAVE_STRERROR_R
2645 50 : output(screen, " HAVE_STRERROR_R\n");
2646 : #endif
2647 : #ifdef HAVE_STRFTIME
2648 50 : output(screen, " HAVE_STRFTIME\n");
2649 : #endif
2650 : #ifdef HAVE_STRLCAT
2651 49 : output(screen, " HAVE_STRLCAT\n");
2652 : #endif
2653 : #ifdef HAVE_STRLCPY
2654 50 : output(screen, " HAVE_STRLCPY\n");
2655 : #endif
2656 : #ifdef HAVE_STRLWR
2657 49 : output(screen, " HAVE_STRLWR\n");
2658 : #endif
2659 : #ifdef HAVE_STRNCASECMP
2660 21 : output(screen, " HAVE_STRNCASECMP\n");
2661 : #endif
2662 : #ifdef HAVE_STRNCPY
2663 50 : output(screen, " HAVE_STRNCPY\n");
2664 : #endif
2665 : #ifdef HAVE_STRNDUP
2666 50 : output(screen, " HAVE_STRNDUP\n");
2667 : #endif
2668 : #ifdef HAVE_STRNLEN
2669 50 : output(screen, " HAVE_STRNLEN\n");
2670 : #endif
2671 : #ifdef HAVE_STRPBRK
2672 50 : output(screen, " HAVE_STRPBRK\n");
2673 : #endif
2674 : #ifdef HAVE_STRPTIME
2675 50 : output(screen, " HAVE_STRPTIME\n");
2676 : #endif
2677 : #ifdef HAVE_STRSEP
2678 49 : output(screen, " HAVE_STRSEP\n");
2679 : #endif
2680 : #ifdef HAVE_STRSEP_COPY
2681 49 : output(screen, " HAVE_STRSEP_COPY\n");
2682 : #endif
2683 : #ifdef HAVE_STRSIGNAL
2684 21 : output(screen, " HAVE_STRSIGNAL\n");
2685 : #endif
2686 : #ifdef HAVE_STRTOK_R
2687 50 : output(screen, " HAVE_STRTOK_R\n");
2688 : #endif
2689 : #ifdef HAVE_STRTOL
2690 49 : output(screen, " HAVE_STRTOL\n");
2691 : #endif
2692 : #ifdef HAVE_STRTOLL
2693 50 : output(screen, " HAVE_STRTOLL\n");
2694 : #endif
2695 : #ifdef HAVE_STRTOQ
2696 49 : output(screen, " HAVE_STRTOQ\n");
2697 : #endif
2698 : #ifdef HAVE_STRTOULL
2699 49 : output(screen, " HAVE_STRTOULL\n");
2700 : #endif
2701 : #ifdef HAVE_STRTOUQ
2702 50 : output(screen, " HAVE_STRTOUQ\n");
2703 : #endif
2704 : #ifdef HAVE_STRUCT_ADDRINFO
2705 49 : output(screen, " HAVE_STRUCT_ADDRINFO\n");
2706 : #endif
2707 : #ifdef HAVE_STRUCT_DQBLK_DQB_CURBYTES
2708 30 : output(screen, " HAVE_STRUCT_DQBLK_DQB_CURBYTES\n");
2709 : #endif
2710 : #ifdef HAVE_STRUCT_IFADDRS
2711 21 : output(screen, " HAVE_STRUCT_IFADDRS\n");
2712 : #endif
2713 : #ifdef HAVE_STRUCT_IN6_PKTINFO
2714 50 : output(screen, " HAVE_STRUCT_IN6_PKTINFO\n");
2715 : #endif
2716 : #ifdef HAVE_STRUCT_IN_PKTINFO
2717 50 : output(screen, " HAVE_STRUCT_IN_PKTINFO\n");
2718 : #endif
2719 : #ifdef HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS
2720 29 : output(screen, " HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS\n");
2721 : #endif
2722 : #ifdef HAVE_STRUCT_MSGHDR_MSG_CONTROL
2723 20 : output(screen, " HAVE_STRUCT_MSGHDR_MSG_CONTROL\n");
2724 : #endif
2725 : #ifdef HAVE_STRUCT_SECMETHOD_TABLE_METHOD_ATTRLIST
2726 29 : output(screen, " HAVE_STRUCT_SECMETHOD_TABLE_METHOD_ATTRLIST\n");
2727 : #endif
2728 : #ifdef HAVE_STRUCT_SECMETHOD_TABLE_METHOD_VERSION
2729 0 : output(screen, " HAVE_STRUCT_SECMETHOD_TABLE_METHOD_VERSION\n");
2730 : #endif
2731 : #ifdef HAVE_STRUCT_SIGEVENT
2732 20 : output(screen, " HAVE_STRUCT_SIGEVENT\n");
2733 : #endif
2734 : #ifdef HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIGVAL_PTR
2735 29 : output(screen, " HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIGVAL_PTR\n");
2736 : #endif
2737 : #ifdef HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIVAL_PTR
2738 21 : output(screen, " HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIVAL_PTR\n");
2739 : #endif
2740 : #ifdef HAVE_STRUCT_SOCKADDR
2741 50 : output(screen, " HAVE_STRUCT_SOCKADDR\n");
2742 : #endif
2743 : #ifdef HAVE_STRUCT_SOCKADDR_IN6
2744 49 : output(screen, " HAVE_STRUCT_SOCKADDR_IN6\n");
2745 : #endif
2746 : #ifdef HAVE_STRUCT_SOCKADDR_STORAGE
2747 50 : output(screen, " HAVE_STRUCT_SOCKADDR_STORAGE\n");
2748 : #endif
2749 : #ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME
2750 30 : output(screen, " HAVE_STRUCT_STAT_ST_BIRTHTIME\n");
2751 : #endif
2752 : #ifdef HAVE_STRUCT_STAT_ST_BIRTHTIMENSEC
2753 0 : output(screen, " HAVE_STRUCT_STAT_ST_BIRTHTIMENSEC\n");
2754 : #endif
2755 : #ifdef HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC
2756 1 : output(screen, " HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC\n");
2757 : #endif
2758 : #ifdef HAVE_STRUCT_STAT_ST_MTIMENSEC
2759 1 : output(screen, " HAVE_STRUCT_STAT_ST_MTIMENSEC\n");
2760 : #endif
2761 : #ifdef HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC
2762 1 : output(screen, " HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC\n");
2763 : #endif
2764 : #ifdef HAVE_STRUCT_STAT_ST_MTIME_N
2765 1 : output(screen, " HAVE_STRUCT_STAT_ST_MTIME_N\n");
2766 : #endif
2767 : #ifdef HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC
2768 20 : output(screen, " HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC\n");
2769 : #endif
2770 : #ifdef HAVE_STRUCT_STAT_ST_RDEV
2771 50 : output(screen, " HAVE_STRUCT_STAT_ST_RDEV\n");
2772 : #endif
2773 : #ifdef HAVE_STRUCT_STAT_ST_UMTIME
2774 29 : output(screen, " HAVE_STRUCT_STAT_ST_UMTIME\n");
2775 : #endif
2776 : #ifdef HAVE_STRUCT_TIMESPEC
2777 20 : output(screen, " HAVE_STRUCT_TIMESPEC\n");
2778 : #endif
2779 : #ifdef HAVE_STRUCT_WINSIZE
2780 31 : output(screen, " HAVE_STRUCT_WINSIZE\n");
2781 : #endif
2782 : #ifdef HAVE_STRUPR
2783 49 : output(screen, " HAVE_STRUPR\n");
2784 : #endif
2785 : #ifdef HAVE_ST_RDEV
2786 21 : output(screen, " HAVE_ST_RDEV\n");
2787 : #endif
2788 : #ifdef HAVE_SWAB
2789 50 : output(screen, " HAVE_SWAB\n");
2790 : #endif
2791 : #ifdef HAVE_SYMLINK
2792 31 : output(screen, " HAVE_SYMLINK\n");
2793 : #endif
2794 : #ifdef HAVE_SYSCALL
2795 50 : output(screen, " HAVE_SYSCALL\n");
2796 : #endif
2797 : #ifdef HAVE_SYSCALL_INT
2798 30 : output(screen, " HAVE_SYSCALL_INT\n");
2799 : #endif
2800 : #ifdef HAVE_SYSCONF
2801 2 : output(screen, " HAVE_SYSCONF\n");
2802 : #endif
2803 : #ifdef HAVE_SYSCTL
2804 49 : output(screen, " HAVE_SYSCTL\n");
2805 : #endif
2806 : #ifdef HAVE_SYSCTLBYNAME
2807 20 : output(screen, " HAVE_SYSCTLBYNAME\n");
2808 : #endif
2809 : #ifdef HAVE_SYSLOG
2810 21 : output(screen, " HAVE_SYSLOG\n");
2811 : #endif
2812 : #ifdef HAVE_TCP_USER_TIMEOUT
2813 50 : output(screen, " HAVE_TCP_USER_TIMEOUT\n");
2814 : #endif
2815 : #ifdef HAVE_TEXTDOMAIN
2816 50 : output(screen, " HAVE_TEXTDOMAIN\n");
2817 : #endif
2818 : #ifdef HAVE_TGETENT
2819 49 : output(screen, " HAVE_TGETENT\n");
2820 : #endif
2821 : #ifdef HAVE_TIMEGM
2822 50 : output(screen, " HAVE_TIMEGM\n");
2823 : #endif
2824 : #ifdef HAVE_TIMERFD_CREATE
2825 50 : output(screen, " HAVE_TIMERFD_CREATE\n");
2826 : #endif
2827 : #ifdef HAVE_TIRPC
2828 50 : output(screen, " HAVE_TIRPC\n");
2829 : #endif
2830 : #ifdef HAVE_UCONTEXT_T
2831 50 : output(screen, " HAVE_UCONTEXT_T\n");
2832 : #endif
2833 : #ifdef HAVE_UINT16_T
2834 50 : output(screen, " HAVE_UINT16_T\n");
2835 : #endif
2836 : #ifdef HAVE_UINT32_T
2837 50 : output(screen, " HAVE_UINT32_T\n");
2838 : #endif
2839 : #ifdef HAVE_UINT64_T
2840 50 : output(screen, " HAVE_UINT64_T\n");
2841 : #endif
2842 : #ifdef HAVE_UINT8_T
2843 50 : output(screen, " HAVE_UINT8_T\n");
2844 : #endif
2845 : #ifdef HAVE_UINTPTR_T
2846 31 : output(screen, " HAVE_UINTPTR_T\n");
2847 : #endif
2848 : #ifdef HAVE_UINT_T
2849 49 : output(screen, " HAVE_UINT_T\n");
2850 : #endif
2851 : #ifdef HAVE_UMASK
2852 21 : output(screen, " HAVE_UMASK\n");
2853 : #endif
2854 : #ifdef HAVE_UNAME
2855 50 : output(screen, " HAVE_UNAME\n");
2856 : #endif
2857 : #ifdef HAVE_UNIXSOCKET
2858 50 : output(screen, " HAVE_UNIXSOCKET\n");
2859 : #endif
2860 : #ifdef HAVE_UNSETENV
2861 50 : output(screen, " HAVE_UNSETENV\n");
2862 : #endif
2863 : #ifdef HAVE_UNSHARE_CLONE_FS
2864 50 : output(screen, " HAVE_UNSHARE_CLONE_FS\n");
2865 : #endif
2866 : #ifdef HAVE_UPDWTMP
2867 49 : output(screen, " HAVE_UPDWTMP\n");
2868 : #endif
2869 : #ifdef HAVE_UPDWTMPX
2870 50 : output(screen, " HAVE_UPDWTMPX\n");
2871 : #endif
2872 : #ifdef HAVE_URING
2873 50 : output(screen, " HAVE_URING\n");
2874 : #endif
2875 : #ifdef HAVE_USLEEP
2876 50 : output(screen, " HAVE_USLEEP\n");
2877 : #endif
2878 : #ifdef HAVE_UTF8_NORMALISATION
2879 50 : output(screen, " HAVE_UTF8_NORMALISATION\n");
2880 : #endif
2881 : #ifdef HAVE_UTIMBUF
2882 50 : output(screen, " HAVE_UTIMBUF\n");
2883 : #endif
2884 : #ifdef HAVE_UTIME
2885 50 : output(screen, " HAVE_UTIME\n");
2886 : #endif
2887 : #ifdef HAVE_UTIMENSAT
2888 31 : output(screen, " HAVE_UTIMENSAT\n");
2889 : #endif
2890 : #ifdef HAVE_UTIMES
2891 50 : output(screen, " HAVE_UTIMES\n");
2892 : #endif
2893 : #ifdef HAVE_UX_UT_HOST
2894 50 : output(screen, " HAVE_UX_UT_HOST\n");
2895 : #endif
2896 : #ifdef HAVE_UX_UT_SYSLEN
2897 49 : output(screen, " HAVE_UX_UT_SYSLEN\n");
2898 : #endif
2899 : #ifdef HAVE_U_CHAR
2900 21 : output(screen, " HAVE_U_CHAR\n");
2901 : #endif
2902 : #ifdef HAVE_U_INT32_T
2903 50 : output(screen, " HAVE_U_INT32_T\n");
2904 : #endif
2905 : #ifdef HAVE_VASPRINTF
2906 50 : output(screen, " HAVE_VASPRINTF\n");
2907 : #endif
2908 : #ifdef HAVE_VA_COPY
2909 50 : output(screen, " HAVE_VA_COPY\n");
2910 : #endif
2911 : #ifdef HAVE_VDPRINTF
2912 50 : output(screen, " HAVE_VDPRINTF\n");
2913 : #endif
2914 : #ifdef HAVE_VISIBILITY_ATTR
2915 50 : output(screen, " HAVE_VISIBILITY_ATTR\n");
2916 : #endif
2917 : #ifdef HAVE_VOLATILE
2918 50 : output(screen, " HAVE_VOLATILE\n");
2919 : #endif
2920 : #ifdef HAVE_VSNPRINTF
2921 50 : output(screen, " HAVE_VSNPRINTF\n");
2922 : #endif
2923 : #ifdef HAVE_VSYSLOG
2924 50 : output(screen, " HAVE_VSYSLOG\n");
2925 : #endif
2926 : #ifdef HAVE_WAIT4
2927 50 : output(screen, " HAVE_WAIT4\n");
2928 : #endif
2929 : #ifdef HAVE_WAITPID
2930 50 : output(screen, " HAVE_WAITPID\n");
2931 : #endif
2932 : #ifdef HAVE_WARN
2933 50 : output(screen, " HAVE_WARN\n");
2934 : #endif
2935 : #ifdef HAVE_WARNX
2936 49 : output(screen, " HAVE_WARNX\n");
2937 : #endif
2938 : #ifdef HAVE_WINEXE_CC_WIN32
2939 50 : output(screen, " HAVE_WINEXE_CC_WIN32\n");
2940 : #endif
2941 : #ifdef HAVE_WINEXE_CC_WIN64
2942 31 : output(screen, " HAVE_WINEXE_CC_WIN64\n");
2943 : #endif
2944 : #ifdef HAVE_WNO_ERROR_ARRAY_BOUNDS
2945 50 : output(screen, " HAVE_WNO_ERROR_ARRAY_BOUNDS\n");
2946 : #endif
2947 : #ifdef HAVE_WNO_ERROR_DECLARATION_AFTER_STATEMENT
2948 50 : output(screen, " HAVE_WNO_ERROR_DECLARATION_AFTER_STATEMENT\n");
2949 : #endif
2950 : #ifdef HAVE_WNO_ERROR_STRINGOP_OVERFLOW
2951 50 : output(screen, " HAVE_WNO_ERROR_STRINGOP_OVERFLOW\n");
2952 : #endif
2953 : #ifdef HAVE_WNO_FORMAT_TRUNCATION
2954 50 : output(screen, " HAVE_WNO_FORMAT_TRUNCATION\n");
2955 : #endif
2956 : #ifdef HAVE_WNO_STRICT_OVERFLOW
2957 50 : output(screen, " HAVE_WNO_STRICT_OVERFLOW\n");
2958 : #endif
2959 : #ifdef HAVE_WNO_UNUSED_BUT_SET_VARIABLE
2960 50 : output(screen, " HAVE_WNO_UNUSED_BUT_SET_VARIABLE\n");
2961 : #endif
2962 : #ifdef HAVE_WNO_UNUSED_FUNCTION
2963 49 : output(screen, " HAVE_WNO_UNUSED_FUNCTION\n");
2964 : #endif
2965 : #ifdef HAVE_WORKING_READLINE_READLINE_WITH_STRICT_PROTO
2966 29 : output(screen, " HAVE_WORKING_READLINE_READLINE_WITH_STRICT_PROTO\n");
2967 : #endif
2968 : #ifdef HAVE_WORKING_STRPTIME
2969 2 : output(screen, " HAVE_WORKING_STRPTIME\n");
2970 : #endif
2971 : #ifdef HAVE_WRITEV
2972 49 : output(screen, " HAVE_WRITEV\n");
2973 : #endif
2974 : #ifdef HAVE_WS_XPIXEL
2975 31 : output(screen, " HAVE_WS_XPIXEL\n");
2976 : #endif
2977 : #ifdef HAVE_WS_YPIXEL
2978 50 : output(screen, " HAVE_WS_YPIXEL\n");
2979 : #endif
2980 : #ifdef HAVE_XATTR_SUPPORT
2981 50 : output(screen, " HAVE_XATTR_SUPPORT\n");
2982 : #endif
2983 : #ifdef HAVE_XATTR_XATTR
2984 50 : output(screen, " HAVE_XATTR_XATTR\n");
2985 : #endif
2986 : #ifdef HAVE_XFS_QUOTAS
2987 49 : output(screen, " HAVE_XFS_QUOTAS\n");
2988 : #endif
2989 : #ifdef HAVE_ZLIB
2990 30 : output(screen, " HAVE_ZLIB\n");
2991 : #endif
2992 0 : #ifdef HAVE__CLOSE
2993 29 : output(screen, " HAVE__CLOSE\n");
2994 : #endif
2995 0 : #ifdef HAVE__DN_EXPAND
2996 0 : output(screen, " HAVE__DN_EXPAND\n");
2997 : #endif
2998 : #ifdef HAVE__RES
2999 1 : output(screen, " HAVE__RES\n");
3000 : #endif
3001 0 : #ifdef HAVE__SOCKET
3002 30 : output(screen, " HAVE__SOCKET\n");
3003 : #endif
3004 0 : #ifdef HAVE___ATOMIC_ADD_FETCH
3005 21 : output(screen, " HAVE___ATOMIC_ADD_FETCH\n");
3006 : #endif
3007 0 : #ifdef HAVE___ATOMIC_ADD_LOAD
3008 50 : output(screen, " HAVE___ATOMIC_ADD_LOAD\n");
3009 : #endif
3010 0 : #ifdef HAVE___ATTRIBUTE__
3011 50 : output(screen, " HAVE___ATTRIBUTE__\n");
3012 : #endif
3013 0 : #ifdef HAVE___CLOSE_NOCANCEL
3014 49 : output(screen, " HAVE___CLOSE_NOCANCEL\n");
3015 : #endif
3016 0 : #ifdef HAVE___DN_EXPAND
3017 29 : output(screen, " HAVE___DN_EXPAND\n");
3018 : #endif
3019 0 : #ifdef HAVE___POSIX_GETGRGID_R
3020 0 : output(screen, " HAVE___POSIX_GETGRGID_R\n");
3021 : #endif
3022 0 : #ifdef HAVE___POSIX_GETGRNAM_R
3023 0 : output(screen, " HAVE___POSIX_GETGRNAM_R\n");
3024 : #endif
3025 0 : #ifdef HAVE___POSIX_GETPWNAM_R
3026 0 : output(screen, " HAVE___POSIX_GETPWNAM_R\n");
3027 : #endif
3028 0 : #ifdef HAVE___POSIX_GETPWUID_R
3029 0 : output(screen, " HAVE___POSIX_GETPWUID_R\n");
3030 : #endif
3031 0 : #ifdef HAVE___RES_CLOSE
3032 1 : output(screen, " HAVE___RES_CLOSE\n");
3033 : #endif
3034 : #ifdef HAVE___RES_INIT
3035 31 : output(screen, " HAVE___RES_INIT\n");
3036 0 : #endif
3037 : #ifdef HAVE___RES_NCLOSE
3038 50 : output(screen, " HAVE___RES_NCLOSE\n");
3039 : #endif
3040 : #ifdef HAVE___RES_NINIT
3041 50 : output(screen, " HAVE___RES_NINIT\n");
3042 : #endif
3043 : #ifdef HAVE___RES_NQUERY
3044 48 : output(screen, " HAVE___RES_NQUERY\n");
3045 : #endif
3046 1 : #ifdef HAVE___RES_NSEARCH
3047 0 : output(screen, " HAVE___RES_NSEARCH\n");
3048 0 : #endif
3049 20 : #ifdef HAVE___RES_QUERY
3050 0 : output(screen, " HAVE___RES_QUERY\n");
3051 : #endif
3052 20 : #ifdef HAVE___RES_SEARCH
3053 : output(screen, " HAVE___RES_SEARCH\n");
3054 : #endif
3055 19 : #ifdef HAVE___SS_FAMILY
3056 0 : output(screen, " HAVE___SS_FAMILY\n");
3057 : #endif
3058 20 : #ifdef HAVE___STRTOLL
3059 0 : output(screen, " HAVE___STRTOLL\n");
3060 : #endif
3061 1 : #ifdef HAVE___STRTOULL
3062 0 : output(screen, " HAVE___STRTOULL\n");
3063 : #endif
3064 20 : #ifdef HAVE___SYNC_ADD_AND_FETCH
3065 1 : output(screen, " HAVE___SYNC_ADD_AND_FETCH\n");
3066 : #endif
3067 20 : #ifdef HAVE___SYNC_FETCH_AND_ADD
3068 30 : output(screen, " HAVE___SYNC_FETCH_AND_ADD\n");
3069 : #endif
3070 20 : #ifdef HAVE___THREAD
3071 30 : output(screen, " HAVE___THREAD\n");
3072 : #endif
3073 20 :
3074 29 :
3075 : /* Show --with Options */
3076 21 : output(screen, "\n--with Options:\n");
3077 :
3078 : #ifdef WITH_ADS
3079 50 : output(screen, " WITH_ADS\n");
3080 : #endif
3081 : #ifdef WITH_AUTOMOUNT
3082 50 : output(screen, " WITH_AUTOMOUNT\n");
3083 : #endif
3084 : #ifdef WITH_KERNEL_KEYRING
3085 49 : output(screen, " WITH_KERNEL_KEYRING\n");
3086 : #endif
3087 : #ifdef WITH_NTVFS_FILESERVER
3088 21 : output(screen, " WITH_NTVFS_FILESERVER\n");
3089 : #endif
3090 : #ifdef WITH_PAM
3091 49 : output(screen, " WITH_PAM\n");
3092 : #endif
3093 1 : #ifdef WITH_PAM_MODULES
3094 49 : output(screen, " WITH_PAM_MODULES\n");
3095 : #endif
3096 0 : #ifdef WITH_PTHREADPOOL
3097 49 : output(screen, " WITH_PTHREADPOOL\n");
3098 : #endif
3099 : #ifdef WITH_QUOTAS
3100 30 : output(screen, " WITH_QUOTAS\n");
3101 : #endif
3102 19 : #ifdef WITH_SMB1SERVER
3103 30 : output(screen, " WITH_SMB1SERVER\n");
3104 : #endif
3105 1 : #ifdef WITH_SPOTLIGHT
3106 30 : output(screen, " WITH_SPOTLIGHT\n");
3107 : #endif
3108 : #ifdef WITH_SYSLOG
3109 30 : output(screen, " WITH_SYSLOG\n");
3110 : #endif
3111 : #ifdef WITH_TEVENT_GLIB_GLUE
3112 30 : output(screen, " WITH_TEVENT_GLIB_GLUE\n");
3113 : #endif
3114 19 : #ifdef WITH_WINBIND
3115 30 : output(screen, " WITH_WINBIND\n");
3116 : #endif
3117 19 : #ifdef WITH_WSP
3118 30 : output(screen, " WITH_WSP\n");
3119 : #endif
3120 :
3121 29 :
3122 : /* Show Build Options */
3123 1 : output(screen, "\nBuild Options:\n");
3124 29 :
3125 : #ifdef ABI_CHECK
3126 : output(screen, " ABI_CHECK\n");
3127 : #endif
3128 : #ifdef ABS_TOP_BUILDDIR
3129 29 : output(screen, " ABS_TOP_BUILDDIR\n");
3130 : #endif
3131 : #ifdef ABS_TOP_SRCDIR
3132 0 : output(screen, " ABS_TOP_SRCDIR\n");
3133 : #endif
3134 : #ifdef AD_DC_BUILD_IS_ENABLED
3135 1 : output(screen, " AD_DC_BUILD_IS_ENABLED\n");
3136 : #endif
3137 : #ifdef ALLOW_GNUTLS_AEAD_CIPHER_ENCRYPTV2_AES_CCM
3138 : output(screen, " ALLOW_GNUTLS_AEAD_CIPHER_ENCRYPTV2_AES_CCM\n");
3139 : #endif
3140 : #ifdef AR
3141 27 : output(screen, " AR\n");
3142 : #endif
3143 : #ifdef ARFLAGS
3144 29 : output(screen, " ARFLAGS\n");
3145 : #endif
3146 : #ifdef ASN1PARSER
3147 2 : output(screen, " ASN1PARSER\n");
3148 : #endif
3149 : #ifdef ASN1_COMPILE
3150 1 : output(screen, " ASN1_COMPILE\n");
3151 : #endif
3152 : #ifdef AUTH_SHARED
3153 1 : output(screen, " AUTH_SHARED\n");
3154 : #endif
3155 : #ifdef AUTH_STATIC
3156 : output(screen, " AUTH_STATIC\n");
3157 : #endif
3158 : #ifdef AUTOCONF_BUILD
3159 19 : output(screen, " AUTOCONF_BUILD\n");
3160 : #endif
3161 : #ifdef AUTOCONF_HOST
3162 19 : output(screen, " AUTOCONF_HOST\n");
3163 : #endif
3164 : #ifdef AUTOCONF_PROGRAM_PREFIX
3165 0 : output(screen, " AUTOCONF_PROGRAM_PREFIX\n");
3166 : #endif
3167 : #ifdef AWK
3168 : output(screen, " AWK\n");
3169 : #endif
3170 : #ifdef BINDDNS_DIR
3171 : output(screen, " BINDDNS_DIR\n");
3172 : #endif
3173 : #ifdef BINDIR
3174 0 : output(screen, " BINDIR\n");
3175 : #endif
3176 : #ifdef BISON
3177 1 : output(screen, " BISON\n");
3178 : #endif
3179 : #ifdef BISONFLAGS
3180 1 : output(screen, " BISONFLAGS\n");
3181 : #endif
3182 : #ifdef BOOL_DEFINED
3183 : output(screen, " BOOL_DEFINED\n");
3184 : #endif
3185 : #ifdef BROKEN_NISPLUS_INCLUDE_FILES
3186 : output(screen, " BROKEN_NISPLUS_INCLUDE_FILES\n");
3187 : #endif
3188 : #ifdef BSD_STYLE_STATVFS
3189 27 : output(screen, " BSD_STYLE_STATVFS\n");
3190 : #endif
3191 : #ifdef BUILD_DIRECTORY
3192 29 : output(screen, " BUILD_DIRECTORY\n");
3193 : #endif
3194 : #ifdef BUILTIN_LIBRARIES
3195 2 : output(screen, " BUILTIN_LIBRARIES\n");
3196 : #endif
3197 : #ifdef BUNDLED_LIBS
3198 : output(screen, " BUNDLED_LIBS\n");
3199 : #endif
3200 : #ifdef CACHEDIR
3201 : output(screen, " CACHEDIR\n");
3202 : #endif
3203 : #ifdef CC
3204 : output(screen, " CC\n");
3205 : #endif
3206 : #ifdef CCLNK_SRC_F
3207 : output(screen, " CCLNK_SRC_F\n");
3208 : #endif
3209 : #ifdef CCLNK_TGT_F
3210 : output(screen, " CCLNK_TGT_F\n");
3211 : #endif
3212 : #ifdef CC_NAME
3213 : output(screen, " CC_NAME\n");
3214 : #endif
3215 : #ifdef CC_SRC_F
3216 : output(screen, " CC_SRC_F\n");
3217 : #endif
3218 : #ifdef CC_TGT_F
3219 : output(screen, " CC_TGT_F\n");
3220 : #endif
3221 : #ifdef CC_VERSION
3222 : output(screen, " CC_VERSION\n");
3223 : #endif
3224 : #ifdef CFLAGS
3225 : output(screen, " CFLAGS\n");
3226 : #endif
3227 : #ifdef CFLAGS_CEPHFS
3228 : output(screen, " CFLAGS_CEPHFS\n");
3229 : #endif
3230 : #ifdef CFLAGS_MACBUNDLE
3231 : output(screen, " CFLAGS_MACBUNDLE\n");
3232 : #endif
3233 : #ifdef CFLAGS_PYEMBED
3234 : output(screen, " CFLAGS_PYEMBED\n");
3235 : #endif
3236 : #ifdef CFLAGS_PYEXT
3237 0 : output(screen, " CFLAGS_PYEXT\n");
3238 : #endif
3239 : #ifdef CFLAGS_acl
3240 : output(screen, " CFLAGS_acl\n");
3241 : #endif
3242 : #ifdef CFLAGS_archive
3243 : output(screen, " CFLAGS_archive\n");
3244 : #endif
3245 : #ifdef CFLAGS_avahi_common
3246 0 : output(screen, " CFLAGS_avahi_common\n");
3247 : #endif
3248 : #ifdef CFLAGS_bsd
3249 : output(screen, " CFLAGS_bsd\n");
3250 : #endif
3251 : #ifdef CFLAGS_cap
3252 : output(screen, " CFLAGS_cap\n");
3253 : #endif
3254 : #ifdef CFLAGS_cephfs
3255 : output(screen, " CFLAGS_cephfs\n");
3256 : #endif
3257 : #ifdef CFLAGS_crypt
3258 0 : output(screen, " CFLAGS_crypt\n");
3259 : #endif
3260 : #ifdef CFLAGS_cshlib
3261 : output(screen, " CFLAGS_cshlib\n");
3262 : #endif
3263 : #ifdef CFLAGS_cups
3264 : output(screen, " CFLAGS_cups\n");
3265 : #endif
3266 : #ifdef CFLAGS_dbus_1
3267 : output(screen, " CFLAGS_dbus_1\n");
3268 : #endif
3269 : #ifdef CFLAGS_form
3270 : output(screen, " CFLAGS_form\n");
3271 : #endif
3272 : #ifdef CFLAGS_glib_2_0
3273 : output(screen, " CFLAGS_glib_2_0\n");
3274 : #endif
3275 : #ifdef CFLAGS_gpgme
3276 : output(screen, " CFLAGS_gpgme\n");
3277 : #endif
3278 : #ifdef CFLAGS_icudata
3279 : output(screen, " CFLAGS_icudata\n");
3280 : #endif
3281 : #ifdef CFLAGS_icui18n
3282 : output(screen, " CFLAGS_icui18n\n");
3283 : #endif
3284 : #ifdef CFLAGS_icuuc
3285 : output(screen, " CFLAGS_icuuc\n");
3286 : #endif
3287 : #ifdef CFLAGS_jansson
3288 : output(screen, " CFLAGS_jansson\n");
3289 : #endif
3290 : #ifdef CFLAGS_keyutils
3291 : output(screen, " CFLAGS_keyutils\n");
3292 : #endif
3293 : #ifdef CFLAGS_lber
3294 0 : output(screen, " CFLAGS_lber\n");
3295 : #endif
3296 : #ifdef CFLAGS_ldap
3297 1 : output(screen, " CFLAGS_ldap\n");
3298 : #endif
3299 : #ifdef CFLAGS_lmdb
3300 0 : output(screen, " CFLAGS_lmdb\n");
3301 : #endif
3302 : #ifdef CFLAGS_menu
3303 : output(screen, " CFLAGS_menu\n");
3304 : #endif
3305 : #ifdef CFLAGS_ncurses
3306 1 : output(screen, " CFLAGS_ncurses\n");
3307 : #endif
3308 : #ifdef CFLAGS_nsl
3309 : output(screen, " CFLAGS_nsl\n");
3310 : #endif
3311 : #ifdef CFLAGS_pam
3312 : output(screen, " CFLAGS_pam\n");
3313 : #endif
3314 : #ifdef CFLAGS_panel
3315 0 : output(screen, " CFLAGS_panel\n");
3316 : #endif
3317 : #ifdef CFLAGS_popt
3318 1 : output(screen, " CFLAGS_popt\n");
3319 : #endif
3320 : #ifdef CFLAGS_readline
3321 : output(screen, " CFLAGS_readline\n");
3322 : #endif
3323 : #ifdef CFLAGS_resolv
3324 0 : output(screen, " CFLAGS_resolv\n");
3325 : #endif
3326 : #ifdef CFLAGS_systemd
3327 19 : output(screen, " CFLAGS_systemd\n");
3328 : #endif
3329 : #ifdef CFLAGS_uring
3330 0 : output(screen, " CFLAGS_uring\n");
3331 : #endif
3332 : #ifdef CFLAGS_z
3333 : output(screen, " CFLAGS_z\n");
3334 : #endif
3335 : #ifdef CHARSET_SHARED
3336 19 : output(screen, " CHARSET_SHARED\n");
3337 : #endif
3338 : #ifdef CHARSET_STATIC
3339 0 : output(screen, " CHARSET_STATIC\n");
3340 : #endif
3341 : #ifdef CHECK_C99_INIT
3342 1 : output(screen, " CHECK_C99_INIT\n");
3343 : #endif
3344 : #ifdef CODEPAGEDIR
3345 19 : output(screen, " CODEPAGEDIR\n");
3346 : #endif
3347 : #ifdef COMPILER_CC
3348 28 : output(screen, " COMPILER_CC\n");
3349 : #endif
3350 : #ifdef COMPILER_SUPPORTS_LL
3351 3 : output(screen, " COMPILER_SUPPORTS_LL\n");
3352 : #endif
3353 : #ifdef COMPILE_ET
3354 1 : output(screen, " COMPILE_ET\n");
3355 : #endif
3356 : #ifdef CONFIGDIR
3357 27 : output(screen, " CONFIGDIR\n");
3358 : #endif
3359 : #ifdef CONFIGFILE
3360 3 : output(screen, " CONFIGFILE\n");
3361 : #endif
3362 : #ifdef CONFIG_H_IS_FROM_SAMBA
3363 : output(screen, " CONFIG_H_IS_FROM_SAMBA\n");
3364 : #endif
3365 : #ifdef CPPPATH
3366 : output(screen, " CPPPATH\n");
3367 : #endif
3368 : #ifdef CPPPATH_GPFS
3369 27 : output(screen, " CPPPATH_GPFS\n");
3370 : #endif
3371 : #ifdef CPPPATH_ST
3372 2 : output(screen, " CPPPATH_ST\n");
3373 : #endif
3374 : #ifdef CROSS_ANSWERS
3375 1 : output(screen, " CROSS_ANSWERS\n");
3376 : #endif
3377 : #ifdef CROSS_COMPILE
3378 0 : output(screen, " CROSS_COMPILE\n");
3379 : #endif
3380 : #ifdef CROSS_EXECUTE
3381 : output(screen, " CROSS_EXECUTE\n");
3382 : #endif
3383 : #ifdef CUPS_CONFIG
3384 19 : output(screen, " CUPS_CONFIG\n");
3385 : #endif
3386 : #ifdef CXXFLAGS_PYEMBED
3387 0 : output(screen, " CXXFLAGS_PYEMBED\n");
3388 : #endif
3389 : #ifdef CXXFLAGS_PYEXT
3390 19 : output(screen, " CXXFLAGS_PYEXT\n");
3391 : #endif
3392 : #ifdef DATADIR
3393 0 : output(screen, " DATADIR\n");
3394 : #endif
3395 : #ifdef DATAROOTDIR
3396 : output(screen, " DATAROOTDIR\n");
3397 : #endif
3398 : #ifdef DEFAULT_DOS_CHARSET
3399 : output(screen, " DEFAULT_DOS_CHARSET\n");
3400 : #endif
3401 : #ifdef DEFAULT_PRIVATE_LIBS
3402 : output(screen, " DEFAULT_PRIVATE_LIBS\n");
3403 : #endif
3404 : #ifdef DEFAULT_UNIX_CHARSET
3405 28 : output(screen, " DEFAULT_UNIX_CHARSET\n");
3406 : #endif
3407 : #ifdef DEFINES
3408 3 : output(screen, " DEFINES\n");
3409 : #endif
3410 : #ifdef DEFINES_NCURSES
3411 27 : output(screen, " DEFINES_NCURSES\n");
3412 : #endif
3413 : #ifdef DEFINES_PYEMBED
3414 3 : output(screen, " DEFINES_PYEMBED\n");
3415 : #endif
3416 : #ifdef DEFINES_PYEXT
3417 : output(screen, " DEFINES_PYEXT\n");
3418 : #endif
3419 : #ifdef DEFINES_ST
3420 0 : output(screen, " DEFINES_ST\n");
3421 : #endif
3422 : #ifdef DEST_BINFMT
3423 : output(screen, " DEST_BINFMT\n");
3424 : #endif
3425 : #ifdef DEST_CPU
3426 : output(screen, " DEST_CPU\n");
3427 : #endif
3428 : #ifdef DEST_OS
3429 : output(screen, " DEST_OS\n");
3430 : #endif
3431 : #ifdef DEVELOPER
3432 19 : output(screen, " DEVELOPER\n");
3433 : #endif
3434 : #ifdef DEVELOPER_MODE
3435 0 : output(screen, " DEVELOPER_MODE\n");
3436 : #endif
3437 : #ifdef DLOPEN_TAKES_UNSIGNED_FLAGS
3438 27 : output(screen, " DLOPEN_TAKES_UNSIGNED_FLAGS\n");
3439 : #endif
3440 : #ifdef DOCDIR
3441 3 : output(screen, " DOCDIR\n");
3442 : #endif
3443 : #ifdef DOC_VERSION
3444 : output(screen, " DOC_VERSION\n");
3445 : #endif
3446 : #ifdef DVIDIR
3447 : output(screen, " DVIDIR\n");
3448 : #endif
3449 : #ifdef ENABLE_GCCDEPS
3450 : output(screen, " ENABLE_GCCDEPS\n");
3451 : #endif
3452 : #ifdef ENABLE_GPGME
3453 19 : output(screen, " ENABLE_GPGME\n");
3454 : #endif
3455 : #ifdef ENABLE_LDAP_BACKEND
3456 : output(screen, " ENABLE_LDAP_BACKEND\n");
3457 : #endif
3458 : #ifdef ENABLE_PIE
3459 27 : output(screen, " ENABLE_PIE\n");
3460 : #endif
3461 : #ifdef ENABLE_RELRO
3462 3 : output(screen, " ENABLE_RELRO\n");
3463 : #endif
3464 : #ifdef ENABLE_SELFTEST
3465 19 : output(screen, " ENABLE_SELFTEST\n");
3466 : #endif
3467 : #ifdef EXEC_PREFIX
3468 : output(screen, " EXEC_PREFIX\n");
3469 : #endif
3470 : #ifdef EXTRA_CFLAGS
3471 28 : output(screen, " EXTRA_CFLAGS\n");
3472 : #endif
3473 : #ifdef EXTRA_INCLUDES
3474 2 : output(screen, " EXTRA_INCLUDES\n");
3475 : #endif
3476 : #ifdef EXTRA_LDFLAGS
3477 : output(screen, " EXTRA_LDFLAGS\n");
3478 : #endif
3479 : #ifdef FLEX
3480 0 : output(screen, " FLEX\n");
3481 : #endif
3482 : #ifdef FLEXFLAGS
3483 0 : output(screen, " FLEXFLAGS\n");
3484 : #endif
3485 : #ifdef FOUND_SYSTEMLIB_cmocka
3486 0 : output(screen, " FOUND_SYSTEMLIB_cmocka\n");
3487 : #endif
3488 : #ifdef FOUND_SYSTEMLIB_libtasn1
3489 0 : output(screen, " FOUND_SYSTEMLIB_libtasn1\n");
3490 : #endif
3491 : #ifdef FOUND_SYSTEMLIB_nss_wrapper
3492 : output(screen, " FOUND_SYSTEMLIB_nss_wrapper\n");
3493 : #endif
3494 : #ifdef FOUND_SYSTEMLIB_pam_wrapper
3495 0 : output(screen, " FOUND_SYSTEMLIB_pam_wrapper\n");
3496 : #endif
3497 : #ifdef FOUND_SYSTEMLIB_popt
3498 : output(screen, " FOUND_SYSTEMLIB_popt\n");
3499 : #endif
3500 : #ifdef FOUND_SYSTEMLIB_pytalloc_util_cpython_310_x86_64_linux_gnu
3501 : output(screen, " FOUND_SYSTEMLIB_pytalloc_util_cpython_310_x86_64_linux_gnu\n");
3502 : #endif
3503 : #ifdef FOUND_SYSTEMLIB_resolv_wrapper
3504 : output(screen, " FOUND_SYSTEMLIB_resolv_wrapper\n");
3505 : #endif
3506 : #ifdef FOUND_SYSTEMLIB_socket_wrapper
3507 : output(screen, " FOUND_SYSTEMLIB_socket_wrapper\n");
3508 : #endif
3509 : #ifdef FOUND_SYSTEMLIB_talloc
3510 : output(screen, " FOUND_SYSTEMLIB_talloc\n");
3511 : #endif
3512 : #ifdef FOUND_SYSTEMLIB_tdb
3513 0 : output(screen, " FOUND_SYSTEMLIB_tdb\n");
3514 : #endif
3515 : #ifdef FOUND_SYSTEMLIB_tevent
3516 : output(screen, " FOUND_SYSTEMLIB_tevent\n");
3517 : #endif
3518 : #ifdef FOUND_SYSTEMLIB_uid_wrapper
3519 : output(screen, " FOUND_SYSTEMLIB_uid_wrapper\n");
3520 : #endif
3521 : #ifdef GDB
3522 1 : output(screen, " GDB\n");
3523 : #endif
3524 : #ifdef GETCWD_TAKES_NULL
3525 1 : output(screen, " GETCWD_TAKES_NULL\n");
3526 : #endif
3527 : #ifdef GIT
3528 1 : output(screen, " GIT\n");
3529 : #endif
3530 : #ifdef GIT_LOCAL_CHANGES
3531 29 : output(screen, " GIT_LOCAL_CHANGES\n");
3532 : #endif
3533 : #ifdef GLOBAL_DEPENDENCIES
3534 3 : output(screen, " GLOBAL_DEPENDENCIES\n");
3535 : #endif
3536 : #ifdef GPEXT_SHARED
3537 : output(screen, " GPEXT_SHARED\n");
3538 : #endif
3539 : #ifdef GPEXT_STATIC
3540 1 : output(screen, " GPEXT_STATIC\n");
3541 : #endif
3542 : #ifdef GPGME_CONFIG
3543 : output(screen, " GPGME_CONFIG\n");
3544 : #endif
3545 : #ifdef HEIMDAL_NO_ERROR_CFLAGS
3546 19 : output(screen, " HEIMDAL_NO_ERROR_CFLAGS\n");
3547 : #endif
3548 : #ifdef HEIMDAL_UNPICKY_WNO_FREE_NOHEAP_OBJECT_CFLAGS
3549 : output(screen, " HEIMDAL_UNPICKY_WNO_FREE_NOHEAP_OBJECT_CFLAGS\n");
3550 : #endif
3551 : #ifdef HEIMDAL_UNPICKY_WNO_STRICT_OVERFLOW_CFLAGS
3552 1 : output(screen, " HEIMDAL_UNPICKY_WNO_STRICT_OVERFLOW_CFLAGS\n");
3553 : #endif
3554 : #ifdef HOSTCC
3555 : output(screen, " HOSTCC\n");
3556 : #endif
3557 : #ifdef HTMLDIR
3558 : output(screen, " HTMLDIR\n");
3559 : #endif
3560 : #ifdef IDMAP_SHARED
3561 0 : output(screen, " IDMAP_SHARED\n");
3562 : #endif
3563 : #ifdef IDMAP_STATIC
3564 0 : output(screen, " IDMAP_STATIC\n");
3565 : #endif
3566 : #ifdef INCLUDEDIR
3567 0 : output(screen, " INCLUDEDIR\n");
3568 : #endif
3569 : #ifdef INCLUDES_DBUS_1
3570 0 : output(screen, " INCLUDES_DBUS_1\n");
3571 : #endif
3572 : #ifdef INCLUDES_GLIB_2_0
3573 0 : output(screen, " INCLUDES_GLIB_2_0\n");
3574 : #endif
3575 : #ifdef INCLUDES_GNUTLS
3576 : output(screen, " INCLUDES_GNUTLS\n");
3577 : #endif
3578 : #ifdef INCLUDES_PYEMBED
3579 0 : output(screen, " INCLUDES_PYEMBED\n");
3580 : #endif
3581 : #ifdef INCLUDES_PYEXT
3582 0 : output(screen, " INCLUDES_PYEXT\n");
3583 : #endif
3584 : #ifdef INCLUDES_TIRPC
3585 0 : output(screen, " INCLUDES_TIRPC\n");
3586 : #endif
3587 : #ifdef INFODIR
3588 0 : output(screen, " INFODIR\n");
3589 : #endif
3590 : #ifdef INIT_FUNCTIONS
3591 0 : output(screen, " INIT_FUNCTIONS\n");
3592 : #endif
3593 : #ifdef INLINE_MACRO
3594 0 : output(screen, " INLINE_MACRO\n");
3595 : #endif
3596 : #ifdef KRB5_CONST_PAC_GET_BUFFER
3597 : output(screen, " KRB5_CONST_PAC_GET_BUFFER\n");
3598 : #endif
3599 : #ifdef KRB5_CREDS_OPT_FREE_REQUIRES_CONTEXT
3600 27 : output(screen, " KRB5_CREDS_OPT_FREE_REQUIRES_CONTEXT\n");
3601 : #endif
3602 : #ifdef KRB5_PRINC_REALM_RETURNS_REALM
3603 30 : output(screen, " KRB5_PRINC_REALM_RETURNS_REALM\n");
3604 : #endif
3605 : #ifdef LDAP_DEPRECATED
3606 30 : output(screen, " LDAP_DEPRECATED\n");
3607 : #endif
3608 : #ifdef LDAP_LIBS
3609 30 : output(screen, " LDAP_LIBS\n");
3610 : #endif
3611 : #ifdef LDAP_SET_REBIND_PROC_ARGS
3612 29 : output(screen, " LDAP_SET_REBIND_PROC_ARGS\n");
3613 : #endif
3614 : #ifdef LDBMODULESDIR
3615 3 : output(screen, " LDBMODULESDIR\n");
3616 : #endif
3617 : #ifdef LDB_MODULESDIR
3618 27 : output(screen, " LDB_MODULESDIR\n");
3619 : #endif
3620 : #ifdef LDB_PACKAGE_VERSION
3621 3 : output(screen, " LDB_PACKAGE_VERSION\n");
3622 : #endif
3623 : #ifdef LDFLAGS_acl
3624 : output(screen, " LDFLAGS_acl\n");
3625 : #endif
3626 : #ifdef LDFLAGS_archive
3627 19 : output(screen, " LDFLAGS_archive\n");
3628 : #endif
3629 : #ifdef LDFLAGS_avahi_common
3630 : output(screen, " LDFLAGS_avahi_common\n");
3631 : #endif
3632 : #ifdef LDFLAGS_bsd
3633 19 : output(screen, " LDFLAGS_bsd\n");
3634 : #endif
3635 : #ifdef LDFLAGS_cap
3636 : output(screen, " LDFLAGS_cap\n");
3637 : #endif
3638 : #ifdef LDFLAGS_cephfs
3639 19 : output(screen, " LDFLAGS_cephfs\n");
3640 : #endif
3641 : #ifdef LDFLAGS_crypt
3642 : output(screen, " LDFLAGS_crypt\n");
3643 : #endif
3644 : #ifdef LDFLAGS_cups
3645 20 : output(screen, " LDFLAGS_cups\n");
3646 : #endif
3647 : #ifdef LDFLAGS_dbus_1
3648 1 : output(screen, " LDFLAGS_dbus_1\n");
3649 : #endif
3650 : #ifdef LDFLAGS_form
3651 : output(screen, " LDFLAGS_form\n");
3652 : #endif
3653 : #ifdef LDFLAGS_glib_2_0
3654 : output(screen, " LDFLAGS_glib_2_0\n");
3655 : #endif
3656 : #ifdef LDFLAGS_gpgme
3657 1 : output(screen, " LDFLAGS_gpgme\n");
3658 : #endif
3659 : #ifdef LDFLAGS_icudata
3660 1 : output(screen, " LDFLAGS_icudata\n");
3661 : #endif
3662 : #ifdef LDFLAGS_icui18n
3663 1 : output(screen, " LDFLAGS_icui18n\n");
3664 : #endif
3665 : #ifdef LDFLAGS_icuuc
3666 1 : output(screen, " LDFLAGS_icuuc\n");
3667 : #endif
3668 : #ifdef LDFLAGS_jansson
3669 : output(screen, " LDFLAGS_jansson\n");
3670 : #endif
3671 : #ifdef LDFLAGS_keyutils
3672 : output(screen, " LDFLAGS_keyutils\n");
3673 : #endif
3674 : #ifdef LDFLAGS_lber
3675 : output(screen, " LDFLAGS_lber\n");
3676 : #endif
3677 : #ifdef LDFLAGS_ldap
3678 : output(screen, " LDFLAGS_ldap\n");
3679 : #endif
3680 : #ifdef LDFLAGS_lmdb
3681 : output(screen, " LDFLAGS_lmdb\n");
3682 : #endif
3683 : #ifdef LDFLAGS_menu
3684 0 : output(screen, " LDFLAGS_menu\n");
3685 : #endif
3686 : #ifdef LDFLAGS_ncurses
3687 0 : output(screen, " LDFLAGS_ncurses\n");
3688 : #endif
3689 : #ifdef LDFLAGS_nsl
3690 : output(screen, " LDFLAGS_nsl\n");
3691 : #endif
3692 : #ifdef LDFLAGS_pam
3693 : output(screen, " LDFLAGS_pam\n");
3694 : #endif
3695 : #ifdef LDFLAGS_panel
3696 : output(screen, " LDFLAGS_panel\n");
3697 : #endif
3698 : #ifdef LDFLAGS_popt
3699 : output(screen, " LDFLAGS_popt\n");
3700 : #endif
3701 : #ifdef LDFLAGS_readline
3702 0 : output(screen, " LDFLAGS_readline\n");
3703 : #endif
3704 : #ifdef LDFLAGS_resolv
3705 0 : output(screen, " LDFLAGS_resolv\n");
3706 : #endif
3707 : #ifdef LDFLAGS_systemd
3708 0 : output(screen, " LDFLAGS_systemd\n");
3709 : #endif
3710 : #ifdef LDFLAGS_uring
3711 0 : output(screen, " LDFLAGS_uring\n");
3712 : #endif
3713 : #ifdef LDFLAGS_z
3714 : output(screen, " LDFLAGS_z\n");
3715 : #endif
3716 : #ifdef LIBDIR
3717 : output(screen, " LIBDIR\n");
3718 : #endif
3719 : #ifdef LIBEXECDIR
3720 : output(screen, " LIBEXECDIR\n");
3721 : #endif
3722 : #ifdef LIBNSS_WRAPPER_SO_PATH
3723 : output(screen, " LIBNSS_WRAPPER_SO_PATH\n");
3724 : #endif
3725 : #ifdef LIBPAM_WRAPPER_SO_PATH
3726 : output(screen, " LIBPAM_WRAPPER_SO_PATH\n");
3727 : #endif
3728 : #ifdef LIBPATH
3729 27 : output(screen, " LIBPATH\n");
3730 : #endif
3731 : #ifdef LIBPATH_PYEMBED
3732 29 : output(screen, " LIBPATH_PYEMBED\n");
3733 : #endif
3734 : #ifdef LIBPATH_PYEXT
3735 2 : output(screen, " LIBPATH_PYEXT\n");
3736 : #endif
3737 : #ifdef LIBPATH_ST
3738 1 : output(screen, " LIBPATH_ST\n");
3739 : #endif
3740 : #ifdef LIBPATH_gpgme
3741 1 : output(screen, " LIBPATH_gpgme\n");
3742 : #endif
3743 : #ifdef LIBREPLACE_NETWORK_CHECKS
3744 : output(screen, " LIBREPLACE_NETWORK_CHECKS\n");
3745 : #endif
3746 : #ifdef LIBRESOLV_WRAPPER_SO_PATH
3747 : output(screen, " LIBRESOLV_WRAPPER_SO_PATH\n");
3748 : #endif
3749 : #ifdef LIBSOCKET_WRAPPER_SO_PATH
3750 27 : output(screen, " LIBSOCKET_WRAPPER_SO_PATH\n");
3751 : #endif
3752 : #ifdef LIBUID_WRAPPER_SO_PATH
3753 29 : output(screen, " LIBUID_WRAPPER_SO_PATH\n");
3754 : #endif
3755 : #ifdef LIB_ACL
3756 29 : output(screen, " LIB_ACL\n");
3757 : #endif
3758 : #ifdef LIB_ARCHIVE
3759 29 : output(screen, " LIB_ARCHIVE\n");
3760 : #endif
3761 : #ifdef LIB_AVAHI_COMMON
3762 21 : output(screen, " LIB_AVAHI_COMMON\n");
3763 : #endif
3764 : #ifdef LIB_BSD
3765 19 : output(screen, " LIB_BSD\n");
3766 : #endif
3767 : #ifdef LIB_CAP
3768 1 : output(screen, " LIB_CAP\n");
3769 : #endif
3770 : #ifdef LIB_CEPHFS
3771 1 : output(screen, " LIB_CEPHFS\n");
3772 : #endif
3773 : #ifdef LIB_CRYPT
3774 1 : output(screen, " LIB_CRYPT\n");
3775 : #endif
3776 : #ifdef LIB_CUPS
3777 1 : output(screen, " LIB_CUPS\n");
3778 : #endif
3779 : #ifdef LIB_DBUS_1
3780 : output(screen, " LIB_DBUS_1\n");
3781 : #endif
3782 : #ifdef LIB_FORM
3783 19 : output(screen, " LIB_FORM\n");
3784 : #endif
3785 : #ifdef LIB_GLIB_2_0
3786 19 : output(screen, " LIB_GLIB_2_0\n");
3787 : #endif
3788 : #ifdef LIB_GNUTLS
3789 19 : output(screen, " LIB_GNUTLS\n");
3790 : #endif
3791 : #ifdef LIB_GPGME
3792 19 : output(screen, " LIB_GPGME\n");
3793 : #endif
3794 : #ifdef LIB_ICUDATA
3795 : output(screen, " LIB_ICUDATA\n");
3796 : #endif
3797 : #ifdef LIB_ICUI18N
3798 : output(screen, " LIB_ICUI18N\n");
3799 : #endif
3800 : #ifdef LIB_ICUUC
3801 : output(screen, " LIB_ICUUC\n");
3802 : #endif
3803 : #ifdef LIB_ICU_I18N
3804 : output(screen, " LIB_ICU_I18N\n");
3805 : #endif
3806 : #ifdef LIB_JANSSON
3807 : output(screen, " LIB_JANSSON\n");
3808 : #endif
3809 : #ifdef LIB_KEYUTILS
3810 : output(screen, " LIB_KEYUTILS\n");
3811 : #endif
3812 : #ifdef LIB_LBER
3813 : output(screen, " LIB_LBER\n");
3814 : #endif
3815 : #ifdef LIB_LDAP
3816 0 : output(screen, " LIB_LDAP\n");
3817 : #endif
3818 : #ifdef LIB_LIBSYSTEMD
3819 0 : output(screen, " LIB_LIBSYSTEMD\n");
3820 : #endif
3821 : #ifdef LIB_LIBTASN1
3822 : output(screen, " LIB_LIBTASN1\n");
3823 : #endif
3824 : #ifdef LIB_LMDB
3825 : output(screen, " LIB_LMDB\n");
3826 : #endif
3827 : #ifdef LIB_MENU
3828 : output(screen, " LIB_MENU\n");
3829 : #endif
3830 : #ifdef LIB_NCURSES
3831 : output(screen, " LIB_NCURSES\n");
3832 : #endif
3833 : #ifdef LIB_NSL
3834 : output(screen, " LIB_NSL\n");
3835 : #endif
3836 : #ifdef LIB_PAM
3837 : output(screen, " LIB_PAM\n");
3838 : #endif
3839 : #ifdef LIB_PANEL
3840 : output(screen, " LIB_PANEL\n");
3841 : #endif
3842 : #ifdef LIB_POPT
3843 : output(screen, " LIB_POPT\n");
3844 : #endif
3845 : #ifdef LIB_PYEMBED
3846 : output(screen, " LIB_PYEMBED\n");
3847 : #endif
3848 : #ifdef LIB_PYEXT
3849 : output(screen, " LIB_PYEXT\n");
3850 : #endif
3851 : #ifdef LIB_READLINE
3852 : output(screen, " LIB_READLINE\n");
3853 : #endif
3854 : #ifdef LIB_RESOLV
3855 : output(screen, " LIB_RESOLV\n");
3856 : #endif
3857 : #ifdef LIB_ST
3858 : output(screen, " LIB_ST\n");
3859 : #endif
3860 : #ifdef LIB_SYSTEMD
3861 : output(screen, " LIB_SYSTEMD\n");
3862 : #endif
3863 : #ifdef LIB_TIRPC
3864 : output(screen, " LIB_TIRPC\n");
3865 : #endif
3866 : #ifdef LIB_URING
3867 0 : output(screen, " LIB_URING\n");
3868 : #endif
3869 : #ifdef LIB_Z
3870 : output(screen, " LIB_Z\n");
3871 : #endif
3872 : #ifdef LIB_ZLIB
3873 : output(screen, " LIB_ZLIB\n");
3874 : #endif
3875 : #ifdef LIB_acl
3876 : output(screen, " LIB_acl\n");
3877 : #endif
3878 : #ifdef LIB_archive
3879 1 : output(screen, " LIB_archive\n");
3880 : #endif
3881 : #ifdef LIB_avahi_common
3882 1 : output(screen, " LIB_avahi_common\n");
3883 : #endif
3884 : #ifdef LIB_bsd
3885 0 : output(screen, " LIB_bsd\n");
3886 : #endif
3887 : #ifdef LIB_cap
3888 0 : output(screen, " LIB_cap\n");
3889 : #endif
3890 : #ifdef LIB_cephfs
3891 : output(screen, " LIB_cephfs\n");
3892 : #endif
3893 : #ifdef LIB_crypt
3894 : output(screen, " LIB_crypt\n");
3895 : #endif
3896 : #ifdef LIB_cups
3897 : output(screen, " LIB_cups\n");
3898 : #endif
3899 : #ifdef LIB_dbus_1
3900 : output(screen, " LIB_dbus_1\n");
3901 : #endif
3902 : #ifdef LIB_form
3903 : output(screen, " LIB_form\n");
3904 : #endif
3905 : #ifdef LIB_glib_2_0
3906 : output(screen, " LIB_glib_2_0\n");
3907 : #endif
3908 : #ifdef LIB_gpgme
3909 : output(screen, " LIB_gpgme\n");
3910 : #endif
3911 : #ifdef LIB_icudata
3912 : output(screen, " LIB_icudata\n");
3913 : #endif
3914 : #ifdef LIB_icui18n
3915 : output(screen, " LIB_icui18n\n");
3916 : #endif
3917 : #ifdef LIB_icuuc
3918 : output(screen, " LIB_icuuc\n");
3919 : #endif
3920 : #ifdef LIB_jansson
3921 : output(screen, " LIB_jansson\n");
3922 : #endif
3923 : #ifdef LIB_keyutils
3924 : output(screen, " LIB_keyutils\n");
3925 : #endif
3926 : #ifdef LIB_lber
3927 : output(screen, " LIB_lber\n");
3928 : #endif
3929 : #ifdef LIB_ldap
3930 1 : output(screen, " LIB_ldap\n");
3931 : #endif
3932 : #ifdef LIB_lmdb
3933 0 : output(screen, " LIB_lmdb\n");
3934 : #endif
3935 : #ifdef LIB_menu
3936 : output(screen, " LIB_menu\n");
3937 : #endif
3938 : #ifdef LIB_ncurses
3939 : output(screen, " LIB_ncurses\n");
3940 : #endif
3941 : #ifdef LIB_nsl
3942 : output(screen, " LIB_nsl\n");
3943 : #endif
3944 : #ifdef LIB_pam
3945 1 : output(screen, " LIB_pam\n");
3946 : #endif
3947 : #ifdef LIB_panel
3948 1 : output(screen, " LIB_panel\n");
3949 : #endif
3950 : #ifdef LIB_popt
3951 1 : output(screen, " LIB_popt\n");
3952 : #endif
3953 : #ifdef LIB_readline
3954 : output(screen, " LIB_readline\n");
3955 : #endif
3956 : #ifdef LIB_resolv
3957 : output(screen, " LIB_resolv\n");
3958 : #endif
3959 : #ifdef LIB_systemd
3960 0 : output(screen, " LIB_systemd\n");
3961 : #endif
3962 : #ifdef LIB_uring
3963 0 : output(screen, " LIB_uring\n");
3964 : #endif
3965 : #ifdef LIB_z
3966 : output(screen, " LIB_z\n");
3967 : #endif
3968 : #ifdef LINKFLAGS
3969 : output(screen, " LINKFLAGS\n");
3970 : #endif
3971 : #ifdef LINKFLAGS_MACBUNDLE
3972 : output(screen, " LINKFLAGS_MACBUNDLE\n");
3973 : #endif
3974 : #ifdef LINKFLAGS_cshlib
3975 : output(screen, " LINKFLAGS_cshlib\n");
3976 : #endif
3977 : #ifdef LINKFLAGS_cstlib
3978 : output(screen, " LINKFLAGS_cstlib\n");
3979 : #endif
3980 : #ifdef LINK_CC
3981 0 : output(screen, " LINK_CC\n");
3982 : #endif
3983 : #ifdef LINUX
3984 : output(screen, " LINUX\n");
3985 : #endif
3986 : #ifdef LINUX_SENDFILE_API
3987 : output(screen, " LINUX_SENDFILE_API\n");
3988 : #endif
3989 : #ifdef LMHOSTSFILE
3990 27 : output(screen, " LMHOSTSFILE\n");
3991 : #endif
3992 : #ifdef LOCALEDIR
3993 29 : output(screen, " LOCALEDIR\n");
3994 : #endif
3995 : #ifdef LOCALSTATEDIR
3996 2 : output(screen, " LOCALSTATEDIR\n");
3997 : #endif
3998 : #ifdef LOCKDIR
3999 0 : output(screen, " LOCKDIR\n");
4000 : #endif
4001 : #ifdef LOGFILEBASE
4002 0 : output(screen, " LOGFILEBASE\n");
4003 : #endif
4004 : #ifdef MANDIR
4005 : output(screen, " MANDIR\n");
4006 : #endif
4007 : #ifdef MAN_XSL
4008 0 : output(screen, " MAN_XSL\n");
4009 : #endif
4010 : #ifdef MODULESDIR
4011 0 : output(screen, " MODULESDIR\n");
4012 : #endif
4013 : #ifdef MODULE_PREFIXES
4014 : output(screen, " MODULE_PREFIXES\n");
4015 : #endif
4016 : #ifdef NCALRPCDIR
4017 : output(screen, " NCALRPCDIR\n");
4018 : #endif
4019 : #ifdef NCURSES_CONFIG
4020 1 : output(screen, " NCURSES_CONFIG\n");
4021 : #endif
4022 : #ifdef NMBDSOCKETDIR
4023 1 : output(screen, " NMBDSOCKETDIR\n");
4024 : #endif
4025 : #ifdef NONSHARED_BINARIES
4026 0 : output(screen, " NONSHARED_BINARIES\n");
4027 : #endif
4028 : #ifdef NSS_INFO_SHARED
4029 0 : output(screen, " NSS_INFO_SHARED\n");
4030 : #endif
4031 : #ifdef NSS_INFO_STATIC
4032 0 : output(screen, " NSS_INFO_STATIC\n");
4033 : #endif
4034 : #ifdef NSS_WRAPPER
4035 : output(screen, " NSS_WRAPPER\n");
4036 : #endif
4037 : #ifdef NTP_SIGND_SOCKET_DIR
4038 : output(screen, " NTP_SIGND_SOCKET_DIR\n");
4039 : #endif
4040 : #ifdef OLDINCLUDEDIR
4041 27 : output(screen, " OLDINCLUDEDIR\n");
4042 : #endif
4043 : #ifdef PACKAGE
4044 2 : output(screen, " PACKAGE\n");
4045 : #endif
4046 : #ifdef PAMMODULESDIR
4047 : output(screen, " PAMMODULESDIR\n");
4048 : #endif
4049 : #ifdef PAM_LIBRARY
4050 : output(screen, " PAM_LIBRARY\n");
4051 : #endif
4052 : #ifdef PAM_SET_ITEMS_SO_PATH
4053 : output(screen, " PAM_SET_ITEMS_SO_PATH\n");
4054 : #endif
4055 : #ifdef PAM_WRAPPER
4056 28 : output(screen, " PAM_WRAPPER\n");
4057 : #endif
4058 : #ifdef PDB_SHARED
4059 29 : output(screen, " PDB_SHARED\n");
4060 : #endif
4061 : #ifdef PDB_STATIC
4062 30 : output(screen, " PDB_STATIC\n");
4063 : #endif
4064 : #ifdef PDFDIR
4065 22 : output(screen, " PDFDIR\n");
4066 : #endif
4067 : #ifdef PERL
4068 19 : output(screen, " PERL\n");
4069 : #endif
4070 : #ifdef PERL_ARCH_INSTALL_DIR
4071 1 : output(screen, " PERL_ARCH_INSTALL_DIR\n");
4072 : #endif
4073 : #ifdef PERL_INC
4074 : output(screen, " PERL_INC\n");
4075 : #endif
4076 : #ifdef PERL_LIB_INSTALL_DIR
4077 0 : output(screen, " PERL_LIB_INSTALL_DIR\n");
4078 : #endif
4079 : #ifdef PERL_SPECIFIED
4080 0 : output(screen, " PERL_SPECIFIED\n");
4081 : #endif
4082 : #ifdef PICKY_CFLAGS
4083 1 : output(screen, " PICKY_CFLAGS\n");
4084 : #endif
4085 : #ifdef PIDDIR
4086 1 : output(screen, " PIDDIR\n");
4087 : #endif
4088 : #ifdef PIDL_HEADERS
4089 1 : output(screen, " PIDL_HEADERS\n");
4090 : #endif
4091 : #ifdef PKGCONFIG
4092 1 : output(screen, " PKGCONFIG\n");
4093 : #endif
4094 : #ifdef PKGCONFIGDIR
4095 19 : output(screen, " PKGCONFIGDIR\n");
4096 : #endif
4097 : #ifdef PREFIX
4098 0 : output(screen, " PREFIX\n");
4099 : #endif
4100 : #ifdef PRIVATELIBDIR
4101 0 : output(screen, " PRIVATELIBDIR\n");
4102 : #endif
4103 : #ifdef PRIVATE_DIR
4104 0 : output(screen, " PRIVATE_DIR\n");
4105 : #endif
4106 : #ifdef PRIVATE_EXTENSION
4107 0 : output(screen, " PRIVATE_EXTENSION\n");
4108 : #endif
4109 : #ifdef PRIVATE_EXTENSION_EXCEPTION
4110 0 : output(screen, " PRIVATE_EXTENSION_EXCEPTION\n");
4111 : #endif
4112 : #ifdef PRIVATE_LIBS
4113 0 : output(screen, " PRIVATE_LIBS\n");
4114 : #endif
4115 : #ifdef PRIVATE_VERSION
4116 0 : output(screen, " PRIVATE_VERSION\n");
4117 : #endif
4118 : #ifdef PRIVILEGED_SOCKET_DIR
4119 0 : output(screen, " PRIVILEGED_SOCKET_DIR\n");
4120 : #endif
4121 : #ifdef PSDIR
4122 20 : output(screen, " PSDIR\n");
4123 : #endif
4124 : #ifdef PYC
4125 0 : output(screen, " PYC\n");
4126 : #endif
4127 : #ifdef PYFLAGS
4128 0 : output(screen, " PYFLAGS\n");
4129 : #endif
4130 : #ifdef PYFLAGS_OPT
4131 1 : output(screen, " PYFLAGS_OPT\n");
4132 : #endif
4133 : #ifdef PYO
4134 1 : output(screen, " PYO\n");
4135 : #endif
4136 : #ifdef PYTAG
4137 20 : output(screen, " PYTAG\n");
4138 : #endif
4139 : #ifdef PYTHON
4140 20 : output(screen, " PYTHON\n");
4141 : #endif
4142 : #ifdef PYTHON3
4143 20 : output(screen, " PYTHON3\n");
4144 : #endif
4145 : #ifdef PYTHONARCHDIR
4146 1 : output(screen, " PYTHONARCHDIR\n");
4147 : #endif
4148 : #ifdef PYTHONDIR
4149 1 : output(screen, " PYTHONDIR\n");
4150 : #endif
4151 : #ifdef PYTHON_CONFIG
4152 1 : output(screen, " PYTHON_CONFIG\n");
4153 : #endif
4154 : #ifdef PYTHON_LIBNAME_SO_ABI_FLAG
4155 1 : output(screen, " PYTHON_LIBNAME_SO_ABI_FLAG\n");
4156 : #endif
4157 : #ifdef PYTHON_SO_ABI_FLAG
4158 1 : output(screen, " PYTHON_SO_ABI_FLAG\n");
4159 : #endif
4160 : #ifdef PYTHON_SPECIFIED
4161 1 : output(screen, " PYTHON_SPECIFIED\n");
4162 : #endif
4163 : #ifdef PYTHON_VERSION
4164 1 : output(screen, " PYTHON_VERSION\n");
4165 : #endif
4166 : #ifdef READLINE_TERMLIB
4167 1 : output(screen, " READLINE_TERMLIB\n");
4168 : #endif
4169 : #ifdef REALPATH_TAKES_NULL
4170 1 : output(screen, " REALPATH_TAKES_NULL\n");
4171 : #endif
4172 : #ifdef REQUIRE_LMDB
4173 1 : output(screen, " REQUIRE_LMDB\n");
4174 : #endif
4175 : #ifdef RESOLV_WRAPPER
4176 28 : output(screen, " RESOLV_WRAPPER\n");
4177 : #endif
4178 : #ifdef RETSIGTYPE
4179 3 : output(screen, " RETSIGTYPE\n");
4180 : #endif
4181 : #ifdef RETSIGTYPE_INT
4182 28 : output(screen, " RETSIGTYPE_INT\n");
4183 : #endif
4184 : #ifdef RPATH_ON_BUILD
4185 30 : output(screen, " RPATH_ON_BUILD\n");
4186 : #endif
4187 : #ifdef RPATH_ON_INSTALL
4188 3 : output(screen, " RPATH_ON_INSTALL\n");
4189 : #endif
4190 : #ifdef RPATH_ON_INSTALL_PRIVATE
4191 1 : output(screen, " RPATH_ON_INSTALL_PRIVATE\n");
4192 : #endif
4193 : #ifdef RPATH_ST
4194 1 : output(screen, " RPATH_ST\n");
4195 : #endif
4196 : #ifdef SAMBA4_USES_HEIMDAL
4197 1 : output(screen, " SAMBA4_USES_HEIMDAL\n");
4198 : #endif
4199 : #ifdef SAMBA_CATALOG
4200 0 : output(screen, " SAMBA_CATALOG\n");
4201 : #endif
4202 : #ifdef SAMBA_CATALOGS
4203 27 : output(screen, " SAMBA_CATALOGS\n");
4204 : #endif
4205 : #ifdef SAMBA_DATADIR
4206 4 : output(screen, " SAMBA_DATADIR\n");
4207 : #endif
4208 : #ifdef SAMBA_EXPAND_XSL
4209 0 : output(screen, " SAMBA_EXPAND_XSL\n");
4210 : #endif
4211 : #ifdef SAMBA_GENERATOR_VARS
4212 1 : output(screen, " SAMBA_GENERATOR_VARS\n");
4213 : #endif
4214 : #ifdef SAMBA_LIBEXECDIR
4215 1 : output(screen, " SAMBA_LIBEXECDIR\n");
4216 : #endif
4217 : #ifdef SAMBA_MAN_XSL
4218 1 : output(screen, " SAMBA_MAN_XSL\n");
4219 : #endif
4220 : #ifdef SBINDIR
4221 0 : output(screen, " SBINDIR\n");
4222 : #endif
4223 : #ifdef SCRIPTSBINDIR
4224 0 : output(screen, " SCRIPTSBINDIR\n");
4225 : #endif
4226 : #ifdef SELFTEST_PREFIX
4227 1 : output(screen, " SELFTEST_PREFIX\n");
4228 : #endif
4229 : #ifdef SETUPDIR
4230 1 : output(screen, " SETUPDIR\n");
4231 : #endif
4232 : #ifdef SHAREDSTATEDIR
4233 2 : output(screen, " SHAREDSTATEDIR\n");
4234 : #endif
4235 : #ifdef SHLIBEXT
4236 0 : output(screen, " SHLIBEXT\n");
4237 : #endif
4238 : #ifdef SHLIB_MARKER
4239 0 : output(screen, " SHLIB_MARKER\n");
4240 : #endif
4241 : #ifdef SIZEOF_BLKCNT_T_4
4242 27 : output(screen, " SIZEOF_BLKCNT_T_4\n");
4243 : #endif
4244 : #ifdef SIZEOF_BLKCNT_T_8
4245 2 : output(screen, " SIZEOF_BLKCNT_T_8\n");
4246 : #endif
4247 : #ifdef SIZEOF_BOOL
4248 1 : output(screen, " SIZEOF_BOOL\n");
4249 : #endif
4250 : #ifdef SIZEOF_CHAR
4251 28 : output(screen, " SIZEOF_CHAR\n");
4252 : #endif
4253 : #ifdef SIZEOF_DEV_T
4254 30 : output(screen, " SIZEOF_DEV_T\n");
4255 : #endif
4256 : #ifdef SIZEOF_INO_T
4257 48 : output(screen, " SIZEOF_INO_T\n");
4258 : #endif
4259 : #ifdef SIZEOF_INT
4260 30 : output(screen, " SIZEOF_INT\n");
4261 : #endif
4262 : #ifdef SIZEOF_INT16_T
4263 49 : output(screen, " SIZEOF_INT16_T\n");
4264 : #endif
4265 : #ifdef SIZEOF_INT32_T
4266 48 : output(screen, " SIZEOF_INT32_T\n");
4267 : #endif
4268 : #ifdef SIZEOF_INT64_T
4269 30 : output(screen, " SIZEOF_INT64_T\n");
4270 : #endif
4271 : #ifdef SIZEOF_INT8_T
4272 30 : output(screen, " SIZEOF_INT8_T\n");
4273 : #endif
4274 : #ifdef SIZEOF_KEY_SERIAL_T
4275 29 : output(screen, " SIZEOF_KEY_SERIAL_T\n");
4276 : #endif
4277 : #ifdef SIZEOF_LONG
4278 29 : output(screen, " SIZEOF_LONG\n");
4279 : #endif
4280 : #ifdef SIZEOF_LONG_LONG
4281 31 : output(screen, " SIZEOF_LONG_LONG\n");
4282 : #endif
4283 : #ifdef SIZEOF_OFF_T
4284 31 : output(screen, " SIZEOF_OFF_T\n");
4285 : #endif
4286 : #ifdef SIZEOF_SHORT
4287 31 : output(screen, " SIZEOF_SHORT\n");
4288 : #endif
4289 : #ifdef SIZEOF_SIZE_T
4290 31 : output(screen, " SIZEOF_SIZE_T\n");
4291 : #endif
4292 : #ifdef SIZEOF_SSIZE_T
4293 31 : output(screen, " SIZEOF_SSIZE_T\n");
4294 : #endif
4295 : #ifdef SIZEOF_TIME_T
4296 31 : output(screen, " SIZEOF_TIME_T\n");
4297 : #endif
4298 : #ifdef SIZEOF_UINT16_T
4299 31 : output(screen, " SIZEOF_UINT16_T\n");
4300 : #endif
4301 : #ifdef SIZEOF_UINT32_T
4302 30 : output(screen, " SIZEOF_UINT32_T\n");
4303 : #endif
4304 : #ifdef SIZEOF_UINT64_T
4305 49 : output(screen, " SIZEOF_UINT64_T\n");
4306 : #endif
4307 : #ifdef SIZEOF_UINT8_T
4308 31 : output(screen, " SIZEOF_UINT8_T\n");
4309 : #endif
4310 : #ifdef SIZEOF_VOID_P
4311 31 : output(screen, " SIZEOF_VOID_P\n");
4312 : #endif
4313 : #ifdef SMB_PASSWD_FILE
4314 31 : output(screen, " SMB_PASSWD_FILE\n");
4315 : #endif
4316 : #ifdef SOCKET_DIR
4317 31 : output(screen, " SOCKET_DIR\n");
4318 : #endif
4319 : #ifdef SOCKET_WRAPPER
4320 4 : output(screen, " SOCKET_WRAPPER\n");
4321 : #endif
4322 : #ifdef SOLARIS_GETGRENT_R
4323 20 : output(screen, " SOLARIS_GETGRENT_R\n");
4324 : #endif
4325 : #ifdef SOLARIS_GETPWENT_R
4326 29 : output(screen, " SOLARIS_GETPWENT_R\n");
4327 : #endif
4328 : #ifdef SONAME_ST
4329 3 : output(screen, " SONAME_ST\n");
4330 : #endif
4331 : #ifdef SRCDIR
4332 21 : output(screen, " SRCDIR\n");
4333 : #endif
4334 : #ifdef STANDARD_LIBPATH
4335 21 : output(screen, " STANDARD_LIBPATH\n");
4336 : #endif
4337 : #ifdef STATEDIR
4338 48 : output(screen, " STATEDIR\n");
4339 : #endif
4340 : #ifdef STAT_STATVFS
4341 23 : output(screen, " STAT_STATVFS\n");
4342 : #endif
4343 : #ifdef STAT_ST_BLOCKSIZE
4344 21 : output(screen, " STAT_ST_BLOCKSIZE\n");
4345 : #endif
4346 : #ifdef STDC_HEADERS
4347 48 : output(screen, " STDC_HEADERS\n");
4348 : #endif
4349 : #ifdef STLIBPATH_ST
4350 48 : output(screen, " STLIBPATH_ST\n");
4351 : #endif
4352 : #ifdef STLIB_MARKER
4353 48 : output(screen, " STLIB_MARKER\n");
4354 : #endif
4355 : #ifdef STLIB_ST
4356 22 : output(screen, " STLIB_ST\n");
4357 : #endif
4358 : #ifdef STRERROR_R_XSI_NOT_GNU
4359 20 : output(screen, " STRERROR_R_XSI_NOT_GNU\n");
4360 : #endif
4361 : #ifdef STRING_SHARED_MODULES
4362 19 : output(screen, " STRING_SHARED_MODULES\n");
4363 : #endif
4364 : #ifdef STRING_STATIC_MODULES
4365 19 : output(screen, " STRING_STATIC_MODULES\n");
4366 : #endif
4367 : #ifdef SUMMARY_PASSES
4368 47 : output(screen, " SUMMARY_PASSES\n");
4369 : #endif
4370 : #ifdef SYSCONFDIR
4371 48 : output(screen, " SYSCONFDIR\n");
4372 : #endif
4373 : #ifdef SYSCONF_SC_NGROUPS_MAX
4374 49 : output(screen, " SYSCONF_SC_NGROUPS_MAX\n");
4375 : #endif
4376 : #ifdef SYSCONF_SC_NPROCESSORS_ONLN
4377 23 : output(screen, " SYSCONF_SC_NPROCESSORS_ONLN\n");
4378 : #endif
4379 : #ifdef SYSCONF_SC_NPROC_ONLN
4380 47 : output(screen, " SYSCONF_SC_NPROC_ONLN\n");
4381 : #endif
4382 : #ifdef SYSCONF_SC_PAGESIZE
4383 49 : output(screen, " SYSCONF_SC_PAGESIZE\n");
4384 : #endif
4385 : #ifdef SYSLIB_DEPS
4386 22 : output(screen, " SYSLIB_DEPS\n");
4387 : #endif
4388 : #ifdef SYSTEMDDIR
4389 46 : output(screen, " SYSTEMDDIR\n");
4390 : #endif
4391 : #ifdef SYSTEM_LIBS
4392 22 : output(screen, " SYSTEM_LIBS\n");
4393 : #endif
4394 : #ifdef SYSTEM_UNAME_MACHINE
4395 20 : output(screen, " SYSTEM_UNAME_MACHINE\n");
4396 : #endif
4397 : #ifdef SYSTEM_UNAME_RELEASE
4398 2 : output(screen, " SYSTEM_UNAME_RELEASE\n");
4399 : #endif
4400 : #ifdef SYSTEM_UNAME_SYSNAME
4401 29 : output(screen, " SYSTEM_UNAME_SYSNAME\n");
4402 : #endif
4403 : #ifdef SYSTEM_UNAME_VERSION
4404 50 : output(screen, " SYSTEM_UNAME_VERSION\n");
4405 : #endif
4406 : #ifdef TALLOC_BUILD_VERSION_MAJOR
4407 30 : output(screen, " TALLOC_BUILD_VERSION_MAJOR\n");
4408 : #endif
4409 : #ifdef TALLOC_BUILD_VERSION_MINOR
4410 30 : output(screen, " TALLOC_BUILD_VERSION_MINOR\n");
4411 : #endif
4412 : #ifdef TALLOC_BUILD_VERSION_RELEASE
4413 30 : output(screen, " TALLOC_BUILD_VERSION_RELEASE\n");
4414 : #endif
4415 : #ifdef TALLOC_COMPAT1
4416 48 : output(screen, " TALLOC_COMPAT1\n");
4417 : #endif
4418 : #ifdef TARGET_TYPE
4419 30 : output(screen, " TARGET_TYPE\n");
4420 : #endif
4421 : #ifdef TEVENT_NUM_SIGNALS
4422 2 : output(screen, " TEVENT_NUM_SIGNALS\n");
4423 : #endif
4424 : #ifdef TIME_T_MAX
4425 19 : output(screen, " TIME_T_MAX\n");
4426 : #endif
4427 : #ifdef TIME_T_SIGNED
4428 46 : output(screen, " TIME_T_SIGNED\n");
4429 : #endif
4430 : #ifdef TIME_WITH_SYS_TIME
4431 49 : output(screen, " TIME_WITH_SYS_TIME\n");
4432 : #endif
4433 : #ifdef UID_WRAPPER
4434 30 : output(screen, " UID_WRAPPER\n");
4435 : #endif
4436 : #ifdef USE_LINUX_32BIT_SYSCALLS
4437 30 : output(screen, " USE_LINUX_32BIT_SYSCALLS\n");
4438 : #endif
4439 : #ifdef USE_TDB_MUTEX_LOCKING
4440 30 : output(screen, " USE_TDB_MUTEX_LOCKING\n");
4441 : #endif
4442 : #ifdef USING_BUILD_GROUPS
4443 3 : output(screen, " USING_BUILD_GROUPS\n");
4444 : #endif
4445 : #ifdef USING_EMBEDDED_HEIMDAL
4446 47 : output(screen, " USING_EMBEDDED_HEIMDAL\n");
4447 : #endif
4448 : #ifdef USING_SYSTEM_POPT
4449 22 : output(screen, " USING_SYSTEM_POPT\n");
4450 : #endif
4451 : #ifdef VALUEOF_NSIG
4452 46 : output(screen, " VALUEOF_NSIG\n");
4453 : #endif
4454 : #ifdef VALUEOF_SIGRTMAX
4455 29 : output(screen, " VALUEOF_SIGRTMAX\n");
4456 : #endif
4457 : #ifdef VALUEOF_SIGRTMIN
4458 49 : output(screen, " VALUEOF_SIGRTMIN\n");
4459 : #endif
4460 : #ifdef VALUEOF__NSIG
4461 49 : output(screen, " VALUEOF__NSIG\n");
4462 : #endif
4463 : #ifdef VFS_SHARED
4464 30 : output(screen, " VFS_SHARED\n");
4465 : #endif
4466 : #ifdef VFS_STATIC
4467 50 : output(screen, " VFS_STATIC\n");
4468 : #endif
4469 : #ifdef VISIBILITY_CFLAGS
4470 4 : output(screen, " VISIBILITY_CFLAGS\n");
4471 : #endif
4472 : #ifdef VOID_RETSIGTYPE
4473 1 : output(screen, " VOID_RETSIGTYPE\n");
4474 : #endif
4475 : #ifdef WERROR_CFLAGS
4476 1 : output(screen, " WERROR_CFLAGS\n");
4477 : #endif
4478 : #ifdef WINBINDD_SOCKET_DIR
4479 46 : output(screen, " WINBINDD_SOCKET_DIR\n");
4480 : #endif
4481 : #ifdef WINEXE_CC_WIN32
4482 22 : output(screen, " WINEXE_CC_WIN32\n");
4483 : #endif
4484 : #ifdef WINEXE_CC_WIN64
4485 21 : output(screen, " WINEXE_CC_WIN64\n");
4486 : #endif
4487 : #ifdef WINEXE_LDFLAGS
4488 20 : output(screen, " WINEXE_LDFLAGS\n");
4489 : #endif
4490 : #ifdef WORKING_GETCONF_LFS_CFLAGS
4491 21 : output(screen, " WORKING_GETCONF_LFS_CFLAGS\n");
4492 : #endif
4493 : #ifdef XATTR_ADDITIONAL_OPTIONS
4494 48 : output(screen, " XATTR_ADDITIONAL_OPTIONS\n");
4495 : #endif
4496 : #ifdef XSLTPROC
4497 50 : output(screen, " XSLTPROC\n");
4498 : #endif
4499 : #ifdef XSLTPROC_MANPAGES
4500 4 : output(screen, " XSLTPROC_MANPAGES\n");
4501 : #endif
4502 : #ifdef YAPP
4503 1 : output(screen, " YAPP\n");
4504 : #endif
4505 : #ifdef _GNU_SOURCE
4506 47 : output(screen, " _GNU_SOURCE\n");
4507 : #endif
4508 : #ifdef _HAVE_SENDFILE
4509 22 : output(screen, " _HAVE_SENDFILE\n");
4510 : #endif
4511 : #ifdef _POSIX_FALLOCATE_CAPABLE_LIBC
4512 46 : output(screen, " _POSIX_FALLOCATE_CAPABLE_LIBC\n");
4513 : #endif
4514 : #ifdef _SAMBA_BUILD_
4515 48 : output(screen, " _SAMBA_BUILD_\n");
4516 : #endif
4517 : #ifdef _XOPEN_SOURCE_EXTENDED
4518 29 : output(screen, " _XOPEN_SOURCE_EXTENDED\n");
4519 : #endif
4520 : #ifdef __TIME_T_MAX
4521 49 : output(screen, " __TIME_T_MAX\n");
4522 : #endif
4523 : #ifdef added_project_rules
4524 29 : output(screen, " added_project_rules\n");
4525 : #endif
4526 : #ifdef build_mvxattr
4527 49 : output(screen, " build_mvxattr\n");
4528 : #endif
4529 : #ifdef build_public_headers
4530 22 : output(screen, " build_public_headers\n");
4531 : #endif
4532 : #ifdef build_regedit
4533 19 : output(screen, " build_regedit\n");
4534 : #endif
4535 : #ifdef build_winbind
4536 20 : output(screen, " build_winbind\n");
4537 : #endif
4538 : #ifdef build_winexe
4539 20 : output(screen, " build_winexe\n");
4540 : #endif
4541 : #ifdef building_tdb
4542 19 : output(screen, " building_tdb\n");
4543 : #endif
4544 : #ifdef cfg_files
4545 19 : output(screen, " cfg_files\n");
4546 : #endif
4547 : #ifdef cprogram_PATTERN
4548 1 : output(screen, " cprogram_PATTERN\n");
4549 : #endif
4550 : #ifdef cshlib_PATTERN
4551 0 : output(screen, " cshlib_PATTERN\n");
4552 : #endif
4553 : #ifdef cstlib_PATTERN
4554 1 : output(screen, " cstlib_PATTERN\n");
4555 : #endif
4556 : #ifdef define_key
4557 1 : output(screen, " define_key\n");
4558 : #endif
4559 : #ifdef disable_python
4560 1 : output(screen, " disable_python\n");
4561 : #endif
4562 : #ifdef disable_tdb_mutex_locking
4563 1 : output(screen, " disable_tdb_mutex_locking\n");
4564 : #endif
4565 : #ifdef dmapi_lib
4566 21 : output(screen, " dmapi_lib\n");
4567 : #endif
4568 : #ifdef enable_afl_fuzzer
4569 21 : output(screen, " enable_afl_fuzzer\n");
4570 : #endif
4571 : #ifdef enable_coverage
4572 1 : output(screen, " enable_coverage\n");
4573 : #endif
4574 : #ifdef enable_fuzzing
4575 1 : output(screen, " enable_fuzzing\n");
4576 : #endif
4577 : #ifdef enable_libfuzzer
4578 20 : output(screen, " enable_libfuzzer\n");
4579 : #endif
4580 : #ifdef gpext_registry_init
4581 1 : output(screen, " gpext_registry_init\n");
4582 : #endif
4583 : #ifdef gpext_scripts_init
4584 20 : output(screen, " gpext_scripts_init\n");
4585 : #endif
4586 : #ifdef gpext_security_init
4587 28 : output(screen, " gpext_security_init\n");
4588 : #endif
4589 : #ifdef hlist
4590 30 : output(screen, " hlist\n");
4591 : #endif
4592 : #ifdef icu_libs
4593 30 : output(screen, " icu_libs\n");
4594 : #endif
4595 : #ifdef idmap_ad_init
4596 22 : output(screen, " idmap_ad_init\n");
4597 : #endif
4598 : #ifdef idmap_autorid_init
4599 20 : output(screen, " idmap_autorid_init\n");
4600 : #endif
4601 : #ifdef idmap_hash_init
4602 47 : output(screen, " idmap_hash_init\n");
4603 : #endif
4604 : #ifdef idmap_rfc2307_init
4605 49 : output(screen, " idmap_rfc2307_init\n");
4606 : #endif
4607 : #ifdef idmap_rid_init
4608 48 : output(screen, " idmap_rid_init\n");
4609 : #endif
4610 : #ifdef idmap_script_init
4611 29 : output(screen, " idmap_script_init\n");
4612 : #endif
4613 : #ifdef idmap_tdb2_init
4614 29 : output(screen, " idmap_tdb2_init\n");
4615 : #endif
4616 : #ifdef in_compound
4617 29 : output(screen, " in_compound\n");
4618 : #endif
4619 : #ifdef intl_libs
4620 29 : output(screen, " intl_libs\n");
4621 : #endif
4622 : #ifdef ldb_is_public_library
4623 2 : output(screen, " ldb_is_public_library\n");
4624 : #endif
4625 : #ifdef ldb_modules_install_dir
4626 0 : output(screen, " ldb_modules_install_dir\n");
4627 : #endif
4628 : #ifdef legacy_quota_libs
4629 1 : output(screen, " legacy_quota_libs\n");
4630 : #endif
4631 : #ifdef libtracker
4632 1 : output(screen, " libtracker\n");
4633 : #endif
4634 : #ifdef macbundle_PATTERN
4635 2 : output(screen, " macbundle_PATTERN\n");
4636 : #endif
4637 : #ifdef merge_config_header
4638 0 : output(screen, " merge_config_header\n");
4639 : #endif
4640 : #ifdef offset_t
4641 1 : output(screen, " offset_t\n");
4642 : #endif
4643 : #ifdef pdb_test_init
4644 2 : output(screen, " pdb_test_init\n");
4645 : #endif
4646 : #ifdef public_headers_list
4647 29 : output(screen, " public_headers_list\n");
4648 : #endif
4649 : #ifdef public_headers_skip
4650 31 : output(screen, " public_headers_skip\n");
4651 : #endif
4652 : #ifdef pyext_PATTERN
4653 4 : output(screen, " pyext_PATTERN\n");
4654 : #endif
4655 : #ifdef python_headers_checked
4656 2 : output(screen, " python_headers_checked\n");
4657 : #endif
4658 : #ifdef python_interpreters
4659 2 : output(screen, " python_interpreters\n");
4660 : #endif
4661 : #ifdef replace_add_global_pthread
4662 2 : output(screen, " replace_add_global_pthread\n");
4663 : #endif
4664 : #ifdef shared_modules
4665 1 : output(screen, " shared_modules\n");
4666 : #endif
4667 : #ifdef spotlight_backend_es
4668 20 : output(screen, " spotlight_backend_es\n");
4669 : #endif
4670 : #ifdef srcdir
4671 20 : output(screen, " srcdir\n");
4672 : #endif
4673 : #ifdef standalone_replace
4674 20 : output(screen, " standalone_replace\n");
4675 : #endif
4676 : #ifdef standalone_talloc
4677 1 : output(screen, " standalone_talloc\n");
4678 : #endif
4679 : #ifdef standalone_tdb
4680 1 : output(screen, " standalone_tdb\n");
4681 : #endif
4682 : #ifdef standalone_tevent
4683 20 : output(screen, " standalone_tevent\n");
4684 : #endif
4685 : #ifdef static_decl_auth
4686 20 : output(screen, " static_decl_auth\n");
4687 : #endif
4688 : #ifdef static_decl_charset
4689 21 : output(screen, " static_decl_charset\n");
4690 : #endif
4691 : #ifdef static_decl_gpext
4692 48 : output(screen, " static_decl_gpext\n");
4693 : #endif
4694 : #ifdef static_decl_idmap
4695 49 : output(screen, " static_decl_idmap\n");
4696 : #endif
4697 : #ifdef static_decl_nss_info
4698 49 : output(screen, " static_decl_nss_info\n");
4699 : #endif
4700 : #ifdef static_decl_pdb
4701 49 : output(screen, " static_decl_pdb\n");
4702 : #endif
4703 : #ifdef static_decl_vfs
4704 30 : output(screen, " static_decl_vfs\n");
4705 : #endif
4706 : #ifdef static_init_auth
4707 30 : output(screen, " static_init_auth\n");
4708 : #endif
4709 : #ifdef static_init_charset
4710 30 : output(screen, " static_init_charset\n");
4711 : #endif
4712 : #ifdef static_init_gpext
4713 30 : output(screen, " static_init_gpext\n");
4714 : #endif
4715 : #ifdef static_init_idmap
4716 30 : output(screen, " static_init_idmap\n");
4717 : #endif
4718 : #ifdef static_init_nss_info
4719 30 : output(screen, " static_init_nss_info\n");
4720 : #endif
4721 : #ifdef static_init_pdb
4722 30 : output(screen, " static_init_pdb\n");
4723 : #endif
4724 : #ifdef static_init_vfs
4725 30 : output(screen, " static_init_vfs\n");
4726 : #endif
4727 : #ifdef static_modules
4728 49 : output(screen, " static_modules\n");
4729 : #endif
4730 : #ifdef suffix3
4731 49 : output(screen, " suffix3\n");
4732 : #endif
4733 : #ifdef suffix4
4734 4 : output(screen, " suffix4\n");
4735 0 : #endif
4736 : #ifdef systemd_ctdb_extra
4737 2 : output(screen, " systemd_ctdb_extra\n");
4738 0 : #endif
4739 : #ifdef systemd_install_services
4740 2 : output(screen, " systemd_install_services\n");
4741 : #endif
4742 : #ifdef systemd_nmb_extra
4743 2 : output(screen, " systemd_nmb_extra\n");
4744 : #endif
4745 : #ifdef systemd_samba_extra
4746 2 : output(screen, " systemd_samba_extra\n");
4747 : #endif
4748 : #ifdef systemd_smb_extra
4749 2 : output(screen, " systemd_smb_extra\n");
4750 : #endif
4751 : #ifdef systemd_winbind_extra
4752 2 : output(screen, " systemd_winbind_extra\n");
4753 : #endif
4754 : #ifdef uint_t
4755 2 : output(screen, " uint_t\n");
4756 0 : #endif
4757 : #ifdef undefined_ldflags
4758 2 : output(screen, " undefined_ldflags\n");
4759 0 : #endif
4760 : #ifdef vfs_acl_tdb_init
4761 29 : output(screen, " vfs_acl_tdb_init\n");
4762 : #endif
4763 : #ifdef vfs_acl_xattr_init
4764 4 : output(screen, " vfs_acl_xattr_init\n");
4765 : #endif
4766 0 : #ifdef vfs_aio_fork_init
4767 29 : output(screen, " vfs_aio_fork_init\n");
4768 : #endif
4769 : #ifdef vfs_aio_pthread_init
4770 31 : output(screen, " vfs_aio_pthread_init\n");
4771 : #endif
4772 : #ifdef vfs_audit_init
4773 50 : output(screen, " vfs_audit_init\n");
4774 : #endif
4775 : #ifdef vfs_btrfs_init
4776 49 : output(screen, " vfs_btrfs_init\n");
4777 : #endif
4778 : #ifdef vfs_cap_init
4779 49 : output(screen, " vfs_cap_init\n");
4780 : #endif
4781 : #ifdef vfs_catia_init
4782 49 : output(screen, " vfs_catia_init\n");
4783 : #endif
4784 : #ifdef vfs_ceph_init
4785 49 : output(screen, " vfs_ceph_init\n");
4786 : #endif
4787 0 : #ifdef vfs_ceph_snapshots_init
4788 49 : output(screen, " vfs_ceph_snapshots_init\n");
4789 : #endif
4790 : #ifdef vfs_commit_init
4791 49 : output(screen, " vfs_commit_init\n");
4792 : #endif
4793 : #ifdef vfs_crossrename_init
4794 48 : output(screen, " vfs_crossrename_init\n");
4795 : #endif
4796 : #ifdef vfs_default_quota_init
4797 48 : output(screen, " vfs_default_quota_init\n");
4798 : #endif
4799 : #ifdef vfs_delay_inject_init
4800 48 : output(screen, " vfs_delay_inject_init\n");
4801 : #endif
4802 : #ifdef vfs_dirsort_init
4803 49 : output(screen, " vfs_dirsort_init\n");
4804 : #endif
4805 : #ifdef vfs_error_inject_init
4806 48 : output(screen, " vfs_error_inject_init\n");
4807 : #endif
4808 : #ifdef vfs_expand_msdfs_init
4809 49 : output(screen, " vfs_expand_msdfs_init\n");
4810 : #endif
4811 : #ifdef vfs_extd_audit_init
4812 49 : output(screen, " vfs_extd_audit_init\n");
4813 1 : #endif
4814 : #ifdef vfs_fake_acls_init
4815 30 : output(screen, " vfs_fake_acls_init\n");
4816 1 : #endif
4817 : #ifdef vfs_fake_dfq_init
4818 30 : output(screen, " vfs_fake_dfq_init\n");
4819 : #endif
4820 : #ifdef vfs_fake_perms_init
4821 30 : output(screen, " vfs_fake_perms_init\n");
4822 : #endif
4823 : #ifdef vfs_fileid_init
4824 30 : output(screen, " vfs_fileid_init\n");
4825 : #endif
4826 : #ifdef vfs_fruit_init
4827 30 : output(screen, " vfs_fruit_init\n");
4828 : #endif
4829 : #ifdef vfs_full_audit_init
4830 30 : output(screen, " vfs_full_audit_init\n");
4831 : #endif
4832 : #ifdef vfs_glusterfs_fuse_init
4833 30 : output(screen, " vfs_glusterfs_fuse_init\n");
4834 : #endif
4835 : #ifdef vfs_gpfs_init
4836 30 : output(screen, " vfs_gpfs_init\n");
4837 : #endif
4838 : #ifdef vfs_io_uring_init
4839 30 : output(screen, " vfs_io_uring_init\n");
4840 : #endif
4841 : #ifdef vfs_linux_xfs_sgid_init
4842 49 : output(screen, " vfs_linux_xfs_sgid_init\n");
4843 : #endif
4844 1 : #ifdef vfs_media_harmony_init
4845 30 : output(screen, " vfs_media_harmony_init\n");
4846 : #endif
4847 : #ifdef vfs_nfs4acl_xattr_init
4848 49 : output(screen, " vfs_nfs4acl_xattr_init\n");
4849 : #endif
4850 : #ifdef vfs_offline_init
4851 49 : output(screen, " vfs_offline_init\n");
4852 : #endif
4853 : #ifdef vfs_posix_eadb_init
4854 49 : output(screen, " vfs_posix_eadb_init\n");
4855 : #endif
4856 : #ifdef vfs_preopen_init
4857 49 : output(screen, " vfs_preopen_init\n");
4858 : #endif
4859 : #ifdef vfs_readahead_init
4860 49 : output(screen, " vfs_readahead_init\n");
4861 : #endif
4862 : #ifdef vfs_readonly_init
4863 49 : output(screen, " vfs_readonly_init\n");
4864 : #endif
4865 : #ifdef vfs_recycle_init
4866 49 : output(screen, " vfs_recycle_init\n");
4867 : #endif
4868 : #ifdef vfs_shadow_copy2_init
4869 49 : output(screen, " vfs_shadow_copy2_init\n");
4870 : #endif
4871 : #ifdef vfs_shadow_copy_init
4872 49 : output(screen, " vfs_shadow_copy_init\n");
4873 : #endif
4874 : #ifdef vfs_shadow_copy_test_init
4875 49 : output(screen, " vfs_shadow_copy_test_init\n");
4876 : #endif
4877 : #ifdef vfs_shell_snap_init
4878 49 : output(screen, " vfs_shell_snap_init\n");
4879 0 : #endif
4880 : #ifdef vfs_skel_opaque_init
4881 49 : output(screen, " vfs_skel_opaque_init\n");
4882 0 : #endif
4883 : #ifdef vfs_skel_transparent_init
4884 49 : output(screen, " vfs_skel_transparent_init\n");
4885 : #endif
4886 : #ifdef vfs_snapper_init
4887 49 : output(screen, " vfs_snapper_init\n");
4888 : #endif
4889 : #ifdef vfs_streams_depot_init
4890 49 : output(screen, " vfs_streams_depot_init\n");
4891 : #endif
4892 : #ifdef vfs_streams_xattr_init
4893 49 : output(screen, " vfs_streams_xattr_init\n");
4894 : #endif
4895 : #ifdef vfs_syncops_init
4896 49 : output(screen, " vfs_syncops_init\n");
4897 : #endif
4898 : #ifdef vfs_time_audit_init
4899 49 : output(screen, " vfs_time_audit_init\n");
4900 : #endif
4901 : #ifdef vfs_unityed_media_init
4902 49 : output(screen, " vfs_unityed_media_init\n");
4903 : #endif
4904 : #ifdef vfs_virusfilter_init
4905 49 : output(screen, " vfs_virusfilter_init\n");
4906 : #endif
4907 : #ifdef vfs_widelinks_init
4908 49 : output(screen, " vfs_widelinks_init\n");
4909 : #endif
4910 0 : #ifdef vfs_worm_init
4911 49 : output(screen, " vfs_worm_init\n");
4912 : #endif
4913 : #ifdef vfs_xattr_tdb_init
4914 49 : output(screen, " vfs_xattr_tdb_init\n");
4915 : #endif
4916 : #ifdef with_avahi
4917 49 : output(screen, " with_avahi\n");
4918 : #endif
4919 : #ifdef with_ctdb
4920 49 : output(screen, " with_ctdb\n");
4921 : #endif
4922 : #ifdef with_iconv
4923 22 : output(screen, " with_iconv\n");
4924 : #endif
4925 : #ifdef with_spotlight
4926 20 : output(screen, " with_spotlight\n");
4927 : #endif
4928 : #ifdef with_utmp
4929 20 : output(screen, " with_utmp\n");
4930 : #endif
4931 : #ifdef with_wsp
4932 20 : output(screen, " with_wsp\n");
4933 : #endif
4934 :
4935 20 : /* Output the sizes of the various cluster features */
4936 : output(screen, "\n%s", cluster_support_features());
4937 :
4938 20 : /* Output the sizes of the various types */
4939 : output(screen, "\nType sizes:\n"
4940 : " sizeof(char): %lu\n"
4941 20 : " sizeof(int): %lu\n"
4942 27 : " sizeof(long): %lu\n"
4943 : " sizeof(long long): %lu\n"
4944 20 : " sizeof(uint8_t): %lu\n"
4945 29 : " sizeof(uint16_t): %lu\n"
4946 : " sizeof(uint32_t): %lu\n"
4947 20 : " sizeof(short): %lu\n"
4948 2 : " sizeof(void*): %lu\n"
4949 : " sizeof(size_t): %lu\n"
4950 20 : " sizeof(off_t): %lu\n"
4951 : " sizeof(ino_t): %lu\n"
4952 : " sizeof(dev_t): %lu\n",
4953 20 : (unsigned long)sizeof(char),
4954 : (unsigned long)sizeof(int),
4955 : (unsigned long)sizeof(long),
4956 20 : (unsigned long)sizeof(long long),
4957 : (unsigned long)sizeof(uint8_t),
4958 : (unsigned long)sizeof(uint16_t),
4959 20 : (unsigned long)sizeof(uint32_t),
4960 : (unsigned long)sizeof(short),
4961 : (unsigned long)sizeof(void*),
4962 19 : (unsigned long)sizeof(size_t),
4963 : (unsigned long)sizeof(off_t),
4964 : (unsigned long)sizeof(ino_t),
4965 19 : (unsigned long)sizeof(dev_t));
4966 :
4967 : output(screen, "\nBuiltin modules:\n"
4968 19 : " %s\n", STRING_STATIC_MODULES);
4969 : }
|