From: des Date: Wed, 22 Feb 2006 16:49:36 +0000 (+0000) Subject: Enable the Id keyword. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7af1c4f2cebcff9dfcf0465ea499a53d0358c00a;p=varnish Enable the Id keyword. git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@14 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-doc/configure.ac b/varnish-doc/configure.ac new file mode 100644 index 00000000..0c7b1e1c --- /dev/null +++ b/varnish-doc/configure.ac @@ -0,0 +1,31 @@ +# $Id$ + +AC_PREREQ(2.59) +AC_COPYRIGHT([Copyright (c) 2006 Linpro AS]) +AC_REVISION([$Id$]) +AC_INIT([Varnish-Documentation], [0.1], [varnish-dev@projects.linpro.no]) +AC_CONFIG_SRCDIR([share/bibliography.xml]) + +AC_CANONICAL_SYSTEM + +AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION) + +# Checks for programs. +AC_CHECK_PROGS(XMLLINT, xmllint, + AC_MSG_ERROR([Can't proceed without xmllint])) +AC_CHECK_PROGS(XSLTPROC, xsltproc, + AC_MSG_ERROR([Can't proceed without xsltproc])) +AC_PROG_INSTALL +AC_PROG_MAKE_SET + +AC_ARG_WITH(docbook-xsl, + AS_HELP_STRING([--with-docbook-xsl=path],[use -Wall (default is NO)]), + AC_SUBST(DOCBOOK_XSL, "$withval"), + AC_MSG_ERROR([Can't proceed without DocBook stylesheets])) + +AC_CONFIG_FILES([ + Makefile + en/Makefile + en/varnish-specification/Makefile +]) +AC_OUTPUT