diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2009-08-04 22:04:37 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2009-08-04 22:04:37 +0000 |
commit | c29d7f02c27c72b01c4fa90e24c4d33b5078a169 (patch) | |
tree | e535aca89fdc0513c3624f704f81b9130b3838f9 /src | |
parent | b1732111f233bbb72788e92a627242ec28a85631 (diff) | |
download | postgresql-c29d7f02c27c72b01c4fa90e24c4d33b5078a169.tar.gz postgresql-c29d7f02c27c72b01c4fa90e24c4d33b5078a169.zip |
Use DocBook XSL stylesheets for man page building
This switches the man page building process to use the DocBook XSL stylesheet
toolchain. The previous targets for Docbook2X are removed. configure has been
updated to look for the new tools. The Documentation appendix contains the
new build instructions. There are also a few isolated tweaks in the
documentation to improve places that came out strangely in the man pages.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.global.in | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/src/Makefile.global.in b/src/Makefile.global.in index 763bdc004a0..04f3b1a7dd8 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -1,5 +1,5 @@ # -*-makefile-*- -# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.254 2009/06/23 03:46:00 tgl Exp $ +# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.255 2009/08/04 22:04:37 petere Exp $ #------------------------------------------------------------------------------ # All PostgreSQL makefiles include this file and use the variables it sets, @@ -187,11 +187,6 @@ TCL_SHLIB_LD_LIBS = @TCL_SHLIB_LD_LIBS@ PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ PTHREAD_LIBS = @PTHREAD_LIBS@ -have_docbook = @have_docbook@ -DOCBOOKSTYLE = @DOCBOOKSTYLE@ -COLLATEINDEX = @COLLATEINDEX@ -DOCBOOK2MAN = @DOCBOOK2MAN@ - ########################################################################## # @@ -298,9 +293,13 @@ STRIP_SHARED_LIB = @STRIP_SHARED_LIB@ # Documentation -JADE = @JADE@ -NSGMLS = @NSGMLS@ -SGMLSPL = @SGMLSPL@ +have_docbook = @have_docbook@ +COLLATEINDEX = @COLLATEINDEX@ +DOCBOOKSTYLE = @DOCBOOKSTYLE@ +JADE = @JADE@ +NSGMLS = @NSGMLS@ +OSX = @OSX@ +XSLTPROC = @XSLTPROC@ # Code coverage |