Fixing for new autotools.
[become] / acconfig.h
diff --git a/acconfig.h b/acconfig.h
deleted file mode 100644 (file)
index 607f3f0..0000000
+++ /dev/null
@@ -1,91 +0,0 @@
-/* -*-c-*-
- *
- * $Id: acconfig.h,v 1.12 2004/04/08 01:36:20 mdw Exp $
- *
- * Default settings for `become' config.h
- *
- * (c) 1998 Mark Wooding
- */
-
-/*----- Licensing notice --------------------------------------------------*
- *
- * This file is part of `become'
- *
- * `Become' is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * `Become' is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with `become'; if not, write to the Free Software Foundation,
- * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#ifndef CONFIG_H
-#define CONFIG_H
-
-/*----- Variables set up by the configuration script ----------------------*/
-@TOP@
-
-/* My package name.  */
-#define PACKAGE "become"
-
-/* My version number.  */
-#define VERSION "1.2-pre"
-
-/* The `etcdir' contains configuration and state information.  */
-#define ETCDIR "/etc/become"
-
-/* The `pidfile' is where Become puts its process id if it runs as a
- * daemon. */
-#define file_PID "/etc/become/become.pid"
-
-/* Default login style can be `l_preserve', `l_setuser' or `l_login'.  */
-#define DEFAULT_LOGIN_STYLE l_preserve
-
-/* This is replaced by `/' by `configure' -- leave alone for DOSness.  */
-#define PATHSEP '\\'
-
-/* Define to turn off networking support.  */
-#undef NONETWORK
-
-/* Debugging options. */
-#undef NTRACE
-
-#ifndef TEST_RIG
-#undef NDEBUG
-#endif
-
-/* Define if we have YP support.  */
-#undef HAVE_YP
-
-/* Define to `int' if nothing defines.  */
-#undef ssize_t
-
-@BOTTOM@
-
-/*----- Some light processing on the configuration variables --------------*/
-
-/* --- Important filenames based on the @ETCDIR@ --- */
-
-#define file_KEY ETCDIR "/become.key"
-#define file_PUBKEY ETCDIR "/become.pubkey"
-#define file_RULES ETCDIR "/become.conf"
-#define file_SERVER ETCDIR "/become.server"
-
-/* --- Debugging macros --- */
-
-#ifdef NDEBUG
-#  define D(x) /* empty */
-#else
-#  define D(x) x
-#endif
-
-/*----- That's all, folks -------------------------------------------------*/
-
-#endif