mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
bcb40631df
- Configure now prints a summary of what output formats the docs can be built
in using the utilities that it found and prints the names of the missing
utilities for the formats that can't be built.
- Add 'make all' that builds all the docs that can be built using the
utilities that were found (the current 'make all' has been renamed to
'make help' and is still the first target in the Makefile)
- Add a few utility functions for autoconf
(This used to be commit 48cc8b693f
)
70 lines
2.1 KiB
Plaintext
70 lines
2.1 KiB
Plaintext
AC_INIT(entities/global.entities)
|
|
|
|
PAPERSIZE=""
|
|
DUPLICATE_ULINKS=""
|
|
|
|
DOCROP="0"
|
|
|
|
AC_ARG_ENABLE(crop,
|
|
[ --enable-crop Whether to use a crop template],
|
|
[ test "$withval" && DOCROP="1" ])
|
|
|
|
PAPERSIZE="a4paper"
|
|
|
|
AC_ARG_WITH(papersize,
|
|
[ --with-papersize Specify papersize (a4paper,letter) ],
|
|
[ test "$withval" && PAPERSIZE="$withval" ])
|
|
|
|
FONTSIZE="10.5"
|
|
|
|
AC_ARG_WITH(fontsize,
|
|
[ --with-fontsize Specify the fontsize in points (default: 10.5) ],
|
|
[ test "$withval" && FONTSIZE="$withval" ])
|
|
|
|
|
|
DOC_BUILD_DATE=`date '+%d-%m-%Y'`
|
|
AC_SUBST(DOC_BUILD_DATE)
|
|
AC_SUBST(PAPERSIZE)
|
|
AC_SUBST(DUPLICATE_ULINKS)
|
|
AC_SUBST(FONTSIZE)
|
|
AC_SUBST(DOCROP)
|
|
|
|
DOCS_TARGET_REQUIRE_PROGRAM(XSLTPROC, xsltproc, ALL)
|
|
DOCS_TARGET_REQUIRE_PROGRAM(RM, rm, ALL)
|
|
DOCS_TARGET_REQUIRE_PROGRAM(MAKEINDEX, makeindex, LATEX)
|
|
DOCS_TARGET_REQUIRE_PROGRAM(WGET, wget, LATEX)
|
|
DOCS_TARGET_REQUIRE_PROGRAM(PDFLATEX, pdflatex, PDF)
|
|
DOCS_TARGET_REQUIRE_PROGRAM(EPSTOPDF, epstopdf, PDF)
|
|
DOCS_TARGET_REQUIRE_PROGRAM(PNGTOPNM, pngtopnm, PS)
|
|
DOCS_TARGET_REQUIRE_PROGRAM(PNMTOPS, pnmtops, PS)
|
|
DOCS_TARGET_REQUIRE_PROGRAM(LATEX, latex, PS)
|
|
DOCS_TARGET_REQUIRE_PROGRAM(DVIPS, dvips, PS)
|
|
DOCS_TARGET_REQUIRE_PROGRAM(PLUCKERBUILD, plucker-build, PLUCKER)
|
|
DOCS_TARGET_REQUIRE_PROGRAM(XMLTO, xmlto, TXT)
|
|
DOCS_TARGET_REQUIRE_PROGRAM(PERL, perl, UNDOCUMENTED)
|
|
|
|
AC_MSG_RESULT([])
|
|
AC_MSG_RESULT([Summary:])
|
|
AC_MSG_RESULT([--------------])
|
|
|
|
|
|
DOCS_DEFINE_TARGET(ALL, [], [base requirements], [])
|
|
DOCS_DEFINE_TARGET(LATEX, ALL, [LaTeX versions], [tex])
|
|
DOCS_DEFINE_TARGET(PDF, LATEX, [PDF versions], [pdf])
|
|
DOCS_DEFINE_TARGET(PS, LATEX, [PostScript versions], [ps])
|
|
DOCS_DEFINE_TARGET(HTML, ALL, [HTML versions], [html])
|
|
DOCS_DEFINE_TARGET(MANPAGES, ALL, [manpages], [manpages])
|
|
DOCS_DEFINE_TARGET(PLUCKER, HTML, [plucker versions], [plucker])
|
|
DOCS_DEFINE_TARGET(UNDOCUMENTED, MANPAGES, [list of undocumented options], [undocumented])
|
|
DOCS_DEFINE_TARGET(TXT, ALL, [text versions], [txt])
|
|
|
|
if test x"$TARGETS" = x; then
|
|
AC_MSG_ERROR([You won't be able to build any of the docs])
|
|
else
|
|
AC_MSG_RESULT([You will be able to build: $TARGETS])
|
|
fi
|
|
|
|
AC_SUBST(TARGETS)
|
|
|
|
AC_OUTPUT( Makefile settings.xsl )
|