Replaced by Blowfish.
[become] / acconfig.h
1 /* -*-c-*-
2 *
3 * $Id: acconfig.h,v 1.6 1997/09/17 10:02:07 mdw Exp $
4 *
5 * Default settings for `become' config.h
6 *
7 * (c) 1997 Mark Wooding
8 */
9
10 /*----- Licensing notice --------------------------------------------------*
11 *
12 * This file is part of `become'
13 *
14 * `Become' is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * `Become' is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with `become'; if not, write to the Free Software Foundation,
26 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 */
28
29 /*----- Revision history --------------------------------------------------*
30 *
31 * $Log: acconfig.h,v $
32 * Revision 1.6 1997/09/17 10:02:07 mdw
33 * Remove `@ signs -- autoconf mangles them too badly.
34 *
35 * Revision 1.5 1997/09/08 13:41:36 mdw
36 * Remove redundant entry for `HAVE_LIBEFENCE'.
37 *
38 * Revision 1.4 1997/09/05 11:45:17 mdw
39 * Add support for different login styles, and environment variable
40 * manipulation in a safe and useful way.
41 *
42 * Revision 1.3 1997/08/07 09:33:05 mdw
43 * Added `ElectricFence' support. Other minor cosmetic things.
44 *
45 * Revision 1.2 1997/08/04 10:24:19 mdw
46 * Sources placed under CVS control.
47 *
48 * Revision 1.1 1997/07/21 13:47:52 mdw
49 * Initial revision
50 *
51 */
52
53 #ifndef CONFIG_H
54 #define CONFIG_H
55
56 /*----- Variables set up by the configuration script ----------------------*/
57 @TOP@
58
59 /* My version number. */
60 #define VERSION "1.2-pre"
61
62 /* The `etcdir' contains configuration and state information. */
63 #define ETCDIR "/etc/become"
64
65 /* Define to be the size of an int. */
66 #define SIZEOF_INT 4
67
68 /* Default login style can be `l_preserve', `l_setuser' or `l_login' */
69 #define DEFAULT_LOGIN_STYLE l_preserve
70
71 /* This is replaced by `/' by `configure' -- leave alone for DOSness. */
72 #define PATHSEP '\\'
73
74 /* Debugging options. */
75 #undef TRACING
76
77 #ifndef TEST_RIG
78 #undef NDEBUG
79 #endif
80
81 /* Define if we have YP support. */
82 #undef HAVE_YP
83
84 /* Define to `int' if nothing defines. */
85 #undef ssize_t
86
87 @BOTTOM@
88
89 /*----- Some light processing on the configuration varaibles --------------*/
90
91 /* --- Important filenames based on the @ETCDIR@ --- */
92
93 #define file_KEY ETCDIR "/become.key"
94 #define file_PID ETCDIR "/become.pid"
95 #define file_RANDSEED ETCDIR "/become.random"
96 #define file_RULES ETCDIR "/become.conf"
97 #define file_SERVER ETCDIR "/become.server"
98
99 /* --- Find a suitable 32-bit type --- */
100
101 #if SIZEOF_INT < 4
102 typedef unsigned long uint_32;
103 #else
104 typedef unsigned int uint_32;
105 #endif
106
107 /* --- Debugging macros --- */
108
109 #ifdef NDEBUG
110 # define D(x) /* empty */
111 #else
112 # define D(x) x
113 #endif
114
115 /*----- That's all, folks -------------------------------------------------*/
116
117 #endif