X-Git-Url: https://git.distorted.org.uk/~mdw/become/blobdiff_plain/f36dccc8c1f37b926a68f7166d6080747a45560d..5b175cbbd74099aca651346b7ee9a8034f249217:/configure.in diff --git a/configure.in b/configure.in index 2abf9f5..abf937d 100644 --- a/configure.in +++ b/configure.in @@ -1,10 +1,10 @@ dnl -*-fundamental-*- dnl -dnl $Id: configure.in,v 1.8 1997/09/17 10:36:30 mdw Exp $ +dnl $Id: configure.in,v 1.11 1998/02/20 17:55:56 mdw Exp $ dnl dnl Source for auto configuration for `become' dnl -dnl (c) 1997 Mark Wooding +dnl (c) 1998 Mark Wooding dnl dnl----- Licensing notice --------------------------------------------------- @@ -28,7 +28,16 @@ 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.11 1998/02/20 17:55:56 mdw +dnl Fix default HTML directory. +dnl +dnl Revision 1.10 1998/01/12 16:45:21 mdw +dnl Fix copyright date. +dnl +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 @@ -60,10 +69,11 @@ dnl AC_INIT(src/icrypt.c) AC_CONFIG_HEADER(config.h) -PACKAGE=become VERSION=1.2-pre +PACKAGE=become +VERSION=1.2 +AC_DEFINE(VERSION, "1.2 (12 January 1998)") AC_SUBST(PACKAGE) AC_SUBST(VERSION) -AC_DEFINE(VERSION, "1.2-pre (17 September 1997)") dnl --- Check for compilers and things --- @@ -102,6 +112,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, @@ -127,10 +143,10 @@ AC_ARG_ENABLE(tracing, dnl --- Libraries --- mdw_CHECK_MANYLIBS(socket, socket,, - AC_MSG_ERROR([Socket library not found])) + [AC_MSG_ERROR([Socket library not found])]) mdw_CHECK_MANYLIBS(gethostbyname, resolv nsl,, - AC_MSG_ERROR([Resolver library not found])) + [AC_MSG_ERROR([Resolver library not found])]) mdw_CHECK_MANYLIBS(yp_all, nsl, AC_DEFINE(HAVE_YP)) @@ -155,7 +171,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 --------------------------------------------------