3 * $Id: acconfig.h,v 1.9 1999/05/04 16:25:42 mdw Exp $
5 * Default settings for `become' config.h
7 * (c) 1998 Mark Wooding
10 /*----- Licensing notice --------------------------------------------------*
12 * This file is part of `become'
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.
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.
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.
29 /*----- Revision history --------------------------------------------------*
31 * $Log: acconfig.h,v $
32 * Revision 1.9 1999/05/04 16:25:42 mdw
33 * Fixes for new version of automake.
35 * Revision 1.8 1998/04/23 13:08:42 mdw
36 * Fix formatting. Add new option to disable networking.
38 * Revision 1.7 1998/01/12 16:45:20 mdw
41 * Revision 1.6 1997/09/17 10:02:07 mdw
42 * Remove `@ signs -- autoconf mangles them too badly.
44 * Revision 1.5 1997/09/08 13:41:36 mdw
45 * Remove redundant entry for `HAVE_LIBEFENCE'.
47 * Revision 1.4 1997/09/05 11:45:17 mdw
48 * Add support for different login styles, and environment variable
49 * manipulation in a safe and useful way.
51 * Revision 1.3 1997/08/07 09:33:05 mdw
52 * Added `ElectricFence' support. Other minor cosmetic things.
54 * Revision 1.2 1997/08/04 10:24:19 mdw
55 * Sources placed under CVS control.
57 * Revision 1.1 1997/07/21 13:47:52 mdw
65 /*----- Variables set up by the configuration script ----------------------*/
68 /* My package name. */
69 #define PACKAGE "become"
71 /* My version number. */
72 #define VERSION "1.2-pre"
74 /* The `etcdir' contains configuration and state information. */
75 #define ETCDIR "/etc/become"
77 /* Define to be the size of an int. */
80 /* Default login style can be `l_preserve', `l_setuser' or `l_login'. */
81 #define DEFAULT_LOGIN_STYLE l_preserve
83 /* This is replaced by `/' by `configure' -- leave alone for DOSness. */
86 /* Define to turn off networking support. */
89 /* Debugging options. */
96 /* Define if we have YP support. */
99 /* Define to `int' if nothing defines. */
104 /*----- Some light processing on the configuration varaibles --------------*/
106 /* --- Important filenames based on the @ETCDIR@ --- */
108 #define file_KEY ETCDIR "/become.key"
109 #define file_PID ETCDIR "/become.pid"
110 #define file_RANDSEED ETCDIR "/become.random"
111 #define file_RULES ETCDIR "/become.conf"
112 #define file_SERVER ETCDIR "/become.server"
114 /* --- Find a suitable 32-bit type --- */
117 typedef unsigned long uint_32;
119 typedef unsigned int uint_32;
122 /* --- Debugging macros --- */
125 # define D(x) /* empty */
130 /*----- That's all, folks -------------------------------------------------*/