File: config.h.in

package info (click to toggle)
netatalk 2.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 9,716 kB
  • sloc: ansic: 85,115; sh: 10,385; perl: 1,703; makefile: 1,363
file content (957 lines) | stat: -rw-r--r-- 24,487 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
/* config.h.in.  Generated from configure.ac by autoheader.  */

/* Define if the admin group should be enabled */
#undef ADMIN_GRP

/* Define if AFS should be used */
#undef AFS

/* Does extattr API work */
#undef BROKEN_EXTATTR

/* BSD compatiblity macro */
#undef BSD4_4

/* Define if CNID Concurrent BDB backend should be compiled. */
#undef CNID_BACKEND_CDB

/* Define if CNID Database Daemon backend should be compiled. */
#undef CNID_BACKEND_DBD

/* Define if CNID LAST scheme backend should be compiled. */
#undef CNID_BACKEND_LAST

/* Define if CNID TDB scheme backend should be compiled. */
#undef CNID_BACKEND_TDB

/* CUPS API Version */
#undef CUPS_API_VERSION

/* Required BDB version, major */
#undef DB_MAJOR_REQ

/* Required BDB version, minor */
#undef DB_MINOR_REQ

/* Required BDB version, patch */
#undef DB_PATCH_REQ

/* Define if verbose debugging information should be included */
#undef DEBUG

/* Define if debugging information should be included */
#undef DEBUG1

/* Define if you want to disable SIGALRM timers and DSI tickles */
#undef DEBUGGING

/* Default CNID scheme to be used */
#undef DEFAULT_CNID_SCHEME

/* Define if system (fcntl) locking should be disabled */
#undef DISABLE_LOCKING

/* Define if shell check should be disabled */
#undef DISABLE_SHELLCHECK

/* Define to enable spooldir support */
#undef DISABLE_SPOOL

/* BSD compatibility macro */
#undef DLSYM_PREPEND_UNDERSCORE

/* Define if you want to use the experimental dropkludge support */
#undef DROPKLUDGE

/* Available Extended Attributes modules */
#undef EA_MODULES

/* Define if you want compatibily with the FHS */
#undef FHS_COMPATIBILITY

/* Define if you want forcing of uid/gid per volume */
#undef FORCE_UIDGID

/* Define if OS is FreeBSD */
#undef FREEBSD

/* Define to the type of elements in the array set by `getgroups'. Usually
   this is either `int' or `gid_t'. */
#undef GETGROUPS_T

/* Define if dbtob takes two arguments */
#undef HAVE_2ARG_DBTOB

/* Define if the data type long has 32 bit */
#undef HAVE_32BIT_LONGS

/* Define if the data type long has 64 bit */
#undef HAVE_64BIT_LONGS

/* Define to 1 if you have the `access' function. */
#undef HAVE_ACCESS

/* Whether ACLs support is available */
#undef HAVE_ACLS

/* Whether acl_from_mode() is available */
#undef HAVE_ACL_FROM_MODE

/* Whether acl_get_perm_np() is available */
#undef HAVE_ACL_GET_PERM_NP

/* Define to 1 if you have the <acl/libacl.h> header file. */
#undef HAVE_ACL_LIBACL_H

/* Define to 1 if you have the `add_proplist_entry' function. */
#undef HAVE_ADD_PROPLIST_ENTRY

/* Whether AIX ACLs are available */
#undef HAVE_AIX_ACLS

/* set if struct at_addr is called atalk_addr */
#undef HAVE_ATALK_ADDR

/* whether at funcs are available */
#undef HAVE_ATFUNCS

/* Define to 1 if you have the `attropen' function. */
#undef HAVE_ATTROPEN

/* Define to 1 if you have the `attr_get' function. */
#undef HAVE_ATTR_GET

/* Define to 1 if you have the `attr_getf' function. */
#undef HAVE_ATTR_GETF

/* Define to 1 if you have the `attr_list' function. */
#undef HAVE_ATTR_LIST

/* Define to 1 if you have the `attr_listf' function. */
#undef HAVE_ATTR_LISTF

/* Define to 1 if you have the `attr_remove' function. */
#undef HAVE_ATTR_REMOVE

/* Define to 1 if you have the `attr_removef' function. */
#undef HAVE_ATTR_REMOVEF

/* Define to 1 if you have the `attr_set' function. */
#undef HAVE_ATTR_SET

