chiark / gitweb /
Add `conf' directory. Add an `htmldir' installation directory too.
authormdw <mdw>
Thu, 18 Sep 1997 11:24:27 +0000 (11:24 +0000)
committermdw <mdw>
Thu, 18 Sep 1997 11:24:27 +0000 (11:24 +0000)
configure.in

index 2abf9f59c9f51473f198c5aa8cc91894aa776ba7..640ff3e8ac85be7361a338ab1c68d73c7acc6982 100644 (file)
@@ -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 --------------------------------------------------