diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-06-13 10:23:53 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:46:46 -0500 |
commit | 7639ec02141091657eb2eb0defc46b4b3cf09a73 (patch) | |
tree | 4d8cce2deff45d527668e49db78a71a8c0f92070 /docs/configure.in | |
parent | 8a5498d3bfa78923cbb4e6c79e152431223a4f86 (diff) | |
download | samba-7639ec02141091657eb2eb0defc46b4b3cf09a73.tar.gz samba-7639ec02141091657eb2eb0defc46b4b3cf09a73.tar.bz2 samba-7639ec02141091657eb2eb0defc46b4b3cf09a73.zip |
- Fix a couple of LaTeX escaping bugs.
- Fix urls in footnotes.
- Cleanup developers docs.
(This used to be commit d55b9f72ffbd0421cbde67915d9f275cc8956ed7)
Diffstat (limited to 'docs/configure.in')
-rw-r--r-- | docs/configure.in | 32 |
1 files changed, 2 insertions, 30 deletions
diff --git a/docs/configure.in b/docs/configure.in index a6d975494e..69dd067e2e 100644 --- a/docs/configure.in +++ b/docs/configure.in @@ -1,39 +1,11 @@ -AC_INIT(settings.xsl.in) - -PAPERSIZE="" -ULINK_IN_FOOTNOTE="0" -ULINK_SHOW="1" - -DOCROP="0" +AC_INIT(xslt/latex.xsl) AC_ARG_WITH(samba-sources, [ --with-samba-sources=DIR Specify path to Samba sources], [ test "$withval" && SPECIFIED_SOURCEDIR="$withval" ]) -AC_ARG_ENABLE(crop, -[ --enable-crop Whether to use a crop template], -[ test "$enableval" && DOCROP="1" ]) - -PAPERSIZE="a4paper" - -AC_ARG_WITH(papersize, -[ --with-papersize Specify papersize (a4paper,letter) ], -[ test "$withval" && PAPERSIZE="$withval" ]) - -AC_ARG_ENABLE(printable, -[ --enable-printable Printable output (expand ulinks, etc)], -[ if test "$enableval"; then - ULINK_IN_FOOTNOTE="1" - ULINK_SHOW="0" - fi ]) - - DOC_BUILD_DATE=`date '+%d-%m-%Y'` AC_SUBST(DOC_BUILD_DATE) -AC_SUBST(PAPERSIZE) -AC_SUBST(ULINK_IN_FOOTNOTE) -AC_SUBST(ULINK_SHOW) -AC_SUBST(DOCROP) AC_SUBST(SAMBASOURCEDIR) DOCS_TARGET_REQUIRE_PROGRAM(XSLTPROC, xsltproc, ALL) @@ -99,4 +71,4 @@ fi AC_SUBST(TARGETS) -AC_OUTPUT( Makefile.settings settings.xsl ) +AC_OUTPUT( Makefile.settings) |