summaryrefslogtreecommitdiffstats
path: root/kerberosIV/include/config.h
blob: 86f36145ef465a61b3eeda952427f254f9e70099 (plain)
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
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
/* include/config.h.  Generated automatically by configure.  */
/* include/config.h.in.  Generated automatically from configure.in by autoheader.  */

/* Define if using alloca.c.  */
/* #undef C_ALLOCA */

/* Define to empty if the keyword does not work.  */
/* #undef const */

/* Define to one of _getb67, GETB67, getb67 for Cray-2 and Cray-YMP systems.
   This function is required for alloca.c support on those systems.  */
/* #undef CRAY_STACKSEG_END */

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

/* Define if you have alloca, as a function or macro.  */
#define HAVE_ALLOCA 1

/* Define if you have <alloca.h> and it should be used (not on Ultrix).  */
/* #undef HAVE_ALLOCA_H */

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

/* Define if your struct stat has st_blksize.  */
#define HAVE_ST_BLKSIZE 1

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

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

/* Define if you need to in order for stat and other things to work.  */
/* #undef _POSIX_SOURCE */

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

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

/* If using the C implementation of alloca, define if you know the
   direction of stack growth for your system; otherwise it will be
   automatically deduced at run-time.
 STACK_DIRECTION > 0 => grows toward higher addresses
 STACK_DIRECTION < 0 => grows toward lower addresses
 STACK_DIRECTION = 0 => direction of growth unknown
 */
/* #undef STACK_DIRECTION */

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

/* Define if `sys_siglist' is declared by <signal.h>.  */
#define SYS_SIGLIST_DECLARED 1

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

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

/* Define if your processor stores words with the most significant
   byte first (like Motorola and SPARC, unlike Intel and VAX).  */
/* #undef WORDS_BIGENDIAN */

/* Define if the X Window System is missing or not being used.  */
/* #undef X_DISPLAY_MISSING */

/*  Define this if RETSIGTYPE == void  */
#define VOID_RETSIGTYPE 1

/*  Define this if struct utmp have ut_user  */
/* #undef HAVE_UT_USER */

/*  Define this if struct utmp have ut_host  */
#define HAVE_UT_HOST 1

/*  Define this if struct utmp have ut_addr  */
/* #undef HAVE_UT_ADDR */

/*  Define this if struct utmp have ut_type  */
/* #undef HAVE_UT_TYPE */

/*  Define this if struct utmp have ut_pid  */
/* #undef HAVE_UT_PID */

/*  Define this if struct utmp have ut_id  */
/* #undef HAVE_UT_ID */

/*  Define this if struct utmpx have ut_syslen  */
/* #undef HAVE_UT_SYSLEN */

/*  Define this if struct winsize is declared in sys/termios.h */
#define HAVE_STRUCT_WINSIZE 1

/*  Define this if struct winsize have ws_xpixel */
#define HAVE_WS_XPIXEL 1

/*  Define this if struct winsize have ws_ypixel */
#define HAVE_WS_YPIXEL 1

/*  Define this to be the directory where the dictionary for cracklib */
/*  resides */
/* #undef DICTPATH */

/* Define this if you want to use SOCKS v5 */
/* #undef SOCKS */

/* Define this to the path of the mail spool directory */
/* #undef KRB4_MAILDIR */

/* Define this if `struct sockaddr' includes sa_len */
#define SOCKADDR_HAS_SA_LEN 1

/* Define this if `struct siaentity' includes ouid */
/* #undef SIAENTITY_HAS_OUID */

/* Define if getlogin has POSIX flavour, as opposed to BSD */
/* #undef POSIX_GETLOGIN */

/* Define if getpwnam_r has POSIX flavour */
/* #undef POSIX_GETPWNAM_R */

/* define if getcwd() is broken (such as in SunOS) */
/* #undef BROKEN_GETCWD */

/* define if the system is missing a prototype for crypt() */
/* #undef NEED_CRYPT_PROTO */

/* define if the system is missing a prototype for strtok_r() */
/* #undef NEED_STRTOK_R_PROTO */

/* define if /bin/ls takes -A */
#define HAVE_LS_A 1