/* Define to 1 if you have the `attr_setf' function. */
#undef HAVE_ATTR_SETF

/* Define to 1 if you have the <attr/xattr.h> header file. */
#undef HAVE_ATTR_XATTR_H

/* Use Avahi/DNS-SD registration */
#undef HAVE_AVAHI

/* Uses Avahis threaded poll implementation */
#undef HAVE_AVAHI_THREADED_POLL

/* Define to 1 if you have the `backtrace_symbols' function. */
#undef HAVE_BACKTRACE_SYMBOLS

/* Define if dbtob is broken */
#undef HAVE_BROKEN_DBTOB

/* Define to 1 if you have the `chmod' function. */
#undef HAVE_CHMOD

/* Define to 1 if you have the `chown' function. */
#undef HAVE_CHOWN

/* Define to 1 if you have the `chroot' function. */
#undef HAVE_CHROOT

/* Define to 1 if you have the <crypt.h> header file. */
#undef HAVE_CRYPT_H

/* Define to enable CUPS Support */
#undef HAVE_CUPS

/* Define if errno declaration exists */
#undef HAVE_DECL_ERRNO

/* Define if sys_errlist declaration exists */
#undef HAVE_DECL_SYS_ERRLIST

/* Define if sys_nerr declaration exists */
#undef HAVE_DECL_SYS_NERR

/* Define to 1 if you have the `delproplist' function. */
#undef HAVE_DELPROPLIST

/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
   */
#undef HAVE_DIRENT_H

/* Define to 1 if you have the `dirfd' function. */
#undef HAVE_DIRFD

/* Define to 1 if you have the `dlclose' function. */
#undef HAVE_DLCLOSE

/* Define if you have the GNU dld library. */
#undef HAVE_DLD

/* Define to 1 if you have the `dlerror' function. */
#undef HAVE_DLERROR

/* Define to 1 if you have the <dlfcn.h> header file. */
#undef HAVE_DLFCN_H

/* Define to 1 if you have the `dlopen' function. */
#undef HAVE_DLOPEN

/* Define to 1 if you have the `dlsym' function. */
#undef HAVE_DLSYM

/* Define if you have the _dyld_func_lookup function. */
#undef HAVE_DYLD

/* Define if errno declaration exists */
#undef HAVE_ERRNO

/* Define to 1 if you have the <errno.h> header file. */
#undef HAVE_ERRNO_H

/* Define to 1 if you have the `extattr_delete_fd' function. */
#undef HAVE_EXTATTR_DELETE_FD

/* Define to 1 if you have the `extattr_delete_file' function. */
#undef HAVE_EXTATTR_DELETE_FILE

/* Define to 1 if you have the `extattr_delete_link' function. */
#undef HAVE_EXTATTR_DELETE_LINK

/* Define to 1 if you have the `extattr_get_fd' function. */
#undef HAVE_EXTATTR_GET_FD

/* Define to 1 if you have the `extattr_get_file' function. */
#undef HAVE_EXTATTR_GET_FILE

/* Define to 1 if you have the `extattr_get_link' function. */
#undef HAVE_EXTATTR_GET_LINK

/* Define to 1 if you have the `extattr_list_fd' function. */
#undef HAVE_EXTATTR_LIST_FD

/* Define to 1 if you have the `extattr_list_file' function. */
#undef HAVE_EXTATTR_LIST_FILE

/* Define to 1 if you have the `extattr_list_link' function. */
#undef HAVE_EXTATTR_LIST_LINK

/* Define to 1 if you have the `extattr_set_fd' function. */
#undef HAVE_EXTATTR_SET_FD

/* Define to 1 if you have the `extattr_set_file' function. */
#undef HAVE_EXTATTR_SET_FILE

/* Define to 1 if you have the `extattr_set_link' function. */
#undef HAVE_EXTATTR_SET_LINK

/* Define to 1 if you have the `fchmod' function. */
#undef HAVE_FCHMOD

/* Define to 1 if you have the `fchown' function. */
#undef HAVE_FCHOWN

/* Define to 1 if you have the <fcntl.h> header file. */
#undef HAVE_FCNTL_H

/* Define to 1 if you have the `fdelproplist' function. */
#undef HAVE_FDELPROPLIST

/* Define to 1 if you have the `fgetea' function. */
#undef HAVE_FGETEA

