From: mdw Date: Thu, 18 Sep 1997 11:24:27 +0000 (+0000) Subject: Add `conf' directory. Add an `htmldir' installation directory too. X-Git-Tag: 1.3.3~72 X-Git-Url: https://git.distorted.org.uk/~mdw/become/commitdiff_plain/df962e2075a742869b1f6529485cd5858391a24b?hp=3473f763bf7e1e1c97a3062aafa19c93bb7f9b15 Add `conf' directory. Add an `htmldir' installation directory too. --- 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 --------------------------------------------------