/* define if you have h_errno */
#define HAVE_H_ERRNO 1

/* define if you have h_errlist but not hstrerror */
#define HAVE_H_ERRLIST 1

/* define if you have h_nerr but not hstrerror */
#define HAVE_H_NERR 1

/* define if your system doesn't declare h_errlist */
/* #undef HAVE_H_ERRLIST_DECLARATION */

/* define if your system doesn't declare h_nerr */
/* #undef HAVE_H_NERR_DECLARATION */

/* define this if you need a declaration for h_errno */
#define HAVE_H_ERRNO_DECLARATION 1

/* define if you need a declaration for optarg */
/* #undef HAVE_OPTARG_DECLARATION */

/* define if you need a declaration for optind */
/* #undef HAVE_OPTIND_DECLARATION */

/* define if you need a declaration for opterr */
/* #undef HAVE_OPTERR_DECLARATION */

/* define if you need a declaration for optopt */
/* #undef HAVE_OPTOPT_DECLARATION */

/* define if you need a declaration for __progname */
/* #undef HAVE___PROGNAME_DECLARATION */

/* Define if you have the XauReadAuth function.  */
#define HAVE_XAUREADAUTH 1

/* Define if you have the XauWriteAuth function.  */
#define HAVE_XAUWRITEAUTH 1

/* Define if you have the _getpty function.  */
/* #undef HAVE__GETPTY */

/* Define if you have the _scrsize function.  */
/* #undef HAVE__SCRSIZE */

/* Define if you have the _setsid function.  */
/* #undef HAVE__SETSID */

/* Define if you have the _stricmp function.  */
/* #undef HAVE__STRICMP */

/* Define if you have the asnprintf function.  */
/* #undef HAVE_ASNPRINTF */

/* Define if you have the asprintf function.  */
#define HAVE_ASPRINTF 1

/* Define if you have the chown function.  */
#define HAVE_CHOWN 1

/* Define if you have the daemon function.  */
#define HAVE_DAEMON 1

/* Define if you have the dbm_firstkey function.  */
#define HAVE_DBM_FIRSTKEY 1

/* Define if you have the dbopen function.  */
#define HAVE_DBOPEN 1

/* Define if you have the dn_expand function.  */
#define HAVE_DN_EXPAND 1

/* Define if you have the el_init function.  */
#define HAVE_EL_INIT 1

/* Define if you have the err function.  */
#define HAVE_ERR 1

/* Define if you have the errx function.  */
#define HAVE_ERRX 1

/* Define if you have the fchmod function.  */
#define HAVE_FCHMOD 1

/* Define if you have the fchown function.  */
#define HAVE_FCHOWN 1

/* Define if you have the fcntl function.  */
#define HAVE_FCNTL 1

/* Define if you have the flock function.  */
#define HAVE_FLOCK 1

/* Define if you have the forkpty function.  */
#define HAVE_FORKPTY 1

/* Define if you have the frevoke function.  */
/* #undef HAVE_FREVOKE */

/* Define if you have the getattr function.  */
/* #undef HAVE_GETATTR */

/* Define if you have the getcwd function.  */
#define HAVE_GETCWD 1

/* Define if you have the getdtablesize function.  */
#define HAVE_GETDTABLESIZE 1

/* Define if you have the gethostbyname function.  */
#define HAVE_GETHOSTBYNAME 1

/* Define if you have the gethostname function.  */
#define HAVE_GETHOSTNAME 1

/* Define if you have the getlogin function.  */
#define HAVE_GETLOGIN 1

/* Define if you have the getopt function.  */
#define HAVE_GETOPT 1

/* Define if you have the getpagesize function.  */
#define HAVE_GETPAGESIZE 1

/* Define if you have the getpriority function.  */
#define HAVE_GETPRIORITY 1

/* Define if you have the getpwnam_r function.  */
/* #undef HAVE_GETPWNAM_R */

/* Define if you have the getservbyname function.  */
#define HAVE_GETSERVBYNAME 1

/* Define if you have the getsockopt function.  */
#define HAVE_GETSOCKOPT 1

/* Define if you have the getspnam function.  */
/* #undef HAVE_GETSPNAM */

