File: config.h.in

package info (click to toggle)
proftpd-dfsg 1.3.4a-5%2Bdeb7u3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 27,820 kB
  • sloc: perl: 154,169; ansic: 128,582; sh: 13,564; php: 11,586; makefile: 2,156
file content (962 lines) | stat: -rw-r--r-- 24,811 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
958
959
960
961
962
/* config.h.in.  Generated automatically from configure.in by autoheader.  */
/* -*- C -*- */
/* @configure_input@ */

#ifndef		config_h_included
#define		config_h_included

/*************************************************************************
 * This section is automatically generated by 'configure'.  Adjust these
 * if configure didn't make a correct guess for your system.
 *************************************************************************/

/* Define to be the build options. */
#undef PR_BUILD_OPTS

/* Define to be the build CFLAGS.  */
#undef PR_BUILD_CFLAGS

/* Define to be the build LDLAGS.  */
#undef PR_BUILD_LDFLAGS

/* Define to be the build LIBS.  */
#undef PR_BUILD_LIBS

/* Define to be the build platform. */
#undef PR_PLATFORM

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

/* Define to `int' if <sys/types.h> doesn't define. */
#undef HAVE_INTPTR_T
#if !defined(HAVE_INTPTR_T)
# define intptr_t	int
#endif /* HAVE_INTPTR_T */

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

/* Define if you have AIX send_file() semantics. */
#undef HAVE_AIX_SENDFILE

/* Define if you have BSD POSIX ACLs. */
#undef HAVE_BSD_POSIX_ACL

/* Define if you have BSD sendfile() semantics. */
#undef HAVE_BSD_SENDFILE

/* Define if you have Linux POSIX ACLs. */
#undef HAVE_LINUX_POSIX_ACL

/* Define if you have Linux sendfile() semantics. */
#undef HAVE_LINUX_SENDFILE

/* Define if you have Mac OSX sendfile() semantics.  */
#undef HAVE_MACOSX_SENDFILE

/* Define if you have Solaris POSIX ACLs. */
#undef HAVE_SOLARIS_POSIX_ACL

/* Define if you have Solaris sendfile() semantics. */
#undef HAVE_SOLARIS_SENDFILE

/* Define if your <syslog.h> defines the LOG_CRON macro */
#undef HAVE_LOG_CRON

/* Define if your <syslog.h> defines the LOG_FTP macro */
#undef HAVE_LOG_FTP

/* Define if you want support for PAM based authentication */
#undef HAVE_PAM

/* Define if your DIR structure has member dd_fd */
#undef HAVE_STRUCT_DIR_DD_FD

/* Define if your DIR structure has member __dd_fd */
#undef HAVE_STRUCT_DIR___DD_FD

/* Define if you have struct cmsgcred.  */
#undef HAVE_STRUCT_CMSGCRED

/* Define if you have struct sockcred.  */
#undef HAVE_STRUCT_SOCKCRED

/* Define if your spwd structure has member warn */
#undef HAVE_SPWD_SP_WARN

/* Define if your spwd structure has member inact */
#undef HAVE_SPWD_SP_INACT

/* Define if your spwd structure has member expire */
#undef HAVE_SPWD_SP_EXPIRE

/* Define if your system has __progname */
#undef HAVE___PROGNAME

/* Define if your system has _pw_stayopen variable (IRIX specific?) */
#undef HAVE__PW_STAYOPEN

/* Define if your system has POSIX ACL support */
#undef HAVE_POSIX_ACL

/* Define if your system has the sendfile function */
#undef HAVE_SENDFILE

/* Define this if you have the setpassent function */
#undef HAVE_SETPASSENT

/* Define if your system has the setspent function.  */
#undef HAVE_SETSPENT

/* Define if your DIR structure has member d_fd */
#undef HAVE_STRUCT_DIR_D_FD

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

/* Define if you already have a typedef for timer_t */
#undef HAVE_TIMER_T

/* Define if you have the tzname global variable.  */
#undef HAVE_TZNAME

/* Define if your struct utmp has ut_host */
#undef HAVE_UT_UT_HOST

/* Define if your struct utmp uses ut_user and not ut_name */
#undef HAVE_UTMAXTYPE