/* Define to 1 if you have the `fgetproplist' function. */
#undef HAVE_FGETPROPLIST

/* Define to 1 if you have the `fgetxattr' function. */
#undef HAVE_FGETXATTR

/* Define to 1 if you have the `flistea' function. */
#undef HAVE_FLISTEA

/* Define to 1 if you have the `flistxattr' function. */
#undef HAVE_FLISTXATTR

/* Define to 1 if you have the `fremoveea' function. */
#undef HAVE_FREMOVEEA

/* Define to 1 if you have the `fremovexattr' function. */
#undef HAVE_FREMOVEXATTR

/* Define to 1 if you have the `fsetea' function. */
#undef HAVE_FSETEA

/* Define to 1 if you have the `fsetproplist' function. */
#undef HAVE_FSETPROPLIST

/* Define to 1 if you have the `fsetxattr' function. */
#undef HAVE_FSETXATTR

/* Define to 1 if you have the `fstatat' function. */
#undef HAVE_FSTATAT

/* Define if memcpy is buggy */
#undef HAVE_GCC_MEMCPY_BUG

/* Define to 1 if you have the `getcwd' function. */
#undef HAVE_GETCWD

/* Define to 1 if you have the `getea' function. */
#undef HAVE_GETEA

/* Define to 1 if you have the `gethostname' function. */
#undef HAVE_GETHOSTNAME

/* Define to 1 if you have the `getpagesize' function. */
#undef HAVE_GETPAGESIZE

/* Define to 1 if you have the `getproplist' function. */
#undef HAVE_GETPROPLIST

/* Define to 1 if you have the `gettimeofday' function. */
#undef HAVE_GETTIMEOFDAY

/* Define to 1 if you have the `getusershell' function. */
#undef HAVE_GETUSERSHELL

/* Define to 1 if you have the `getxattr' function. */
#undef HAVE_GETXATTR

/* Define to 1 if you have the `get_proplist_entry' function. */
#undef HAVE_GET_PROPLIST_ENTRY

/* Whether to enable GSSAPI support */
#undef HAVE_GSSAPI

/* Define to 1 if you have the <gssapi/gssapi_generic.h> header file. */
#undef HAVE_GSSAPI_GSSAPI_GENERIC_H

/* Define to 1 if you have the <gssapi/gssapi.h> header file. */
#undef HAVE_GSSAPI_GSSAPI_H

/* Define to 1 if you have the <gssapi/gssapi_krb5.h> header file. */
#undef HAVE_GSSAPI_GSSAPI_KRB5_H

/* Define to 1 if you have the <gssapi.h> header file. */
#undef HAVE_GSSAPI_H

/* Wheter GSS_C_NT_HOSTBASED_SERVICE is in gssapi.h */
#undef HAVE_GSS_C_NT_HOSTBASED_SERVICE

/* Whether HPUX ACLs are available */
#undef HAVE_HPUX_ACLS

/* Define to 1 if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H

/* Whether IRIX ACLs are available */
#undef HAVE_IRIX_ACLS

/* Define to 1 if you have the <langinfo.h> header file. */
#undef HAVE_LANGINFO_H

/* LARGEFILE support */
#undef HAVE_LARGEFILE_SUPPORT

/* Whether LDAP is available */
#undef HAVE_LDAP

/* Define to 1 if you have the `lgetea' function. */
#undef HAVE_LGETEA

/* Define to 1 if you have the `lgetxattr' function. */
#undef HAVE_LGETXATTR

/* Define to 1 if you have the `crypt' library (-lcrypt). */
#undef HAVE_LIBCRYPT

/* Define to 1 if you have the `crypto' library (-lcrypto). */
#undef HAVE_LIBCRYPTO

/* Define to 1 if you have the `des' library (-ldes). */
#undef HAVE_LIBDES

/* Define if you have the libdl library or equivalent. */
#undef HAVE_LIBDL

/* Define if the DHX2 modules should be built with libgcrypt */
#undef HAVE_LIBGCRYPT

/* Define to 1 if you have the `gss' library (-lgss). */
#undef HAVE_LIBGSS

/* Define to 1 if you have the `gssapi' library (-lgssapi). */
#undef HAVE_LIBGSSAPI

/* Define to 1 if you have the `gssapi_krb5' library (-lgssapi_krb5). */
#undef HAVE_LIBGSSAPI_KRB5