/* Define if you have the getspuid function.  */
/* #undef HAVE_GETSPUID */

/* Define if you have the gettimeofday function.  */
#define HAVE_GETTIMEOFDAY 1

/* Define if you have the getudbnam function.  */
/* #undef HAVE_GETUDBNAM */

/* Define if you have the getuid function.  */
#define HAVE_GETUID 1

/* Define if you have the getusershell function.  */
#define HAVE_GETUSERSHELL 1

/* Define if you have the grantpt function.  */
/* #undef HAVE_GRANTPT */

/* Define if you have the hstrerror function.  */
#define HAVE_HSTRERROR 1

/* Define if you have the inet_aton function.  */
#define HAVE_INET_ATON 1

/* Define if you have the initgroups function.  */
#define HAVE_INITGROUPS 1

/* Define if you have the innetgr function.  */
#define HAVE_INNETGR 1

/* Define if you have the iruserok function.  */
#define HAVE_IRUSEROK 1

/* Define if you have the logout function.  */
#define HAVE_LOGOUT 1

/* Define if you have the logwtmp function.  */
#define HAVE_LOGWTMP 1

/* Define if you have the lstat function.  */
#define HAVE_LSTAT 1

/* Define if you have the memmove function.  */
#define HAVE_MEMMOVE 1

/* Define if you have the mkstemp function.  */
#define HAVE_MKSTEMP 1

/* Define if you have the mktime function.  */
#define HAVE_MKTIME 1

/* Define if you have the odm_initialize function.  */
/* #undef HAVE_ODM_INITIALIZE */

/* Define if you have the ptsname function.  */
/* #undef HAVE_PTSNAME */

/* Define if you have the putenv function.  */
#define HAVE_PUTENV 1

/* Define if you have the rand function.  */
#define HAVE_RAND 1

/* Define if you have the random function.  */
#define HAVE_RANDOM 1

/* Define if you have the rcmd function.  */
#define HAVE_RCMD 1

/* Define if you have the readline function.  */
#define HAVE_READLINE 1

/* Define if you have the res_search function.  */
#define HAVE_RES_SEARCH 1

/* Define if you have the revoke function.  */
#define HAVE_REVOKE 1

/* Define if you have the setegid function.  */
#define HAVE_SETEGID 1

/* Define if you have the setenv function.  */
#define HAVE_SETENV 1

/* Define if you have the seteuid function.  */
#define HAVE_SETEUID 1

/* Define if you have the setitimer function.  */
#define HAVE_SETITIMER 1

/* Define if you have the setlim function.  */
/* #undef HAVE_SETLIM */

/* Define if you have the setlogin function.  */
#define HAVE_SETLOGIN 1

/* Define if you have the setpcred function.  */
/* #undef HAVE_SETPCRED */

/* Define if you have the setpgid function.  */
#define HAVE_SETPGID 1

/* Define if you have the setpriority function.  */
#define HAVE_SETPRIORITY 1

/* Define if you have the setproctitle function.  */
#define HAVE_SETPROCTITLE 1

/* Define if you have the setregid function.  */
#define HAVE_SETREGID 1

/* Define if you have the setresgid function.  */
/* #undef HAVE_SETRESGID */

/* Define if you have the setresuid function.  */
/* #undef HAVE_SETRESUID */

/* Define if you have the setreuid function.  */
#define HAVE_SETREUID 1

/* Define if you have the setsid function.  */
#define HAVE_SETSID 1

/* Define if you have the setsockopt function.  */
#define HAVE_SETSOCKOPT 1

/* Define if you have the setutent function.  */
/* #undef HAVE_SETUTENT */

/* Define if you have the snprintf function.  */
#define HAVE_SNPRINTF 1

/* Define if you have the socket function.  */
#define HAVE_SOCKET 1

/* Define if you have the strcasecmp function.  */
#define HAVE_STRCASECMP 1

/* Define if you have the strdup function.  */
#define HAVE_STRDUP 1

/* Define if you have the strerror function.  */
#define HAVE_STRERROR 1

/* Define if you have the strftime function.  */
#define HAVE_STRFTIME 1

/* Define if you have the strlwr function.  */
/* #undef HAVE_STRLWR */

