Commit 4c11bf03 4c11bf0308d9cac61ec7ba99de62e834ffacc164 by Sergey Poznyakoff

*** empty log message ***

1 parent 4660da16
Showing 1 changed file with 0 additions and 114 deletions
1 /* GNU mailutils - a suite of utilities for electronic mail
2 Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
7 any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
17
18 /* Define if using libpam */
19 #undef USE_LIBPAM
20
21 /* Define if have snprintf() */
22 #undef HAVE_SNPRINTF
23
24 /* Define if struct tm has a tm_zone member */
25 #undef HAVE_TM_ZONE
26
27 /* Define if struct tm has a tm_isdst member */
28 #undef HAVE_TM_ISDST
29
30 /* Define if struct tm has a tm_gmtoff member */
31 #undef HAVE_TM_GMTOFF
32
33 /* Define to proper type when ino_t is not declared */
34 #undef ino_t
35
36 /* Define to proper type when dev_t is not declared */
37 #undef dev_t
38
39 /* Define if enable Posix Thread */
40 #undef WITH_PTHREAD
41
42 /* Define if using GNU DBM */
43 #undef WITH_GDBM
44
45 /* Define if using Berkeley DB2 */
46 #undef WITH_BDB2
47
48 /* Define if using NDBM */
49 #undef WITH_NDBM
50
51 /* Define if using OLD_DBM */
52 #undef WITH_OLD_DBM
53
54 /* Define if using libreadline */
55 #undef WITH_READLINE
56
57 /* Define when using GSSAPI */
58 #undef WITH_GSSAPI
59
60 /* Define when using Guile */
61 #undef WITH_GUILE
62
63 /* Define _REENTRANT when using threads. */
64 #undef _REENTRANT
65
66 /* Define the default loggin facility. */
67 #undef LOG_FACILITY
68
69 /* Define HAVE_MYSQL when using mysql */
70 #undef HAVE_MYSQL
71
72 /* Define if virtual domain support is enabled */
73 #undef USE_VIRTUAL_DOMAINS
74
75 /* Define if libc has obstack functions */
76 #undef HAVE_OBSTACK
77
78 /* Define to `int' if <sys/types.h> doesn't define. */
79 #undef ssize_t
80
81 #undef MU_CONF_MAILDIR
82
83 #undef PROGRAM_INVOCATION_NAME_DEFINED
84 #undef HAVE_PROGRAM_INVOCATION_NAME
85
86 @BOTTOM@
87
88 #ifdef HAVE_PATHS_H
89 # include <paths.h>
90 #endif
91
92 #ifndef _PATH_MAILDIR
93 # if (defined(sun) && defined(__svr4__)) || defined(__SVR4)
94 # define _PATH_MAILDIR "/var/mail"
95 # else
96 # define _PATH_MAILDIR "/usr/spool/mail"
97 # endif
98 #endif
99
100 #ifdef MU_CONF_MAILDIR
101 # define MU_PATH_MAILDIR MU_CONF_MAILDIR
102 #else
103 # define MU_PATH_MAILDIR _PATH_MAILDIR "/"
104 #endif
105
106 /* Newer versions of readline have rl_completion_matches */
107 #ifndef HAVE_RL_COMPLETION_MATCHES
108 # define rl_completion_matches completion_matches
109 #endif
110
111 #ifndef PROGRAM_INVOCATION_NAME_DECLARED
112 extern char *program_invocation_short_name;
113 extern char *program_invocation_name;
114 #endif