From df962e2075a742869b1f6529485cd5858391a24b Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Thu, 18 Sep 1997 11:24:27 +0000 Subject: [PATCH] Add `conf' directory. Add an `htmldir' installation directory too. Organization: Straylight/Edgeware From: mdw --- configure.in | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/configure.in b/configure.in index 2abf9f5..640ff3e 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ dnl -*-fundamental-*- dnl -dnl $Id: configure.in,v 1.8 1997/09/17 10:36:30 mdw Exp $ +dnl $Id: configure.in,v 1.9 1997/09/18 11:24:27 mdw Exp $ dnl dnl Source for auto configuration for `become' dnl @@ -28,7 +28,10 @@ dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. dnl----- Revision history --------------------------------------------------- dnl dnl $Log: configure.in,v $ -dnl Revision 1.8 1997/09/17 10:36:30 mdw +dnl Revision 1.9 1997/09/18 11:24:27 mdw +dnl Add `conf' directory. Add an `htmldir' installation directory too. +dnl +dnl Revision 1.8 1997/09/17 10:36:30 mdw dnl Remove `set.c'. No longer necessary. dnl dnl Revision 1.7 1997/09/09 18:18:41 mdw @@ -102,6 +105,12 @@ AC_ARG_WITH([etcdir], AC_SUBST(etcdir) AC_DEFINE_UNQUOTED(ETCDIR, "$etcdir") +AC_ARG_WITH([htmldir], +[ --with-htmldir=PATH set directory for HTML documentation + [default is PREFIX/html/become]], +[htmldir="$withval"], [htmldir="${prefix}/html/become"]) +AC_SUBST(htmldir) + dnl --- Debugging stuff --- AC_ARG_WITH(electric-fence, @@ -155,7 +164,7 @@ AC_CHECK_FUNCS(getrusage vtimes) dnl --- Done --- -AC_OUTPUT(Makefile src/Makefile manual/Makefile, +AC_OUTPUT(Makefile conf/Makefile src/Makefile manual/Makefile, [test -z "$CONFIG_HEADERS" || echo timestamp >stamp-h]) dnl----- That's all, folks -------------------------------------------------- -- [mdw]