/* Define to 1 if you have the `nsl' library (-lnsl). */
#undef HAVE_LIBNSL

/* define if you have libquota */
#undef HAVE_LIBQUOTA

/* Define to 1 if you have the `security' library (-lsecurity). */
#undef HAVE_LIBSECURITY

/* Define to 1 if you have the `socket' library (-lsocket). */
#undef HAVE_LIBSOCKET

/* Define to 1 if you have the <limits.h> header file. */
#undef HAVE_LIMITS_H

/* Define to 1 if you have the `link' function. */
#undef HAVE_LINK

/* Define to 1 if you have the <linux/dqblk_xfs.h> header file. */
#undef HAVE_LINUX_DQBLK_XFS_H

/* Define to 1 if you have the <linux/xfs_fs.h> header file. */
#undef HAVE_LINUX_XFS_FS_H

/* Define to 1 if you have the <linux/xqm.h> header file. */
#undef HAVE_LINUX_XQM_H

/* Define to 1 if you have the `listea' function. */
#undef HAVE_LISTEA

/* Define to 1 if you have the `listxattr' function. */
#undef HAVE_LISTXATTR

/* Define to 1 if you have the `llistea' function. */
#undef HAVE_LLISTEA

/* Define to 1 if you have the `llistxattr' function. */
#undef HAVE_LLISTXATTR

/* Define to 1 if you have the <locale.h> header file. */
#undef HAVE_LOCALE_H

/* Define if long double is a valid data type */
#undef HAVE_LONG_DOUBLE

/* Define if long long is a valid data type */
#undef HAVE_LONG_LONG

/* Define to 1 if you have the `lremoveea' function. */
#undef HAVE_LREMOVEEA

/* Define to 1 if you have the `lremovexattr' function. */
#undef HAVE_LREMOVEXATTR

/* Define to 1 if you have the `lsetea' function. */
#undef HAVE_LSETEA

/* Define to 1 if you have the `lsetxattr' function. */
#undef HAVE_LSETXATTR

/* Define to 1 if you have the `memcpy' function. */
#undef HAVE_MEMCPY

/* Define to 1 if you have the <memory.h> header file. */
#undef HAVE_MEMORY_H

/* Define to 1 if you have the `mkdir' function. */
#undef HAVE_MKDIR

/* Define to 1 if you have the `mknod' function. */
#undef HAVE_MKNOD

/* Define to 1 if you have the `mknod64' function. */
#undef HAVE_MKNOD64

/* Define to 1 if you have a working `mmap' system call. */
#undef HAVE_MMAP

/* Define to 1 if you have the <mntent.h> header file. */
#undef HAVE_MNTENT_H

/* Define to 1 if you have the <mount.h> header file. */
#undef HAVE_MOUNT_H

/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
#undef HAVE_NDIR_H

/* Define to 1 if you have the <netdb.h> header file. */
#undef HAVE_NETDB_H

/* Define to 1 if you have the `nl_langinfo' function. */
#undef HAVE_NL_LANGINFO

/* Whether no ACLs support is available */
#undef HAVE_NO_ACLS

/* Define to 1 if you have the `openat' function. */
#undef HAVE_OPENAT

/* Define to 1 if you have the <pam/pam_appl.h> header file. */
#undef HAVE_PAM_PAM_APPL_H

/* Whether POSIX ACLs are available */
#undef HAVE_POSIX_ACLS

/* Define to 1 if you have the `pread' function. */
#undef HAVE_PREAD

/* Define to 1 if you have the `pselect' function. */
#undef HAVE_PSELECT

/* Define to 1 if you have the `pwrite' function. */
#undef HAVE_PWRITE

/* Define if quad_t is a valid data type */
#undef HAVE_QUAD_T

/* Define to 1 if you have the `removeea' function. */
#undef HAVE_REMOVEEA

/* Define to 1 if you have the `removexattr' function. */
#undef HAVE_REMOVEXATTR

/* Define to 1 if you have the `renameat' function. */
#undef HAVE_RENAMEAT

/* Define to 1 if you have the `rmdir' function. */
#undef HAVE_RMDIR

/* Define to 1 if you have the <rpcsvc/rquota.h> header file. */
#undef HAVE_RPCSVC_RQUOTA_H

/* Define to 1 if you have the <rpc/pmap_prot.h> header file. */
#undef HAVE_RPC_PMAP_PROT_H

