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