diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2010-06-26 13:06:22 -0400 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2010-06-26 13:08:41 -0400 |
commit | 7761846c7fd97f15d7207e1b9fd9d42c9e58a0c4 (patch) | |
tree | d258ef4d1018239713e0b7a86b52a78e489f3c22 /configure.ac | |
parent | 4f557036253ac5750576c88e5b9a86759a49d247 (diff) |
doc: replace groff input format with docbook xml format
Initial version of xtrans docbook xml.
Requires util-macros 1.10
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index 1f22f0f..f72d758 100644 --- a/configure.ac +++ b/configure.ac @@ -25,14 +25,15 @@ AC_INIT(xtrans, [1.2.5], [https://bugs.freedesktop.org/enter_bug.cgi?product=xor AM_INIT_AUTOMAKE([foreign dist-bzip2]) AM_MAINTAINER_MODE -# Require xorg-macros: XORG_WITH_GROFF for HAVE_GROFF_HTML +# Require xorg-macros minimum of 1.10 for DocBook XML documentation m4_ifndef([XORG_MACROS_VERSION], - [m4_fatal([must install xorg-macros 1.9 or later before running autoconf/autogen])]) -XORG_MACROS_VERSION(1.9) + [m4_fatal([must install xorg-macros 1.10 or later before running autoconf/autogen])]) +XORG_MACROS_VERSION(1.10) XORG_DEFAULT_OPTIONS XORG_ENABLE_DOCS -XORG_WITH_GROFF -XORG_WITH_PS2PDF +XORG_WITH_XMLTO(0.0.20) +XORG_WITH_FOP +XORG_CHECK_SGML_DOCTOOLS(1.5) # Because xtrans is included into other modules rather than being linked # with, these defines have to be added to the cflags line @@ -53,4 +54,5 @@ sticky_bit_define="-DHAS_STICKY_DIR_BIT" AC_SUBST(sticky_bit_define) AC_OUTPUT([Makefile + doc/Makefile xtrans.pc]) |