/* Define to 1 if you have the <rpc/rpc.h> header file. */
#undef HAVE_RPC_RPC_H

/* Define to 1 if you have the <security/pam_appl.h> header file. */
#undef HAVE_SECURITY_PAM_APPL_H

/* Define to 1 if you have the `select' function. */
#undef HAVE_SELECT

/* Define to 1 if you have the `setea' function. */
#undef HAVE_SETEA

/* Define to 1 if you have the `setlinebuf' function. */
#undef HAVE_SETLINEBUF

/* Define to 1 if you have the `setlocale' function. */
#undef HAVE_SETLOCALE

/* Define to 1 if you have the `setproplist' function. */
#undef HAVE_SETPROPLIST

/* Define to 1 if you have the `setxattr' function. */
#undef HAVE_SETXATTR

/* Define to 1 if you have the <sgtty.h> header file. */
#undef HAVE_SGTTY_H

/* Define if you have the shl_load function. */
#undef HAVE_SHL_LOAD

/* Define to 1 if you have the `sizeof_proplist_entry' function. */
#undef HAVE_SIZEOF_PROPLIST_ENTRY

/* Define to 1 if you have the `snprintf' function. */
#undef HAVE_SNPRINTF

/* Define to 1 if you have the `socket' function. */
#undef HAVE_SOCKET

/* Whether solaris ACLs are available */
#undef HAVE_SOLARIS_ACLS

/* Define to 1 if you have the <statfs.h> header file. */
#undef HAVE_STATFS_H

/* Define to 1 if you have the <stdarg.h> header file. */
#undef HAVE_STDARG_H

/* Define to 1 if you have the <stdint.h> header file. */
#undef HAVE_STDINT_H

/* Define to 1 if you have the <stdlib.h> header file. */
#undef HAVE_STDLIB_H

/* Define to 1 if you have the `strcasestr' function. */
#undef HAVE_STRCASESTR

/* Define to 1 if you have the `strchr' function. */
#undef HAVE_STRCHR

/* Define to 1 if you have the `strdup' function. */
#undef HAVE_STRDUP

/* Define to 1 if you have the `strerror' function. */
#undef HAVE_STRERROR

/* Define to 1 if you have the <strings.h> header file. */
#undef HAVE_STRINGS_H

/* Define to 1 if you have the <string.h> header file. */
#undef HAVE_STRING_H

/* Define to 1 if you have the `strlcat' function. */
#undef HAVE_STRLCAT

/* Define to 1 if you have the `strlcpy' function. */
#undef HAVE_STRLCPY

/* Define to 1 if you have the `strndup' function. */
#undef HAVE_STRNDUP

/* Define to 1 if you have the `strnlen' function. */
#undef HAVE_STRNLEN

/* Define to 1 if you have the `strstr' function. */
#undef HAVE_STRSTR

/* Define to 1 if you have the `strtoul' function. */
#undef HAVE_STRTOUL

/* Define to 1 if `st_rdev' is member of `struct stat'. */
#undef HAVE_STRUCT_STAT_ST_RDEV

/* Define to 1 if `tm_gmtoff' is member of `struct tm'. */
#undef HAVE_STRUCT_TM_TM_GMTOFF

/* Define to 1 if your `struct stat' has `st_rdev'. Deprecated, use
   `HAVE_STRUCT_STAT_ST_RDEV' instead. */
#undef HAVE_ST_RDEV

/* Define to 1 if you have the <syslog.h> header file. */
#undef HAVE_SYSLOG_H

/* Define to 1 if you have the <sys/attributes.h> header file. */
#undef HAVE_SYS_ATTRIBUTES_H

/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
   */
#undef HAVE_SYS_DIR_H

/* Define to 1 if you have the <sys/ea.h> header file. */
#undef HAVE_SYS_EA_H

/* Define if sys_errlist declaration exists */
#undef HAVE_SYS_ERRLIST

/* Define to 1 if you have the <sys/errno.h> header file. */
#undef HAVE_SYS_ERRNO_H

/* Define to 1 if you have the <sys/extattr.h> header file. */
#undef HAVE_SYS_EXTATTR_H

/* Define to 1 if you have the <sys/fcntl.h> header file. */
#undef HAVE_SYS_FCNTL_H

/* Define to 1 if you have the <sys/file.h> header file. */
#undef HAVE_SYS_FILE_H