#define PF_ARGV_NONE		0
#define PF_ARGV_NEW		1
#define PF_ARGV_WRITEABLE	2
#define PF_ARGV_PSTAT		3
#define PF_ARGV_PSSTRINGS	4

/* If you don't have setproctitle, PF_ARGV_TYPE needs to be set to either
 * PF_ARGV_NEW (replace argv[] arguments), PF_ARGV_WRITEABLE (overwrite
 * argv[]), PF_ARGV_PSTAT (use the pstat function), or PF_ARGV_PSSTRINGS
 * (use PS_STRINGS).
 * 
 * configure should, we hope <wink>, detect this for you.
 */
#undef PF_ARGV_TYPE

/* 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 the type of elements in the array set by `getgroups'.
   Usually this is either `int' or `gid_t'.  */
#undef GETGROUPS_T

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

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

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

/* Define if you don't have vprintf but do have _doprnt.  */
#undef HAVE_DOPRNT

/* Define if you have the vprintf function.  */
#undef HAVE_VPRINTF

/* Define as __inline if that's what the C compiler calls it.  */
#undef inline

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

/* 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 as the return type of signal handlers (int or void).  */
#undef RETSIGTYPE

/* Define if the `setpgrp' function takes no argument.  This is the default
 * POSIX signature, so assume that the host system uses the POSIX
 * signature.  This avoids cross-compilation errors; the Autoconf macro
 * AC_FUNC_SETPGRP causes the configure script to fail when cross-compiling.
 * Thus we always assume the POSIX signature.  If this is incorrect,
 * the generated config.h file can be updated manually.
 */
#define SETPGRP_VOID 1

/* Define if the `setgrent` function returns void.  */
#undef SETGRENT_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.  */
#undef STDC_HEADERS

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

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

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

/* The number of bytes in a short.  */
#undef SIZEOF_SHORT

/* The number of bytes in an int.  */
#undef SIZEOF_INT

/* The number of bytes in a long.  */
#undef SIZEOF_LONG

/* The number of bytes in a long long.  */
#undef SIZEOF_LONG_LONG

/* The number of bytes in an off_t.  */
#undef SIZEOF_OFF_T

/* The number of bytes in a size_t.  */
#undef SIZEOF_SIZE_T

/* The number of bytes in a time_t.  */
#undef SIZEOF_TIME_T

/* The number of bytes in a pointer to a char.  */
#undef SIZEOF_CHAR_P

/* The number of bytes in a pointer to a void.  */
#undef SIZEOF_VOID_P

/* Define if you have the backtrace function.  */
#undef HAVE_BACKTRACE

/* Define if you have the backtrace_symbols function.  */
#undef HAVE_BACKTRACE_SYMBOLS

/* Define if you have the bcopy function.  */
#undef HAVE_BCOPY

/* Define if you have the crypt function.  */
#undef HAVE_CRYPT

/* Define if you have the dirfd function.  */
#undef HAVE_DIRFD

/* Define if you have the endprotoent function.  */
#undef HAVE_ENDPROTOENT

/* Define if you have the fconvert function.  */
#undef HAVE_FCONVERT

/* Define if you have the fcvt function.  */
#undef HAVE_FCVT

/* Define if you have the fdatasync function.  */
#undef HAVE_FDATASYNC

/* Define if you have the fgetgrent function.  */
#undef HAVE_FGETGRENT

/* Define if you have the fgetpwent function.  */
#undef HAVE_FGETPWENT

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

/* Define if you have the fpathconf function.  */
#undef HAVE_FPATHCONF

/* Define if you have the fgetspent function.  */
#undef HAVE_FGETSPENT

/* Define if you have the freeaddrinfo function.  */
#undef HAVE_FREEADDRINFO

/* Define if you have the futimes function.  */
#undef HAVE_FUTIMES

/* Define if you have the gai_strerror function.  */
#undef HAVE_GAI_STRERROR

/* Define if you have the getaddrinfo function.  */
#undef HAVE_GETADDRINFO

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

/* Define if you have the getenv function.  */
#undef HAVE_GETENV

/* Define if you have the getgrouplist function.  */
#undef HAVE_GETGROUPLIST

/* Define if you have the getgrset function.  */
#undef HAVE_GETGRSET

/* Define if you have the gethostbyname2 function.  */
#undef HAVE_GETHOSTBYNAME2

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

