configure.ac revision 972599cf
1dnl  Copyright 2005 Red Hat, Inc.
2dnl 
3dnl  Permission to use, copy, modify, distribute, and sell this software
4dnl  and its documentation for any purpose is hereby granted without fee,
5dnl  provided that the above copyright notice appear in all copies and
6dnl  that both that copyright notice and this permission notice appear in
7dnl  supporting documentation, and that the name of Red Hat not be used in
8dnl  advertising or publicity pertaining to distribution of the software
9dnl  without specific, written prior permission.  Red Hat makes no
10dnl  representations about the suitability of this software for any
11dnl  purpose.  It is provided "as is" without express or implied warranty.
12dnl 
13dnl  RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
14dnl  INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
15dnl  NO EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
16dnl  CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
17dnl  OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
18dnl  OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE
19dnl  USE OR PERFORMANCE OF THIS SOFTWARE.
20dnl
21dnl  Process this file with autoconf to create configure.
22
23# Initialize Autoconf
24AC_PREREQ([2.60])
25AC_INIT([xorg-docs],
26        [1.7],
27        [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
28        [xorg-docs])
29AC_CONFIG_SRCDIR([Makefile.am])
30
31# Initialize Automake
32AM_INIT_AUTOMAKE([foreign dist-bzip2])
33AM_MAINTAINER_MODE
34
35# Require xorg-macros minimum of 1.12 for XORG_WITH_XSLTPROC
36m4_ifndef([XORG_MACROS_VERSION],
37          [m4_fatal([must install xorg-macros 1.12 or later before running autoconf/autogen])])
38XORG_MACROS_VERSION(1.12)
39XORG_DEFAULT_OPTIONS
40XORG_ENABLE_DOCS
41XORG_ENABLE_SPECS
42XORG_WITH_XMLTO(0.0.22)
43XORG_WITH_XSLTPROC
44XORG_WITH_FOP
45XORG_CHECK_SGML_DOCTOOLS(1.8)
46
47AC_CONFIG_FILES([Makefile
48		 general/Makefile
49		 general/fonts/Makefile
50		 general/input/Makefile
51		 general/graphics/Makefile
52		 general/platforms/Makefile
53		 man/Makefile
54		 specs/Makefile
55		 specs/CTEXT/Makefile
56		 specs/ICCCM/Makefile
57		 specs/Xext/Makefile
58		 specs/XLFD/Makefile
59		 specs/Xserver/Makefile])
60AC_OUTPUT
61