/* Define to 1 if you have the <sys/filio.h> header file. */
#undef HAVE_SYS_FILIO_H

/* Define to 1 if you have the <sys/ioctl.h> header file. */
#undef HAVE_SYS_IOCTL_H

/* Define to 1 if you have the <sys/mnttab.h> header file. */
#undef HAVE_SYS_MNTTAB_H

/* Define to 1 if you have the <sys/mount.h> header file. */
#undef HAVE_SYS_MOUNT_H

/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
   */
#undef HAVE_SYS_NDIR_H

/* Define if sys_nerr declaration exists */
#undef HAVE_SYS_NERR

/* Define to 1 if you have the <sys/param.h> header file. */
#undef HAVE_SYS_PARAM_H

/* Define to 1 if you have the <sys/statvfs.h> header file. */
#undef HAVE_SYS_STATVFS_H

/* Define to 1 if you have the <sys/stat.h> header file. */
#undef HAVE_SYS_STAT_H

/* Define to 1 if you have the <sys/termios.h> header file. */
#undef HAVE_SYS_TERMIOS_H

/* Define to 1 if you have the <sys/time.h> header file. */
#undef HAVE_SYS_TIME_H

/* Define to 1 if you have the <sys/types.h> header file. */
#undef HAVE_SYS_TYPES_H

/* Define to 1 if you have the <sys/uio.h> header file. */
#undef HAVE_SYS_UIO_H

/* Define to 1 if you have the <sys/vfs.h> header file. */
#undef HAVE_SYS_VFS_H

/* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
#undef HAVE_SYS_WAIT_H

/* Define to 1 if you have the <sys/xattr.h> header file. */
#undef HAVE_SYS_XATTR_H

/* Define to 1 if you have the <termios.h> header file. */
#undef HAVE_TERMIOS_H

/* define for timeout_id_t */
#undef HAVE_TIMEOUT_ID_T

/* Define to 1 if you have the <time.h> header file. */
#undef HAVE_TIME_H

/* Whether Tru64 ACLs are available */
#undef HAVE_TRU64_ACLS

/* Whether UCS-2-INTERNAL is supported */
#undef HAVE_UCS2INTERNAL

/* Define to 1 if you have the <ufs/quota.h> header file. */
#undef HAVE_UFS_QUOTA_H

/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H

/* Whether UnixWare ACLs are available */
#undef HAVE_UNIXWARE_ACLS

/* Define to 1 if you have the `unlinkat' function. */
#undef HAVE_UNLINKAT

/* Whether to use native iconv */
#undef HAVE_USABLE_ICONV

/* Define to 1 if you have the <utime.h> header file. */
#undef HAVE_UTIME_H

/* Define to 1 if `utime(file, NULL)' sets file's timestamp to the present. */
#undef HAVE_UTIME_NULL

/* Define to 1 if you have the <varargs.h> header file. */
#undef HAVE_VARARGS_H

/* Define to 1 if you have the `vsnprintf' function. */
#undef HAVE_VSNPRINTF

/* Define to 1 if you have the `wait3' system call. Deprecated, you should no
   longer depend upon `wait3'. */
#undef HAVE_WAIT3

/* Define to 1 if you have the `waitpid' function. */
#undef HAVE_WAITPID

/* Define to 1 if you have the <xfs/libxfs.h> header file. */
#undef HAVE_XFS_LIBXFS_H

/* Define to 1 if you have the <xfs/xfs_fs.h> header file. */
#undef HAVE_XFS_XFS_FS_H

/* Define to 1 if you have the <xfs/xqm.h> header file. */
#undef HAVE_XFS_XQM_H

/* Define as const if the declaration of iconv() needs const. */
#undef ICONV_CONST

/* Define if compiling for MacOS X Server */
#undef MACOSX_SERVER

/* Define to 1 if `major', `minor', and `makedev' are declared in <mkdev.h>.
   */
#undef MAJOR_IN_MKDEV

/* Define to 1 if `major', `minor', and `makedev' are declared in
   <sysmacros.h>. */
#undef MAJOR_IN_SYSMACROS

/* Disable assertions */
#undef NDEBUG

/* Define if dlsym() requires a leading underscore in symbol names. */
#undef NEED_USCORE

/* Define if OS is NetBSD */
#undef NETBSD

/* Define if DDP should be disabled */
#undef NO_DDP

