ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Convert-UUlib/uulib/acconfig.h
Revision: 1.6
Committed: Thu Dec 10 22:49:15 2020 UTC (3 years, 5 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.5: +4 -4 lines
Log Message:
remove eol whitespace

File Contents

# User Rev Content
1 root 1.1
2     /*
3     * needed for auto configuration
4 root 1.6 * $Id$
5 root 1.1 */
6    
7     /*
8     * If your system is kinda special
9     */
10     #undef SYSTEM_DOS
11     #undef SYSTEM_QUICKWIN
12     #undef SYSTEM_WINDLL
13     #undef SYSTEM_OS2
14    
15     /*
16     * If your system has stdin/stdout/stderr
17     */
18     #undef HAVE_STDIO
19    
20     /*
21     * how to declare functions that are exported from the UU library
22     */
23     #undef UUEXPORT
24    
25     /*
26     * how to declare functions that are exported from the fptools library
27     */
28     #undef TOOLEXPORT
29    
30     /*
31     * define if your compiler supports function prototypes
32     */
33     #undef PROTOTYPES
34 root 1.2
35     /*
36     * define if your system has chmod(2)
37     */
38     #undef HAVE_CHMOD
39    
40     /*
41     * define if your system has umask(2)
42     */
43     #undef HAVE_UMASK
44 root 1.3
45     /*
46     * define if your system has mkstemp
47     */
48     #undef HAVE_MKSTEMP
49 root 1.1
50     /*
51     * Replacement functions.
52 root 1.5 * #define strerror _FP_strerror
53     * #define tempnam _FP_tempnam
54 root 1.1 * if you don't have these functions
55     */
56     #undef strerror
57     #undef tempnam
58    
59 root 1.6 /*
60 root 1.1 * your mailing program. full path and the necessary parameters.
61     * the recepient address is added to the command line (with a leading
62     * space) without any further options
63     */
64     #undef PROG_MAILER
65    
66 root 1.6 /*
67 root 1.1 * define if the mailer needs to have the subject set on the command
68     * line with -s "Subject". Preferredly, we send the subject as a header.
69     */
70     #undef MAILER_NEEDS_SUBJECT
71    
72 root 1.6 /*
73 root 1.1 * define if posting is enabled. Do not edit.
74     */
75     #undef HAVE_NEWS
76    
77     /*
78     * your local news posting program. full path and parameters, so that
79     * the article and all its headers are read from stdin
80     */
81     #undef PROG_INEWS
82