/* Define if you have the strnlen function.  */
/* #undef HAVE_STRNLEN */

/* Define if you have the strtok_r function.  */
#define HAVE_STRTOK_R 1

/* Define if you have the strupr function.  */
/* #undef HAVE_STRUPR */

/* Define if you have the swab function.  */
#define HAVE_SWAB 1

/* Define if you have the syslog function.  */
#define HAVE_SYSLOG 1

/* Define if you have the tgetent function.  */
#define HAVE_TGETENT 1

/* Define if you have the ttyname function.  */
#define HAVE_TTYNAME 1

/* Define if you have the ttyslot function.  */
#define HAVE_TTYSLOT 1

/* Define if you have the ulimit function.  */
/* #undef HAVE_ULIMIT */

/* Define if you have the uname function.  */
#define HAVE_UNAME 1

/* Define if you have the unlockpt function.  */
/* #undef HAVE_UNLOCKPT */

/* Define if you have the unsetenv function.  */
#define HAVE_UNSETENV 1

/* Define if you have the vasnprintf function.  */
/* #undef HAVE_VASNPRINTF */

/* Define if you have the vasprintf function.  */
#define HAVE_VASPRINTF 1

/* Define if you have the verr function.  */
#define HAVE_VERR 1

/* Define if you have the verrx function.  */
#define HAVE_VERRX 1

/* Define if you have the vhangup function.  */
/* #undef HAVE_VHANGUP */

/* Define if you have the vsnprintf function.  */
#define HAVE_VSNPRINTF 1

/* Define if you have the vwarn function.  */
#define HAVE_VWARN 1

/* Define if you have the vwarnx function.  */
#define HAVE_VWARNX 1

/* Define if you have the warn function.  */
#define HAVE_WARN 1

/* Define if you have the warnx function.  */
#define HAVE_WARNX 1

/* Define if you have the yp_get_default_domain function.  */
#define HAVE_YP_GET_DEFAULT_DOMAIN 1

/* Define if you have the <arpa/ftp.h> header file.  */
#define HAVE_ARPA_FTP_H 1

/* Define if you have the <arpa/inet.h> header file.  */
#define HAVE_ARPA_INET_H 1

/* Define if you have the <arpa/nameser.h> header file.  */
#define HAVE_ARPA_NAMESER_H 1

/* Define if you have the <arpa/telnet.h> header file.  */
#define HAVE_ARPA_TELNET_H 1

/* Define if you have the <bind/bitypes.h> header file.  */
/* #undef HAVE_BIND_BITYPES_H */

/* Define if you have the <bsd/bsd.h> header file.  */
/* #undef HAVE_BSD_BSD_H */

/* Define if you have the <bsdsetjmp.h> header file.  */
/* #undef HAVE_BSDSETJMP_H */

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

/* Define if you have the <dbm.h> header file.  */
/* #undef HAVE_DBM_H */

/* Define if you have the <dirent.h> header file.  */
#define HAVE_DIRENT_H 1

/* Define if you have the <err.h> header file.  */
#define HAVE_ERR_H 1

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

/* Define if you have the <grp.h> header file.  */
#define HAVE_GRP_H 1

/* Define if you have the <io.h> header file.  */
/* #undef HAVE_IO_H */

/* Define if you have the <lastlog.h> header file.  */
/* #undef HAVE_LASTLOG_H */

/* Define if you have the <login.h> header file.  */
/* #undef HAVE_LOGIN_H */

/* Define if you have the <maillock.h> header file.  */
/* #undef HAVE_MAILLOCK_H */

/* Define if you have the <ndbm.h> header file.  */
#define HAVE_NDBM_H 1

/* Define if you have the <net/if.h> header file.  */
#define HAVE_NET_IF_H 1

/* Define if you have the <net/if_tun.h> header file.  */
#define HAVE_NET_IF_TUN_H 1

/* Define if you have the <net/if_var.h> header file.  */
#define HAVE_NET_IF_VAR_H 1

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

/* Define if you have the <netinet/in.h> header file.  */
#define HAVE_NETINET_IN_H 1

/* Define if you have the <netinet/in6_machtypes.h> header file.  */
/* #undef HAVE_NETINET_IN6_MACHTYPES_H */

