diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-06-10 20:29:09 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:46:44 -0500 |
commit | 06aa63b6f19131071800985746b445dee42d91eb (patch) | |
tree | 5f7aaa77fc7375919463ae40d05933d44688f071 /docs/configure.in | |
parent | b82eb1abe3641a80ad6f431dd2fd625dc229eaed (diff) | |
download | samba-06aa63b6f19131071800985746b445dee42d91eb.tar.gz samba-06aa63b6f19131071800985746b445dee42d91eb.tar.bz2 samba-06aa63b6f19131071800985746b445dee42d91eb.zip |
Large number of small fixes to the layout and the build system.
(This used to be commit 73fac0653c774a8ed8654b064fd63d4e486f6b0f)
Diffstat (limited to 'docs/configure.in')
-rw-r--r-- | docs/configure.in | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/docs/configure.in b/docs/configure.in index d2057cac60..b958b4f28d 100644 --- a/docs/configure.in +++ b/docs/configure.in @@ -1,7 +1,8 @@ AC_INIT(settings.xsl.in) PAPERSIZE="" -DUPLICATE_ULINKS="" +ULINK_IN_FOOTNOTE="0" +ULINK_SHOW="1" DOCROP="0" @@ -11,7 +12,7 @@ AC_ARG_WITH(samba-sources, AC_ARG_ENABLE(crop, [ --enable-crop Whether to use a crop template], -[ test "$withval" && DOCROP="1" ]) +[ test "$enableval" && DOCROP="1" ]) PAPERSIZE="a4paper" @@ -27,13 +28,17 @@ AC_ARG_WITH(fontsize, AC_ARG_ENABLE(printable, [ --enable-printable Printable output (expand ulinks, etc)], -[ test "$withval" && DUPLICATE_ULINKS="footnote" ]) +[ 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(DUPLICATE_ULINKS) +AC_SUBST(ULINK_IN_FOOTNOTE) +AC_SUBST(ULINK_SHOW) AC_SUBST(FONTSIZE) AC_SUBST(DOCROP) AC_SUBST(SAMBASOURCEDIR) |