diff options
author | Gerald Carter <jerry@samba.org> | 2002-09-25 15:10:57 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2002-09-25 15:10:57 +0000 |
commit | 115a39775cb923d026dde58633b6ba6aef3a1943 (patch) | |
tree | 4e9f7bb19788459fb8a8f88d52c59f3885d29fc6 /docs/docbook/configure.in | |
parent | ec0b8aa70454cab4a918ab09e8ed52d60b4b3256 (diff) | |
download | samba-115a39775cb923d026dde58633b6ba6aef3a1943.tar.gz samba-115a39775cb923d026dde58633b6ba6aef3a1943.tar.xz samba-115a39775cb923d026dde58633b6ba6aef3a1943.zip |
sync'ing up for 3.0alpha20 release
(This used to be commit b5d03c7b55fb2f34fa4d0228abe4389020e5ed5f)
Diffstat (limited to 'docs/docbook/configure.in')
-rw-r--r-- | docs/docbook/configure.in | 45 |
1 files changed, 3 insertions, 42 deletions
diff --git a/docs/docbook/configure.in b/docs/docbook/configure.in index ad0613f2be8..3a9ed51d163 100644 --- a/docs/docbook/configure.in +++ b/docs/docbook/configure.in @@ -1,49 +1,10 @@ AC_INIT(global.ent) -## check for the necesary install tools -## Openjade includes 'onsgmls' while -## the older jade package includes 'nsgmls' -AC_PATH_PROG(JADE,openjade) - -if test -z "$JADE"; then - AC_PATH_PROG(JADE,jade) - AC_PATH_PROG(NSGMLS, nsgmls) -else - AC_PATH_PROG(NSGMLS, onsgmls) -fi - -AC_PATH_PROG(HTMLDOC, htmldoc) -AC_PATH_PROG(SGMLSPL, sgmlspl) +AC_PATH_PROG(JW, jw) AC_PATH_PROG(PERL, perl) - -dnl ---------------------------------------------------------------- -dnl --with-sgml-share -SGML_SHARE="/usr/local/share/sgml" - -AC_ARG_WITH(sgml-share, -[ --with-sgml-share=DIR change the default location of SGML stylesheets], -[case "$withval" in - no) SGML_SHARE="" - ;; - yes) - ;; - /*|\\*) - SGML_SHARE="$withval" - ;; - *) - SGML_SHARE="/$withval" - ;; -esac -])dnl - -# The Makefile requires docbook2X in the share/sgml directory -if [ ! test -f $SGML_SHARE/docbook2X/docbook2man-spec.pl ]; then - AC_MSG_ERROR("Unable to find dockbook2X. Make sure it is installed and that the sgml-share path is correct.") -fi - -AC_SUBST(SGML_SHARE)dnl +AC_PATH_PROG(HTMLDOC, htmldoc) DOC_BUILD_DATE=`date '+%d-%m-%Y'` AC_SUBST(DOC_BUILD_DATE) -AC_OUTPUT( Makefile stylesheets/ldp.dsl ) +AC_OUTPUT( Makefile ) |