/* Define if you have the <netinet/in_systm.h> header file.  */
#define HAVE_NETINET_IN_SYSTM_H 1

/* Define if you have the <netinet/ip.h> header file.  */
#define HAVE_NETINET_IP_H 1

/* Define if you have the <netinet/tcp.h> header file.  */
#define HAVE_NETINET_TCP_H 1

/* Define if you have the <paths.h> header file.  */
#define HAVE_PATHS_H 1

/* Define if you have the <pty.h> header file.  */
/* #undef HAVE_PTY_H */

/* Define if you have the <pwd.h> header file.  */
#define HAVE_PWD_H 1

/* Define if you have the <resolv.h> header file.  */
#define HAVE_RESOLV_H 1

/* Define if you have the <rpcsvc/dbm.h> header file.  */
/* #undef HAVE_RPCSVC_DBM_H */

/* Define if you have the <sac.h> header file.  */
/* #undef HAVE_SAC_H */

/* Define if you have the <security/pam_modules.h> header file.  */
/* #undef HAVE_SECURITY_PAM_MODULES_H */

/* Define if you have the <shadow.h> header file.  */
/* #undef HAVE_SHADOW_H */

/* Define if you have the <siad.h> header file.  */
/* #undef HAVE_SIAD_H */

/* Define if you have the <signal.h> header file.  */
#define HAVE_SIGNAL_H 1

/* Define if you have the <stropts.h> header file.  */
/* #undef HAVE_STROPTS_H */

/* Define if you have the <sys/bitypes.h> header file.  */
/* #undef HAVE_SYS_BITYPES_H */

/* Define if you have the <sys/category.h> header file.  */
/* #undef HAVE_SYS_CATEGORY_H */

/* Define if you have the <sys/cdefs.h> header file.  */
#define HAVE_SYS_CDEFS_H 1

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

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

/* Define if you have the <sys/ioccom.h> header file.  */
#define HAVE_SYS_IOCCOM_H 1

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

/* Define if you have the <sys/locking.h> header file.  */
/* #undef HAVE_SYS_LOCKING_H */

/* Define if you have the <sys/mman.h> header file.  */
#define HAVE_SYS_MMAN_H 1

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

/* Define if you have the <sys/proc.h> header file.  */
#define HAVE_SYS_PROC_H 1

/* Define if you have the <sys/ptyio.h> header file.  */
/* #undef HAVE_SYS_PTYIO_H */

/* Define if you have the <sys/ptyvar.h> header file.  */
/* #undef HAVE_SYS_PTYVAR_H */

/* Define if you have the <sys/resource.h> header file.  */
#define HAVE_SYS_RESOURCE_H 1

/* Define if you have the <sys/select.h> header file.  */
#define HAVE_SYS_SELECT_H 1

/* Define if you have the <sys/socket.h> header file.  */
#define HAVE_SYS_SOCKET_H 1

/* Define if you have the <sys/sockio.h> header file.  */
#define HAVE_SYS_SOCKIO_H 1

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

/* Define if you have the <sys/str_tty.h> header file.  */
/* #undef HAVE_SYS_STR_TTY_H */

/* Define if you have the <sys/stream.h> header file.  */
/* #undef HAVE_SYS_STREAM_H */

/* Define if you have the <sys/stropts.h> header file.  */
/* #undef HAVE_SYS_STROPTS_H */

/* Define if you have the <sys/strtty.h> header file.  */
/* #undef HAVE_SYS_STRTTY_H */

/* Define if you have the <sys/syscall.h> header file.  */
#define HAVE_SYS_SYSCALL_H 1

/* Define if you have the <sys/sysctl.h> header file.  */
#define HAVE_SYS_SYSCTL_H 1

/* Define if you have the <sys/termio.h> header file.  */
/* #undef HAVE_SYS_TERMIO_H */

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

/* Define if you have the <sys/timeb.h> header file.  */
#define HAVE_SYS_TIMEB_H 1

/* Define if you have the <sys/times.h> header file.  */
#define HAVE_SYS_TIMES_H 1

/* Define if you have the <sys/tty.h> header file.  */
#define HAVE_SYS_TTY_H 1

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

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

