Debianization.
[become] / acconfig.h
CommitLineData
8ddbfc62 1/* -*-c-*-
2 *
b0f66028 3 * $Id: acconfig.h,v 1.11 2003/11/29 23:39:16 mdw Exp $
8ddbfc62 4 *
5 * Default settings for `become' config.h
6 *
c758e654 7 * (c) 1998 Mark Wooding
8ddbfc62 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 $
b0f66028 32 * Revision 1.11 2003/11/29 23:39:16 mdw
33 * Debianization.
34 *
f60a3434 35 * Revision 1.10 2003/10/12 00:14:44 mdw
36 * Major overhaul. Now uses DSA signatures rather than the bogus symmetric
37 * encrypt-and-hope thing. Integrated with mLib and Catacomb.
38 *
b6ea915c 39 * Revision 1.9 1999/05/04 16:25:42 mdw
40 * Fixes for new version of automake.
41 *
42 * Revision 1.8 1998/04/23 13:08:42 mdw
66872778 43 * Fix formatting. Add new option to disable networking.
44 *
c758e654 45 * Revision 1.7 1998/01/12 16:45:20 mdw
46 * Fix copyright date.
47 *
48 * Revision 1.6 1997/09/17 10:02:07 mdw
ecc52b4c 49 * Remove `@ signs -- autoconf mangles them too badly.
50 *
51 * Revision 1.5 1997/09/08 13:41:36 mdw
8bb92a83 52 * Remove redundant entry for `HAVE_LIBEFENCE'.
53 *
54 * Revision 1.4 1997/09/05 11:45:17 mdw
387501ae 55 * Add support for different login styles, and environment variable
56 * manipulation in a safe and useful way.
57 *
c1d1774a 58 * Revision 1.3 1997/08/07 09:33:05 mdw
59 * Added `ElectricFence' support. Other minor cosmetic things.
60 *
03f996bd 61 * Revision 1.2 1997/08/04 10:24:19 mdw
8ddbfc62 62 * Sources placed under CVS control.
63 *
64 * Revision 1.1 1997/07/21 13:47:52 mdw
65 * Initial revision
66 *
67 */
68
69#ifndef CONFIG_H
70#define CONFIG_H
71
72/*----- Variables set up by the configuration script ----------------------*/
73@TOP@
74
b6ea915c 75/* My package name. */
76#define PACKAGE "become"
77
8ddbfc62 78/* My version number. */
c1d1774a 79#define VERSION "1.2-pre"
8ddbfc62 80
81/* The `etcdir' contains configuration and state information. */
c1d1774a 82#define ETCDIR "/etc/become"
8ddbfc62 83
b0f66028 84/* The `pidfile' is where Become puts its process id if it runs as a
85 * daemon. */
86#define file_PID "/etc/become/become.pid"
87
66872778 88/* Default login style can be `l_preserve', `l_setuser' or `l_login'. */
387501ae 89#define DEFAULT_LOGIN_STYLE l_preserve
90
8ddbfc62 91/* This is replaced by `/' by `configure' -- leave alone for DOSness. */
92#define PATHSEP '\\'
93
66872778 94/* Define to turn off networking support. */
95#undef NONETWORK
96
8ddbfc62 97/* Debugging options. */
f60a3434 98#undef NTRACE
8ddbfc62 99
100#ifndef TEST_RIG
101#undef NDEBUG
102#endif
103
104/* Define if we have YP support. */
105#undef HAVE_YP
106
107/* Define to `int' if nothing defines. */
108#undef ssize_t
109
110@BOTTOM@
111
f60a3434 112/*----- Some light processing on the configuration variables --------------*/
8ddbfc62 113
114/* --- Important filenames based on the @ETCDIR@ --- */
115
116#define file_KEY ETCDIR "/become.key"
f60a3434 117#define file_PUBKEY ETCDIR "/become.pubkey"
8ddbfc62 118#define file_RULES ETCDIR "/become.conf"
119#define file_SERVER ETCDIR "/become.server"
120
8ddbfc62 121/* --- Debugging macros --- */
122
123#ifdef NDEBUG
124# define D(x) /* empty */
125#else
126# define D(x) x
127#endif
128
129/*----- That's all, folks -------------------------------------------------*/
130
131#endif