Imported Upstream version 3.3.2
[debian/amanda] / config / macro-archive / docbook-xslt.m4
1 ##### http://autoconf-archive.cryp.to/ac_check_docbook_xslt.html
2 #
3 # SYNOPSIS
4 #
5 #   AC_CHECK_DOCBOOK_XSLT([xslt-version])
6 #
7 # DESCRIPTION
8 #
9 #   Check for access to docbook stylesheets of a particular revision.
10 #
11 #   This macro can be used for multiple versions within the same script.
12 #
13 #   Input:
14 #    $1 is the version of docbook to search for; default 'current'
15 #   Output:
16 #    $HAVE_DOCBOOK_XSLT_VERS will be set to 'yes' or 'no' depending
17 #    on the results of the test, where VERS is $1, with '_' substituted
18 #    for '.'  $HAVE_DOCBOOK_XSLT will also be set to the same value.
19 #
20 #   Example:
21 #    AC_CHECK_DOCBOOK_XSLT(1.72.0)
22 #    if test "x$HAVE_DOCBOOK_XSLT_1_72_0" = "xyes"; then
23 #      ..
24 #
25 # LAST MODIFICATION
26 #
27 #   2007-06-28
28 #
29 # AUTHOR
30 #
31 #   Dustin J. Mitchell <dustin@zmanda.com>
32 #
33 # COPYRIGHT
34 #
35 #   Copyright (c) 2007-2012 Zmanda, Inc.  All Rights Reserved.
36 #  
37 #   This program is free software; you can redistribute it and/or modify it
38 #   under the terms of the GNU General Public License version 2 as published
39 #   by the Free Software Foundation.
40 #  
41 #   This program is distributed in the hope that it will be useful, but
42 #   WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
43 #   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
44 #   for more details.
45 #  
46 #   You should have received a copy of the GNU General Public License along
47 #   with this program; if not, write to the Free Software Foundation, Inc.,
48 #   59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
49 #
50 #   This special exception to the GPL applies to versions of the
51 #   Autoconf Macro released by the Autoconf Macro Archive. When you
52 #   make and distribute a modified version of the Autoconf Macro, you
53 #   may extend this special exception to the GPL to apply to your
54 #   modified version as well.
55 #
56 #   Contact information: Zmanda Inc., 465 S. Mathilda Ave., Suite 300
57 #   Sunnyvale, CA 94086, USA, or: http://www.zmanda.com
58
59 AC_DEFUN([AC_CHECK_DOCBOOK_XSLT],
60 [
61     AC_REQUIRE([AC_PROG_XSLTPROC])
62
63     dnl define a temporary variable for the version, so this macro can be
64     dnl used with multiple versions
65     define([_VERS], $1)
66     ifelse(_VERS, [], [define([_VERS], [current])])
67
68     dnl define variable names ending in _VERS which will actually have the
69     dnl version number as a suffix
70     define([ac_cv_docbook_xslt_VERS], patsubst([ac_cv_docbook_xslt_]_VERS, [\.], [_]))
71     define([HAVE_DOCBOOK_XSLT_VERS], patsubst([HAVE_DOCBOOK_XSLT_]_VERS, [\.], [_]))
72
73     AC_CACHE_CHECK([for Docbook XSLT version ]_VERS, [ac_cv_docbook_xslt_VERS],
74     [
75         ac_cv_docbook_xslt_VERS=no
76         if test -n "$XSLTPROC"; then
77             echo "Trying '$XSLTPROC $XSLTPROC_FLAGS http://docbook.sourceforge.net/release/xsl/_VERS/xhtml/docbook.xsl'" >&AS_MESSAGE_LOG_FD
78             $XSLTPROC $XSLTPROC_FLAGS http://docbook.sourceforge.net/release/xsl/_VERS/xhtml/docbook.xsl >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
79
80             if test "$?" = 0; then
81                 ac_cv_docbook_xslt_VERS=yes
82             fi
83         fi
84     ])
85
86     HAVE_DOCBOOK_XSLT_VERS="$ac_cv_docbook_xslt_VERS"
87     HAVE_DOCBOOK_XSLT="$HAVE_DOCBOOK_XSLT_VERS"
88
89     dnl clean up m4 namespace
90     undefine([_VERS])
91     undefine([ac_cv_docbook_xslt_VERS])
92     undefine([HAVE_DOCBOOK_XSLT_VERS])
93 ])