/* Define if you have the <sys/un.h> header file.  */
#define HAVE_SYS_UN_H 1

/* Define if you have the <sys/utsname.h> header file.  */
#define HAVE_SYS_UTSNAME_H 1

/* Define if you have the <sys/wait.h> header file.  */
#define HAVE_SYS_WAIT_H 1

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

/* Define if you have the <termio.h> header file.  */
/* #undef HAVE_TERMIO_H */

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

/* Define if you have the <tmpdir.h> header file.  */
/* #undef HAVE_TMPDIR_H */

/* Define if you have the <ttyent.h> header file.  */
#define HAVE_TTYENT_H 1

/* Define if you have the <udb.h> header file.  */
/* #undef HAVE_UDB_H */

/* Define if you have the <ulimit.h> header file.  */
/* #undef HAVE_ULIMIT_H */

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

/* Define if you have the <userpw.h> header file.  */
/* #undef HAVE_USERPW_H */

/* Define if you have the <usersec.h> header file.  */
/* #undef HAVE_USERSEC_H */

/* Define if you have the <util.h> header file.  */
/* #undef HAVE_UTIL_H */

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

/* Define if you have the <utmp.h> header file.  */
#define HAVE_UTMP_H 1

/* Define if you have the <utmpx.h> header file.  */
/* #undef HAVE_UTMPX_H */

/* Define if you have the <wait.h> header file.  */
/* #undef HAVE_WAIT_H */

/* Define if you have the <winsock.h> header file.  */
/* #undef HAVE_WINSOCK_H */

/* Define if you have the X11 library (-lX11).  */
/* #undef HAVE_LIBX11 */

/* Define if you have the Xau library (-lXau).  */
#define HAVE_LIBXAU 1

/* Define if you have the c_r library (-lc_r).  */
/* #undef HAVE_LIBC_R */

/* Define if you have the cfg library (-lcfg).  */
/* #undef HAVE_LIBCFG */

/* Define if you have the edit library (-ledit).  */
#define HAVE_LIBEDIT 1

/* Define if you have the gdbm library (-lgdbm).  */
/* #undef HAVE_LIBGDBM */

/* Define if you have the ndbm library (-lndbm).  */
/* #undef HAVE_LIBNDBM */

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

/* Define if you have the odm library (-lodm).  */
/* #undef HAVE_LIBODM */

/* Define if you have the readline library (-lreadline).  */
#define HAVE_LIBREADLINE 1

/* Define if you have the resolv library (-lresolv).  */
/* #undef HAVE_LIBRESOLV */

/* Define if you have the s library (-ls).  */
/* #undef HAVE_LIBS */

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

/* Define if you have the syslog library (-lsyslog).  */
/* #undef HAVE_LIBSYSLOG */

/* Define if you have the termcap library (-ltermcap).  */
#define HAVE_LIBTERMCAP 1

/* Define if you have the util library (-lutil).  */
#define HAVE_LIBUTIL 1

#define HAVE_INT8_T 1
#define HAVE_INT16_T 1
#define HAVE_INT32_T 1
#define HAVE_INT64_T 1
#define HAVE_U_INT8_T 1
#define HAVE_U_INT16_T 1
#define HAVE_U_INT32_T 1
#define HAVE_U_INT64_T 1

#define RCSID(msg) \
static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }

/*
 * Set ORGANIZATION to be the desired organization string printed
 * by the 'kinit' program.  It may have spaces.
 */
#define ORGANIZATION "eBones International"

#if 0
#define BINDIR "/usr/athena/bin" 
#define LIBDIR "/usr/athena/lib"
#define LIBEXECDIR "/usr/athena/libexec"
#define SBINDIR "/usr/athena/sbin"
#endif

#if 0
#define KRB_CNF_FILES	{ "/etc/krb.conf",   "/etc/kerberosIV/krb.conf", 0}
#define KRB_RLM_FILES	{ "/etc/krb.realms", "/etc/kerberosIV/krb.realms", 0}
#define KRB_EQUIV	"/etc/krb.equiv"

#define KEYFILE		"/etc/srvtab"

