-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.h.in
1010 lines (788 loc) · 24.2 KB
/
config.h.in
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
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* config.h.in. Generated from configure.in by autoheader. */
/* Name of this package (needed by automake) */
#undef PACKAGE
/* Version of this package (needed by automake) */
#undef VERSION
#undef DEFAULT_MAILER
/* Define if you have the gettimeofday function. */
#undef HAVE_GETTIMEOFDAY
/* Define if you have the link function. */
#undef HAVE_LINK
/* Define if you have the mkdir function. */
#undef HAVE_MKDIR
/* Define if you have the mktime function. */
#undef HAVE_MKTIME
/* Define if you have the sprintf function. */
#undef HAVE_SPRINTF
/* Define if you have the statfs function. */
#undef HAVE_STATFS
/* Define if you have the strcasecmp function. */
#undef HAVE_STRCASECMP
/* Define if you have the strerror function. */
#undef HAVE_STRERROR
/* Define if you have the stricmp function. */
#undef HAVE_STRICMP
/* Define if you have the strspn function. */
#undef HAVE_STRSPN
/* Define if you have the strstr function. */
#undef HAVE_STRSTR
/* Define if you have the syslog function. */
#undef HAVE_SYSLOG
/* Define if you have the <dirent.h> header file. */
#undef HAVE_DIRENT_H
/* Define if you have the <fcntl.h> header file. */
#undef HAVE_FCNTL_H
/* Define if you have the <limits.h> header file. */
#undef HAVE_LIMITS_H
/* Define if you have the <malloc.h> header file. */
#undef HAVE_MALLOC_H
/* Define if you have the <ndir.h> header file. */
#undef HAVE_NDIR_H
/* Define if you have the <sys/dir.h> header file. */
#undef HAVE_SYS_DIR_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/statfs.h> header file. */
#undef HAVE_SYS_STATFS_H
/* Define if you have the <sys/statvfs.h> header file. */
#undef HAVE_SYS_STATVFS_H
/* Define if you have the <sys/time.h> header file. */
#undef HAVE_SYS_TIME_H
/* Define if you have the <sys/vfs.h> header file. */
#undef HAVE_SYS_VFS_H
/* Define if you have the <sysexits.h> header file. */
#undef HAVE_SYSEXITS_H
/* Define if you have the <syslog.h> header file. */
#undef HAVE_SYSLOG_H
/* Define if you have the <time.h> header file. */
#undef HAVE_TIME_H
/* Define if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
/***** General configuration *************************************************/
/*
* Generate local FTN addresses, e.g.
* user_name%[email protected]
* instead of
*/
#undef LOCAL_FTN_ADDRESSES
/*
* Create Binkley-style BSY files for all outbound operations
*/
#undef DO_BSY_FILES
/*
* Create lock files / BSY files in an NFS-safe way (see man 2 open)
*/
#undef NFS_SAFE_LOCK_FILES
/*
* Create 4D outbound filenames for AmigaDOS mailers,
* Z.N.F.P.flo / Z.N.F.P.mo0
*/
#undef AMIGADOS_4D_OUTBOUND
/*
* Default max. message size for FIDO. Due to some more brain damage
* in FIDONET programs we have to split larger messages into several
* smaller ones. May be set with the -M option in AREAS or MaxMsgSize
* in DEFAULT_CONFIG_GATE.
*/
/* < 16 K */
/* #define MAXMSGSIZE 14000 */
/* < 32 K */
/* #define MAXMSGSIZE 30000 */
#undef MAXMSGSIZE
/*
* Domain for invalid FTN addresses
*/
#undef FTN_INVALID_DOMAIN
/*
* syslog facility used for logging if logfile == "syslog"
* (only for HAS_SYSLOG defined)
*/
#undef FACILITY
/*
* Default assumed charset for Fido messages (see also DefaultCharset)
*/
#undef CHARSET_STDFTN
/*
* Default assumed charset for RFC messages if without MIME headers
*/
#undef CHARSET_STDRFC
/*
* Default charset for RFC messages with forced 7bit encoding
*/
#undef CHARSET_STD7BIT
/***** ftn2rfc configuration ************************************************/
/*
* Rewrite addresses found in ALIASES so that the sender's address is the
* gateway address. The reverse direction requires suitable MTA aliases.
*/
#undef ALIASES_ARE_LOCAL
/***** rfc2ftn configuration ************************************************/
/** Passthru operation for NetMail: FIDO->Internet->FIDO **/
#undef PASSTHRU_NETMAIL
/** Passthru operation for EchoMail: FIDO->Internet->FIDO **/
/*
* Implemented, but requires ftntoss run after rfc2ftn to sort SEEN-BY
*/
#undef PASSTHRU_ECHOMAIL
/** Support newsserver SN ***************************************************/
/*
* Enable SN-style active_lookup
*/
#undef SN
/***** AI patches configuration (see README.ai) *****************************/
/*
* Add -a option to HOSTS entries, useful only with PASSTHRU_NET/ECHOMAIL
*/
#undef AI_1
/*
* Enable best AKA select
*/
#undef BEST_AKA
/*
* Enable ACL for FTN links
*/
#undef FTN_ACL
/*
* Put file descriptions into `.desc/%s.desc' file instead of files.bbs
*/
// .../fileecho/.desc/file.zip.desc
// #define DESC_DIR ".desc"
// .../fileecho/file.zip.desc
// #define DESC_DIR ""
#undef DESC_DIR
/*
* Add `X-FTN-From' header in gated echomail.
*/
#undef X_FTN_FROM_ECHOMAIL
/*
* Added the feature "spy forwards".
*/
#undef SPYES
/*
* Restricted access to areafix command `%listall'
*/
#undef AF_LISTALL_RESTRICTED
/*
* Recode file descriptions
*/
#undef RECODE_FILE_DESC
/*
* Enable areafix command `%avail', change behaviour of areafix
* command `%list'
*/
#undef AF_AVAIL
/*
* Enable passthrought filearea
*/
#undef FECHO_PASSTHROUGHT
/*
* Enable if use fileboxes for fileecho
*/
#undef USE_FILEBOX
/*
* Enable if no ftntick CRC control
*/
#undef FTNTICK_NOCRC
/*
* Enable if no insert Origin line if it absence
*/
#undef NOINSERT_ORGANIZATION
/*
* If Origin line is not present, include link address
*/
#undef INSERT_ORIGIN
/*
* Don't put insecure mail into dupe database
*/
#undef INSECURE_DONT_PUT_INTO_DUPE_DB
/*
* For the security reason enabled additional addresses checking in the
* .pkt header, message header, origin and echomail ^aPATH.
* If the last address in PATH is not equal to address in the pkt header,
* then the address from the pkt header is inserted into PATH.
*/
#define SECURITY
/*
* Do'nt put info about create to log if echo created by forward reques.
*/
#undef CREATE_LOG_FORWREQ
/*
* Change ^AVia format from:
* ^AVia FIDOGATE/ftntoss 2:5030/1229.0, 20010405.164323.MSK
* to:
* ^AVia 2:5030/1229.0 @20010405.164323.MSK FIDOGATE/ftntoss
*/
#define FTS_VIA
/*
* Change areafix answer when subscibing to area from `subscribe' to `ok'.
*/
#undef ANSWER_OK
/*
* Set fido-style msgid
*/
#undef FIDO_STYLE_MSGID
/*
* Set msgid correspond data base
*/
#undef DBC_HISTORY
/*
* Delete MIME if rfc status set to 2
*/
#undef DEL_MIME_IF_RFC2
/*
* Enable areafix send echo status
*/
#undef AFSEND_ECHO_STATUS
/*
* Enable subscribe autorization only if node listed in zonegate
*/
#undef SUBSCRIBE_ZONEGATE
/*
* Paste domain name to Origin message line
*/
#undef DOMAIN_TO_ORIGIN
/*
* Enable paste ^PID (mail or news reader name) and ^TID (fidogate version)
* kludge
*/
#undef PID_READER_TID_GTV
/*
* Enable tic dupe check
*/
#undef TIC_HISTORY
/*
* Disable tosting netmail and set directory for incoming and outgoing pkt's
*/
#undef DO_NOT_TOSS_NETMAIL
/*
* Ignore `From:' field if REPLYTO or REPLYADDR was found
*/
#undef IGNORE_FROM_IF_REPLY
/*
* Separate outouing message to individual pkt file
*/
#undef SEP_RFC2FTN_PKT
/*
* Enable set limit for subscribe areas
*/
#define SUB_LIMIT
/*
* Enable overwrite hardlink if file already exist
*/
#undef OVERWRITEN_FECHO_FILE_TO_LINK
/*
* Enable lookup to INN active file
*/
#undef ACTIVE_LOOKUP
/*
* Recode all RFC headers
*/
#define RECODE_ALL_RFC
/*
* Enable use old batcher in runinc program
*/
#undef OLD_BATCHER
/*
* Enable use send_fidogate function in runinc program
*/
#undef USE_RUNINC_SFGT
/*
* Enable if you want use syslog for log messages
*/
#undef USE_SYSLOG
/*
* Enable old style tosting
*/
#undef OLD_TOSS
/*
* Fix bad year in pkt's
*/
#undef FIX_BAD_PKT_YEAR
/***** System dependend configuration ***************************************
*
* HAVE_FCNTL_LOCK Do you have file locking with fcntl()
*
* HAVE_GETTIMEOFDAY Do you have gettimeofday()?
*
* HAVE_TM_GMTOFF Does your (struct tm) have a tm_gmtoff field?
*
* HAVE_SYSEXITS_H Do you have sysexits.h?
*
* HAVE_TM_ZONE Does your (struct tm) have a tm_zone field?
*
* HAVE_STRFTIME Do you have strftime()?
*
* HAVE_TZNAME Do you have extern char *tzname[2]?
*
* HAVE_STRCASECMP Do you have strcasecmp(), strncasecmp()?
*
* HAVE_STRICMP Do you have stricmp(), strnicmp()?
*
*
* HAVE_STRERROR Do you have strerror()?
*
*
* DO_BINARY Open files in binary mode
*
* DO_DOSIFY DOSify program names for execution
*
*
* RECEIVED_BY_MAILER "Received: by NeXT.Mailer"
* Define this if your mail system always
* generates something like
* "Received: by NeXT.Mailer"
*
* HAVE_SPRINTF sprintf(), vsprintf() supported
*
* HAVE_SYSLOG syslogd, syslog(), vsyslog() supported
*
* HAVE_HARDLINKS hardlinks supported by link() and filesystem
*
* HAS_POSIX_REGEX POSIX regcomp(), regexec() etc. supported
*
* HAVE_SYS_VFS_H Do you have statfs() in sys/vfs.h
*
* HAVE_SYS_STATFS_H Do you have statfs() in sys/statfs.h
*
* HAVE_SYS_STATVFS_H Do you have statfs() in sys/statvfs.h
*
* HAVE_SYS_MOUNT_H Do you have statfs() in sys/mount.h
*/
/***** Unix and derivates ***************************************************/
# undef HAVE_FCNTL_H
# undef HAVE_GETTIMEOFDAY
# undef HAVE_SYSEXITS_H
# undef HAVE_STRCASECMP
# undef HAVE_STRICMP
# undef HAVE_STRERROR
# undef HAVE_SPRINTF
# undef HAVE_TM_GMTOFF
# undef HAVE_STRFTIME
# undef HAVE_TM_ZONE
# undef HAVE_TZNAME
#ifdef USE_SYSLOG
# undef HAVE_SYSLOG
#endif
# undef HAVE_SYS_MOUNT_H
# undef HAVE_SYS_PARAM_H
#if !defined(HAVE_SYS_MOUNT_H) && !defined(HAVE_SYS_PARAM_H)
# undef HAVE_SYS_VFS_H
# undef HAVE_SYS_STATFS_H
# undef HAVE_SYS_STATVFS_H
#endif
# undef HAVE_TIME_H
# undef HAVE_SYS_TIME_H
/* Standard config: POSIX UNIX */
# undef HAVE_LINK
/***** (MSDOS, OS/2, Windows) ************************************************/
#ifdef MSDOS /* MSDOS, DJGPP GNU gcc */
#define DO_DOSIFY
#endif
#ifdef __EMX__ /* OS/2, EMX GNU gcc */
#define DO_DOSIFY
#endif
#ifdef __CYGWIN32__ /* GNU-Win32 Beta 20.1 */
#define DO_DOSIFY
#endif
/* Reset some #define's based on system config */
#ifndef HAVE_LINK
# undef NFS_SAFE_LOCK_FILES
#endif
/***** End of configuration *************************************************/
/***** ^AMSGID/Message-ID configuration *************************************/
/*
* Standard FIDONET domain for Z1-6 Message-IDs
* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
* !!! DON'T TOUCH THIS, IF YOU'RE NOT ABSOLUTELY SURE WHAT YOU'RE DOING !!!
* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
*/
#define MSGID_FIDONET_DOMAIN ".fidonet.org"
/****************************************************************************
* *
* Think twice before changing anything below!!! *
* *
****************************************************************************/
/*
* Permissions
*/
#define PACKET_MODE 0600 /* Mode for outbound packets */
#define BSY_MODE 0644 /* Mode for BSY files */
#define FLO_MODE 0644 /* Mode for FLO files */
#define DIR_MODE 0755 /* Mode for directories */
#define FILE_DIR_MODE 0700 /* Mode for create fileecho directories */
#define CONF_MODE 0640 /* Mode for written config files */
/*
* RFC headers recognized at beginning of FTN message body
*/
#define FTN_RFC_HEADERS \
"From:", "Reply-To:", "UUCPFROM:", "To:", "Cc:", "Bcc:", \
"Newsgroups:", "Sender:", "Content-Transfer-Encoding:", \
"Header-To:", "Header-Cc:", "Subject:", "User-Agent:", \
"X-Mailer:", "X-Newsreader:", "In-Reply-To:", "References:"
/*
* RFC headers output for ^ARFC level 1 (partial RFC headers)
*/
#define RFC_LVL_1_HEADERS \
"Reply-To", "Message-ID", "References"
/*
* RFC headers output for ^ARFC level 3 (all RFC headers, excluding some)
*/
#define RFC_LVL_3_HEADERS \
"NNTP-Posting-Date", \
"NNTP-Posting-Host", \
"X-Trace", \
"X-Complaints-To", \
"Path", \
"Cache-Post-Path", \
"X-Cache", \
"Distribution", \
"Received", \
"Supersedes", \
"X-Flags", \
"X-MimeOLE", \
"X-Priority", \
"X-MSMail-Priority", \
"X-Accept-Language", \
"X-Mailer", \
"X-Newsreader", \
"X-Gateway", \
"User-Agent", \
"X-GateSoftware", \
"In-Reply-To", \
"From", \
"Reply-To", \
"Sender", \
"To", \
"CC", \
"X-Comment-To", \
"Newsgroups", \
"Subject", \
"Date", \
"Organization", \
"Lines", \
"Message-ID", \
"References", \
"Mime-Version", \
"Content-Type", \
"Content-Transfer-Encoding", \
"Xref", \
"X-Original-Date", \
"X-FTN-Kludge", \
"X-FTN-Tearline", \
"X-FTN-Origin", \
"X-FTN-Seen-By", \
"X-FTN-Path"
/*
* Open modes for fopen(), binary for system requiring this.
*/
#ifdef DO_BINARY
# define R_MODE "rb"
# define W_MODE "wb"
# define A_MODE "ab"
# define RP_MODE "r+b"
# define WP_MODE "w+b"
# define AP_MODE "a+b"
#else
# define R_MODE "r"
# define W_MODE "w"
# define A_MODE "a"
# define RP_MODE "r+"
# define WP_MODE "w+"
# define AP_MODE "a+"
#endif /**DO_BINARY**/
#define R_MODE_T "r"
#define W_MODE_T "w"
#define A_MODE_T "a"
#define RP_MODE_T "r+"
#define WP_MODE_T "w+"
#define AP_MODE_T "a+"
/*
* Format strings for dates
*/
#define DATE_LOG "%b %d %H:%M:%S"
#define DATE_DEFAULT "%a, %d %b %Y %H:%M:%S %O"
#define DATE_NEWS "%a, %d %b %Y %H:%M:%S %O"
#define DATE_MAIL "%a, %d %b %Y %H:%M:%S %O (%Z)"
#define DATE_FROM "%a %b %d %H:%M:%S %Y"
#define DATE_FTS_0001 "%d %b %y %H:%M:%S"
#define DATE_TICK_PATH "%a %b %d %H:%M:%S %Y %Z"
#ifndef FTS_VIA
#define DATE_VIA "%a %b %d %Y at %H:%M:%S %Z"
#else
//
// %a Abbr. weekly
// %b Abbr. Month
// %d Day of month
// %H Hour (local 24h)
// %G Hour (UTC 24h)
// %V Minute (UTC)
// %U "UTC" word
// %j Day of year
// %m Month
// %M Minutes (local)
// %S Second
// %w Day of week
// %x Date (Mon DD YYYY)
// %X Time (HH:MM:SS)
// %y Year (00-99)
// %Y Year (1900...)
// %Z Timezone (example: MSK)
// %N Time diff to TZUTC (if diff +03:30 - "+0330")
// %O Time diff to UTC (if diff +03:30 - "0330")
#define DATE_VIA "%Y%m%d.%H%M%S.%N"
#endif /* FTS_VIA */
#define DATE_SPLIT "%d %b %y %H:%M:%S"
/*
* Product code for packets generated by FIDOGATE, 0xfe is used because
* this code is reserved for new products, when the code numbers ran out.
*/
#define PRODUCT_CODE 0xfe
/*
* Hard limits compiled into FIDOGATE
*/
#define MAXADDRESS 32 /* Max. # of FTN address in CONFIG */
#undef AREAFIXMAXSTR
#define MAXMSGHEADRLEN 70 /* Max. length message field */
#define MAXDOSDRIVE 16 /* Max. # of DOS drives in CONFIG */
#ifndef MAXPATH /* Already defined by DJGPP */
# define MAXPATH 128 /* Max. size of path names */
#endif
#define MAXINETADDR 128 /* Max. size of an Internet address */
#define MAXUSERNAME 128 /* Max. size of an user name */
#define MAXOPENFILES 10 /* Max. # of open packet files used
* by ftntoss/ftnroute, this value
* should work on all supported
* systems, it can be incremented with
* ftntoss/ftnroute's -M option */
/* Define if using iconv */
#undef HAVE_ICONV
/* 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 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 strftime function. */
#undef HAVE_STRFTIME
/* Define if you have <sys/wait.h> that is POSIX.1 compatible. */
#undef HAVE_SYS_WAIT_H
/* Define if your struct tm has tm_zone. */
#undef HAVE_TM_ZONE
/* Define if you don't have tm_zone but do have the external array
tzname. */
#undef HAVE_TZNAME
/* Define if utime(file, NULL) sets file's timestamp to the present. */
#undef HAVE_UTIME_NULL
/* Define if you have the vprintf function. */
#undef HAVE_VPRINTF
/* Define if your C compiler doesn't accept -c and -o together. */
#undef NO_MINUS_C_MINUS_O
/* 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 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
#undef DEFAULT_MAILER
#undef HAVE_DLD
#undef HAVE_LIBDL
#undef HAVE_SHL_LOAD
/* Define to 1 if the `closedir' function returns void instead of `int'. */
#undef CLOSEDIR_VOID
/* 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 1 if using `alloca.c'. */
#undef C_ALLOCA
/* Do we have a decent regex library? */
#undef HAS_POSIX_REGEX
/* Define to 1 if you have the `alarm' function. */
#undef HAVE_ALARM
/* Define to 1 if you have `alloca', as a function or macro. */
#undef HAVE_ALLOCA
/* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
*/
#undef HAVE_ALLOCA_H
/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
*/
#undef HAVE_DIRENT_H
/* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */
#undef HAVE_DOPRNT
/* Define to 1 if you have the <fcntl.h> header file. */
#undef HAVE_FCNTL_H
/* Define to 1 if you have the `gettimeofday' function. */
#undef HAVE_GETTIMEOFDAY
/* Define to 1 if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H
/* Define to 1 if you have the <limits.h> header file. */
#undef HAVE_LIMITS_H
/* Define to 1 if your system has a working `malloc' function. */
#undef HAVE_MALLOC
/* Define to 1 if you have the `memchr' function. */
#undef HAVE_MEMCHR
/* Define to 1 if you have the <memory.h> header file. */
#undef HAVE_MEMORY_H
/* Define to 1 if you have the `memset' function. */
#undef HAVE_MEMSET
/* Define to 1 if you have the `mkdir' function. */
#undef HAVE_MKDIR
/* 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 `regcomp' function. */
#undef HAVE_REGCOMP
/* Do we have rxposix.h? */
#undef HAVE_RX
/* Define to 1 if `stat' has the bug that it succeeds when given the
zero-length file name argument. */
#undef HAVE_STAT_EMPTY_STRING_BUG
/* Define to 1 if you have the <stddef.h> header file. */
#undef HAVE_STDDEF_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 `strcasecmp' function. */
#undef HAVE_STRCASECMP
/* Define to 1 if you have the `strchr' function. */
#undef HAVE_STRCHR
/* Define to 1 if you have the `strerror' function. */
#undef HAVE_STRERROR
/* Define to 1 if you have the `strftime' function. */
#undef HAVE_STRFTIME
/* 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 `strncasecmp' function. */
#undef HAVE_STRNCASECMP
/* Define to 1 if you have the `strpbrk' function. */
#undef HAVE_STRPBRK
/* Define to 1 if you have the `strrchr' function. */
#undef HAVE_STRRCHR
/* Define to 1 if you have the `strspn' function. */
#undef HAVE_STRSPN
/* Define to 1 if you have the `strstr' function. */
#undef HAVE_STRSTR
/* Define to 1 if `tm_zone' is member of `struct tm'. */
#undef HAVE_STRUCT_TM_TM_ZONE
/* Define to 1 if you have the <syslog.h> header file. */
#undef HAVE_SYSLOG_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/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 to 1 if you have the <sys/param.h> header file. */
#undef HAVE_SYS_PARAM_H
/* Define to 1 if you have the <sys/statfs.h> header file. */
#undef HAVE_SYS_STATFS_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/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/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 <time.h> header file. */
#undef HAVE_TIME_H
/* Define to 1 if your `struct tm' has `tm_zone'. Deprecated, use
`HAVE_STRUCT_TM_TM_ZONE' instead. */
#undef HAVE_TM_ZONE
/* Define to 1 if you don't have `tm_zone' but do have the external array
`tzname'. */
#undef HAVE_TZNAME
/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
/* Define to 1 if you have the `utime' function. */
#undef HAVE_UTIME
/* 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 `vprintf' function. */
#undef HAVE_VPRINTF
/* Define to 1 if `lstat' dereferences a symlink specified with a trailing
slash. */
#undef LSTAT_FOLLOWS_SLASHED_SYMLINK
/* 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
/* 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
/* Define as the return type of signal handlers (`int' or `void'). */
#undef RETSIGTYPE
/* Define to 1 if the `setvbuf' function takes the buffering type as its
second argument and the buffer pointer as the third, as on System V before
release 3. */
#undef SETVBUF_REVERSED
/* 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 to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS
/* 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 to empty if `const' does not conform to ANSI C. */
#undef const
/* Define to `int' if <sys/types.h> does not define. */