/* Define to 1 if your C compiler doesn't accept -c and -o together. */
#undef NO_MINUS_C_MINUS_O

/* Define if Quota support should be disabled */
#undef NO_QUOTA_SUPPORT

/* Define if the gmtoff member of struct tm is not available */
#undef NO_STRUCT_TM_GMTOFF

/* Define if the OpenSSL DHX modules should be built */
#undef OPENSSL_DHX

/* errno returned by open with O_NOFOLLOW */
#undef OPEN_NOFOLLOW_ERRNO

/* Name of package */
#undef PACKAGE

/* Define to the address where bug reports for this package should be sent. */
#undef PACKAGE_BUGREPORT

/* Define to the full name of this package. */
#undef PACKAGE_NAME

/* Define to the full name and version of this package. */
#undef PACKAGE_STRING

/* Define to the one symbol short name of this package. */
#undef PACKAGE_TARNAME

/* Define to the version of this package. */
#undef PACKAGE_VERSION

/* Whether the realpath function allows NULL */
#undef REALPATH_TAKES_NULL

/* Define as the return type of signal handlers (`int' or `void'). */
#undef RETSIGTYPE

/* Define if the sendfile() function uses BSD semantics */
#undef SENDFILE_FLAVOR_BSD

/* Whether linux sendfile() API is available */
#undef SENDFILE_FLAVOR_LINUX

/* Solaris sendfile() */
#undef SENDFILE_FLAVOR_SOLARIS

/* Define if shadow passwords should be used */
#undef SHADOWPW

/* Solaris compatibility macro */
#undef SOLARIS

/* Define to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS

/* Define if TCP wrappers should be used */
#undef TCPWRAP

/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
#undef TIME_WITH_SYS_TIME

/* Define to 1 if your <sys/time.h> declares `struct tm'. */
#undef TM_IN_SYS_TIME

/* Define on Tru64 platforms */
#undef TRU64

/* Define if the DHX UAM modules should be compiled */
#undef UAM_DHX

/* Define if the DHX2 UAM modules should be compiled */
#undef UAM_DHX2

/* Define if the Kerberos 4 UAM module should be compiled */
#undef UAM_KRB4

/* Define if the PGP UAM module should be compiled */
#undef UAM_PGP

/* Define if cracklib should be used */
#undef USE_CRACKLIB

/* Define to use old rquota */
#undef USE_OLD_RQUOTA

/* Define to enable PAM support */
#undef USE_PAM

/* Define to enable SLP support */
#undef USE_SRVLOC

/* Define to enable Zeroconf support */
#undef USE_ZEROCONF

/* Version number of package */
#undef VERSION

/* Whether sendfile() should be used */
#undef WITH_SENDFILE

/* xattr functions have additional options */
#undef XATTR_ADD_OPT

/* AT file source */
#undef _ATFILE_SOURCE

/* _FILE_OFFSET_BITS (for LARGEFILE support) */
#undef _FILE_OFFSET_BITS

/* Whether to use GNU libc extensions */
#undef _GNU_SOURCE

/* Compatibility macro */
#undef _ISOC9X_SOURCE

/* _LARGE_FILES (for LARGEFILE support) */
#undef _LARGE_FILES

/* Define if the *passwd UAMs should be used */
#undef _OSF_SOURCE

/* path to cracklib dictionary */
#undef _PATH_CRACKLIB

/* Solaris compilation environment */
#undef _XOPEN_SOURCE

/* Define for Berkeley DB 4 */
#undef _XOPEN_SOURCE_EXTENDED

/* Solaris compilation environment */
#undef __EXTENSIONS__

/* Solaris compatibility macro */
#undef __svr4__

/* Define to empty if `const' does not conform to ANSI C. */
#undef const

/* Define to `int' if <sys/types.h> doesn't define. */
#undef gid_t

/* Define to `__inline__' or `__inline' if that's what the C compiler
   calls it, or to nothing if 'inline' is not supported under any name.  */
#ifndef __cplusplus
#undef inline
#endif

/* Define to `int' if <sys/types.h> does not define. */
#undef mode_t

/* Define to `long int' if <sys/types.h> does not define. */
#undef off_t

/* Define to `int' if <sys/types.h> does not define. */
#undef pid_t

/* Define to `unsigned int' if <sys/types.h> does not define. */
#undef size_t

/* Define to `int' if <sys/types.h> doesn't define. */
#undef uid_t