From f81d049a466681c29c348ec6f8a7e3ad7ffc8323 Mon Sep 17 00:00:00 2001 From: mdw Date: Wed, 20 Aug 1997 16:10:56 +0000 Subject: [PATCH] Lowercase `mdw_' prefixes to macros. Add a `--with-etcdir=PATH' option. Update `stamp-h' as required by the Automake docs (silly me). --- configure.in | 35 ++++++++++++++++++++++------------- 1 file changed, 22 insertions(+), 13 deletions(-) diff --git a/configure.in b/configure.in index 498d5b5..69b0582 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ dnl -*-fundamental-*- dnl -dnl $Id: configure.in,v 1.3 1997/08/07 09:34:32 mdw Exp $ +dnl $Id: configure.in,v 1.4 1997/08/20 16:10:56 mdw Exp $ dnl dnl Source for auto configuration for `become' dnl @@ -28,8 +28,14 @@ dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. dnl----- Revision history --------------------------------------------------- dnl dnl $Log: configure.in,v $ +dnl Revision 1.4 1997/08/20 16:10:56 mdw +dnl Lowercase `mdw_' prefixes to macros. Add a `--with-etcdir=PATH' +dnl option. Update `stamp-h' as required by the Automake docs (silly +dnl me). +dnl dnl Revision 1.3 1997/08/07 09:34:32 mdw -dnl Added `ElectricFence' support, and support for the `deep' package structure. +dnl Added `ElectricFence' support, and support for the `deep' package +dnl structure. dnl dnl Revision 1.2 1997/08/04 10:24:21 mdw dnl Sources placed under CVS control. @@ -61,13 +67,13 @@ fi dnl --- Libraries --- -MDW_CHECK_MANYLIBS(socket, socket,, +mdw_CHECK_MANYLIBS(socket, socket,, AC_MSG_ERROR([Socket library not found])) -MDW_CHECK_MANYLIBS(gethostbyname, resolv nsl,, +mdw_CHECK_MANYLIBS(gethostbyname, resolv nsl,, AC_MSG_ERROR([Resolver library not found])) -MDW_CHECK_MANYLIBS(yp_all, nsl, AC_DEFINE(HAVE_YP)) +mdw_CHECK_MANYLIBS(yp_all, nsl, AC_DEFINE(HAVE_YP)) dnl --- Types --- @@ -87,6 +93,15 @@ dnl --- Check for some useful functions --- AC_CHECK_FUNCS(getrusage vtimes) +dnl --- Set configuration directory --- + +AC_ARG_WITH([etcdir], +[ --with-etcdir=PATH set directory for configuration and key files + [default is /etc/become]], +[etcdir="$withval"], [etcdir="/etc/become"]) +AC_SUBST(etcdir) +AC_DEFINE_UNQUOTED(ETCDIR, "$etcdir") + dnl --- Debugging stuff --- AC_ARG_WITH(electric-fence, @@ -109,15 +124,9 @@ AC_ARG_ENABLE(tracing, fi], AC_DEFINE(TRACING)) -dnl --- Define where things get put --- - -mdw_save_prefix="$prefix" -test "$prefix" = "NONE" && prefix="$ac_default_prefix" -AC_DEFINE_UNQUOTED(ETCDIR, "`eval echo ${sysconfdir}`") -prefix="$mdw_save_prefix" - dnl --- Done --- -AC_OUTPUT(Makefile src/Makefile manual/Makefile) +AC_OUTPUT(Makefile src/Makefile manual/Makefile, + [test -z "$CONFIG_HEADERS" || echo timestamp >stamp-h]) dnl----- That's all, folks -------------------------------------------------- -- 2.11.0