/* Define if you have the getnameinfo function.  */
#undef HAVE_GETNAMEINFO

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

/* Define if you have the getopt_long function.  */
#undef HAVE_GETOPT_LONG

/* Define if you have the getpeereid function.  */
#undef HAVE_GETPEEREID

/* Define if you have the getpeerucred function.  */
#undef HAVE_GETPEERUCRED

/* Define if you have the getpgid function.  */
#undef HAVE_GETPGID

/* Define if you have the getpgrp function.  */
#undef HAVE_GETPGRP

/* Define if you have the getprpwent function.  */
#undef HAVE_GETPRPWENT

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

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

/* Define if you have the iconv function.  */
#undef HAVE_ICONV

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

/* Define if you have the inet_ntop function.  */
#undef HAVE_INET_NTOP

/* Define if you have the inet_pton function.  */
#undef HAVE_INET_PTON

/* Define if you have the loginrestrictions function.  */
#undef HAVE_LOGINRESTRICTIONS

/* Define if you have the memcpy function.  */
#undef HAVE_MEMCPY

/* Define if you have the mempcpy function.  */
#undef HAVE_MEMPCPY

/* Define if you have the mkdir function.  */
#undef HAVE_MKDIR

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

/* Define if you have the mlock function.  */
#undef HAVE_MLOCK

/* Define if you have the mlockall function.  */
#undef HAVE_MLOCKALL

/* Define if you have the munlock function.  */
#undef HAVE_MUNLOCK

/* Define if you have the munlockall function.  */
#undef HAVE_MUNLOCKALL

/* Define if you have the MySQL make_scrambled_password_323 function.  */
#undef HAVE_MYSQL_MAKE_SCRAMBLED_PASSWORD_323

/* Define if you have the nl_langinfo function.  */
#undef HAVE_NL_LANGINFO

/* Define if you have the pathconf function.  */
#undef HAVE_PATHCONF

/* Define if you have the perm_copy_fd function.  */
#undef HAVE_PERM_COPY_FD

/* Define if you have the Postgres PQescapeStringConn function.  */
#undef HAVE_POSTGRES_PQESCAPESTRINGCONN

/* Define if you have the pstat function.  */
#undef HAVE_PSTAT

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

/* Define if you have the regcomp function.  */
#undef HAVE_REGCOMP

/* Define if you have the rmdir function.  */
#undef HAVE_RMDIR

/* Define if you have the select function.  */
#undef HAVE_SELECT

/* Define if you have the set_auth_parameters function.  */
#undef HAVE_SET_AUTH_PARAMETERS

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

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

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

/* Define if you have the setgroupent function.  */
#undef HAVE_SETGROUPENT

/* Define if you have the setgroups function.  */
#undef HAVE_SETGROUPS

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

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

/* Define if your system has the setprotoent function.  */
#undef HAVE_SETPROTOENT

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

/* Define if you have the siginterrupt function.  */
#undef HAVE_SIGINTERRUPT

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

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

/* Define if you have the statfs function.  */
#undef HAVE_STATFS

/* Define if you have the strchr function.  */
#undef HAVE_STRCHR

/* Define if you have the strcoll function.  */
#undef HAVE_STRCOLL

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

/* Define if you have the strsep function.  */
#undef HAVE_STRSEP

/* Define if you have the strtod function.  */
#undef HAVE_STRTOD

/* Define if you have the strtof function.  */
#undef HAVE_STRTOF

/* Define if you have the strtol function.  */
#undef HAVE_STRTOL

/* Define if you have the strtoull function.  */
#undef HAVE_STRTOULL

/* Define if you have the tzset function.  */
#undef HAVE_TZSET

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

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

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

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

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

/* Define if you have the <bstring.h> header file.  */
#undef HAVE_BSTRING_H

/* Define if you have the <check.h> header file.  */
#undef HAVE_CHECK_H

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

/* Define if you have the <ctype.h> header file.  */
#undef HAVE_CTYPE_H

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

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

/* Define if you have the <execinfo.h> header file.  */
#undef HAVE_EXECINFO_H

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

/* Define if you have the <floatingpoint.h> header file.  */
#undef HAVE_FLOATINGPOINT_H

/* Define if you have the <getopt.h> header file.  */
#undef HAVE_GETOPT_H