#define KRBDIR		"/var/kerberos"
#define DBM_FILE	KRBDIR "/principal"
#define DEFAULT_ACL_DIR	KRBDIR

#define KRBLOG		"/var/log/kerberos.log"	/* master server  */
#define KRBSLAVELOG	"/var/log/kerberos_slave.log" /* slave server  */
#define KADM_SYSLOG	"/var/log/admin_server.syslog"
#define K_LOGFIL	"/var/log/kpropd.log"
#endif

/* Maximum values on all known systems */
#define MaxHostNameLen (64+4)
#define MaxPathLen (1024+4)

/*
 * Define NDBM if you are using the 4.3 ndbm library (which is part of
 * libc).  If not defined, 4.2 dbm will be assumed.
 */
#if defined(HAVE_DBM_FIRSTKEY)
#define NDBM
#endif

/* ftp stuff -------------------------------------------------- */

#define KERBEROS

/* telnet stuff ----------------------------------------------- */

/* define this if you have kerberos 4 */
#define KRB4 1

/* define this if you want encryption */
#define ENCRYPTION 1

/* define this if you want authentication */
#define AUTHENTICATION 1

#if defined(ENCRYPTION) && !defined(AUTHENTICATION)
#define AUTHENTICATION 1
#endif

/* Set this if you want des encryption */
#define DES_ENCRYPTION 1

/* Set this to the default system lead string for telnetd 
 * can contain %-escapes: %s=sysname, %m=machine, %r=os-release
 * %v=os-version, %t=tty, %h=hostname, %d=date and time
 */
/* #undef USE_IM */

/* define this if you want diagnostics in telnetd */
#define DIAGNOSTICS 1

/* define this if you want support for broken ENV_{VALUE,VAR} systems  */
/* #undef ENV_HACK */

/*  */
#define OLD_ENVIRON 1

/* Used with login -p */
/* #undef LOGIN_ARGS */

/* Define if there are working stream ptys */
/* #undef STREAMSPTY */

/* set this to a sensible login */
#ifndef LOGIN_PATH
#define LOGIN_PATH BINDIR "/login"
#endif


/* ------------------------------------------------------------ */

/*
 * Define this if your ndbm-library really is berkeley db and creates
 * files that ends in .db.
 */
#define HAVE_NEW_DB 1

/* Define this if you have a working getmsg */
/* #undef HAVE_GETMSG */

/* Define to enable new master key code */
/* #undef RANDOM_MKEY */

/* Location of the master key file, default value lives in <kdc.h> */
/* #undef MKEYFILE */

/* Define if you don't want support for afs, might be a good idea on
   AIX if you don't have afs */
#define NO_AFS 1

/* Define if you have a readline compatible library */
#define HAVE_READLINE 1

#ifdef VOID_RETSIGTYPE
#define SIGRETURN(x) return
#else
#define SIGRETURN(x) return (RETSIGTYPE)(x)
#endif

/* Define this if your compiler supports '#pragma weak' */
#define HAVE_PRAGMA_WEAK 1

/* Temporary fixes for krb_{rd,mk}_safe */
#define DES_QUAD_GUESS 0
#define DES_QUAD_NEW 1
#define DES_QUAD_OLD 2

/* Set this to one of the constants above to specify default checksum
   type to emit */
#define DES_QUAD_DEFAULT DES_QUAD_GUESS

/*
 * AIX braindamage!
 */
#if _AIX
#define _ALL_SOURCE
#define _POSIX_SOURCE
/* this is left for hysteric reasons :-) */
#define unix /* well, ok... */
#endif

/*
 * SunOS braindamage! (Sun include files are generally braindead)
 */
#if (defined(sun) || defined(__sun))
#if defined(__svr4__) || defined(__SVR4)
#define SunOS 5
#else
#define SunOS 4
#endif
#endif

#if defined(__sgi) || defined(sgi)
#if defined(__SYSTYPE_SVR4) || defined(_SYSTYPE_SVR4)
#define IRIX 5
#else
#define IRIX 4
#endif
#endif

/* IRIX 4 braindamage */
#if IRIX == 4 && !defined(__STDC__)
#define __STDC__ 0
#endif
OpenPOWER on IntegriCloud