/* Define if you have the <hpsecurity.h> header file.  */
#undef HAVE_HPSECURITY_H

/* Define if you have the <krb.h> header file.  */
#undef HAVE_KRB_H

/* Define if you have the <iconv.h> header file.  */
#undef HAVE_ICONV_H

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

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

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

/* Define if you have the <libintl.h> header file.  */
#undef HAVE_LIBINTL_H

/* Define if you have the <libutil.h> header file.  */
#undef HAVE_LIBUTIL_H

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

/* Define if you have the <linux/capability.h> header file.  */
#undef HAVE_LINUX_CAPABILITY_H

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

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

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

/* Define if you have the <ncurses.h> header file.  */
#undef HAVE_NCURSES_H

/* Define if you have the <curses.h> header file.  */
#undef HAVE_CURSES_H

/* Define if you have the <ndir.h> header file.  */
#undef HAVE_NDIR_H

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

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

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

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

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

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

/* Define if you have the <prot.h> header file.  */
#undef HAVE_PROT_H

/* Define if you have the <regex.h> header file.  */
#undef HAVE_REGEX_H

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

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

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

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

/* Define if you have the <sia.h> header file.  */
#undef HAVE_SIA_H

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Define if you have the <ucontext.h> header file.  */
#undef HAVE_UCONTEXT_H

/* Define if you have the <ucred.h> header file.  */
#undef HAVE_UCRED_H

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

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

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

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

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

/* Define if you have the "vmsdir.h" header file.  */
#undef HAVE_VMSDIR_H

/* Define if you have the acl library (-lacl).  */
#undef HAVE_LIBACL

/* Define if you have the bind library (-lbind).  */
#undef HAVE_LIBBIND

/* Define if you have the cap library (-lcap).  */
#undef HAVE_LIBCAP

/* Define if you have the cap (v2) library (-lcap2).  */
#undef HAVE_LIBCAP2

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

/* Define if you have the check library (-lcheck).  */
#undef HAVE_LIBCHECK

/* Define if you have the curses library (-lcurses).  */
#undef HAVE_LIBCURSES

/* Define if you have the UnixWare gen library (-lgen).  */
#undef HAVE_LIBGEN

/* Define if you have the iconv library (-liconv).  */
#undef HAVE_LIBICONV

/* Define if you have the intl library (-lintl).  */
#undef HAVE_LIBINTL

/* Define if you have the ncurses library (-lncurses).  */
#undef HAVE_LIBNCURSES

/* Define if you have the ncurses library (-lncursesw).  */
#undef HAVE_LIBNCURSESW

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

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

/* Define if you have the sec library (-lsec).  */
#undef HAVE_LIBSEC

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

/* Define if you have the addrinfo struct.  */
#undef HAVE_STRUCT_ADDRINFO

/* Define if you have the sockaddr_storage struct.  */
#undef HAVE_STRUCT_SS

/* Define if you have the ss_family sockaddr_storage struct member.  */
#undef HAVE_SS_FAMILY

/* Define if you have the __ss_family sockaddr_storage struct member.  */
#undef HAVE___SS_FAMILY

/* Define if you have the ss_len sockaddr_storage struct member.  */
#undef HAVE_SS_LEN

/* Define if you have the __ss_len sockaddr_storage struct member.  */
#undef HAVE___SS_LEN

/* Define if you have the sin_len sockaddr_in struct member. */
#undef SIN_LEN

/* Define if you have the socket library (-lsocket).  */
#undef HAVE_LIBSOCKET
#ifndef STDIN_FILENO
#define STDIN_FILENO 	0
#endif /* STDIN_FILENO */

#ifndef STDOUT_FILENO
#define STDOUT_FILENO 	1
#endif /* STDOUT_FILENO */

#ifndef STDERR_FILENO
#define STDERR_FILENO	2
#endif /* STDERR_FILENO */

#ifndef PR_CONFIG_DIR
#undef PR_CONFIG_DIR
#endif /* PR_CONFIG_DIR */

#ifndef PR_INCLUDE_DIR
#undef PR_INCLUDE_DIR
#endif /* PR_INCLUDE_DIR */

#ifndef PR_LIBEXEC_DIR
#undef PR_LIBEXEC_DIR
#endif /* PR_LIBEXEC_DIR */

#ifndef PR_LOCALE_DIR
#undef PR_LOCALE_DIR
#endif /* PR_LOCALE_DIR */

#ifndef PR_RUN_DIR
#undef PR_RUN_DIR
#endif /* PR_RUN_DIR */

#ifndef PR_CONFIG_FILE_PATH
#undef PR_CONFIG_FILE_PATH	
#endif /* PR_CONFIG_FILE_PATH */

#ifndef PR_PID_FILE_PATH
#undef PR_PID_FILE_PATH		
#endif /* PR_PID_FILE_PATH */

#ifndef PR_LASTLOG_PATH
#undef PR_LASTLOG_PATH
#endif /* PR_LASTLOG_PATH */

/* Number of bits in a file offset, on hosts where this is settable. */
#ifndef _FILE_OFFSET_BITS
#undef _FILE_OFFSET_BITS
#endif /* _FILE_OFFSET_BITS */

/* Define for large files, on AIX-style hosts. */
#undef _LARGE_FILES

/* Define for use of hstrerror on AIX-style hosts. */
#undef _USE_IRS

/* Define if auto-detection of shadow passwords is wanted.  */
#undef PR_USE_AUTO_SHADOW

/* Define if controls support is desired.  */
#undef PR_USE_CTRLS

/* Define if curses support, if available, should be used.  */
#undef PR_USE_CURSES

/* Define if you are a developer. */
#undef PR_USE_DEVEL

/* Define if DSO support is desired.  */
#undef PR_USE_DSO

/* Define if use of POSIX ACL support is desired.  */
#undef PR_USE_FACL

/* Define if use of builtin getaddrinfo() is desired.  */
#undef PR_USE_GETADDRINFO

/* Define if use of builtin getnameinfo() is desired.  */
#undef PR_USE_GETNAMEINFO

/* Define if IPv6 support is desired.  */
#undef PR_USE_IPV6

/* Define if largefile support is desired.  */
#undef PR_USE_LARGEFILES

/* Define if memcache support is desired.. */
#undef PR_USE_MEMCACHE

/* Define if the %llu format should be used.  */
#undef HAVE_LLU

/* Define if the %lu format should be used.  */
#undef HAVE_LU

/* Define if lastlog support is desired.  */
#undef PR_USE_LASTLOG

/* Define if NLS support, if available, should be used. */
#undef PR_USE_NLS

/* Define if ncurses support, if available, should be used.  */
#undef PR_USE_NCURSES

/* Define if ncursesw support, if available, should be used.  */
#undef PR_USE_NCURSESW

/* Define if using nonblocking open of log files.  */
#undef PR_USE_NONBLOCKING_LOG_OPEN

/* Define if OpenSSL support, if available, should be used.  */
#undef PR_USE_OPENSSL

/* Define if OpenSSL support (with FIPS enabled), if available, should be
 * used.
 */
#undef PR_USE_OPENSSL_FIPS

/* Define if using PCRE support.  */
#undef PR_USE_PCRE

/* Define if sendfile support, if available, should be used.  */
#undef PR_USE_SENDFILE

/* Define if using /etc/shadow files.  */
#undef PR_USE_SHADOW

/* Define if using Tru64's C2 SIA authentication.  */
#undef PR_USE_SIA

/* Define if use of system getopt is desired.  */
#undef PR_USE_SYSTEM_GETOPT

/* Define if using testsuite support.  */
#undef PR_USE_TESTS

/* Define if using trace support.  */
#undef PR_USE_TRACE

/* Tunable parameters */
#undef PR_TUNABLE_BUFFER_SIZE
#undef PR_TUNABLE_NEW_POOL_SIZE
#undef PR_TUNABLE_SCOREBOARD_BUFFER_SIZE
#undef PR_TUNABLE_TIMEOUTIDENT
#undef PR_TUNABLE_TIMEOUTIDLE
#undef PR_TUNABLE_TIMEOUTLINGER
#undef PR_TUNABLE_TIMEOUTLOGIN
#undef PR_TUNABLE_TIMEOUTNOXFER
#undef PR_TUNABLE_TIMEOUTSTALLED
#undef PR_TUNABLE_XFER_SCOREBOARD_UPDATES

#endif /* config_h_included */