mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
6903a4a2db
(This used to be commit 41fe64e70f
)
47 lines
1.1 KiB
Plaintext
47 lines
1.1 KiB
Plaintext
AC_INIT(global.ent)
|
|
|
|
## check for the necesary install tools
|
|
AC_PATH_PROG(JADE,openjade)
|
|
|
|
if test -z "$JADE"; then
|
|
AC_PATH_PROG(JADE,jade)
|
|
fi
|
|
|
|
AC_PATH_PROG(NSGMLS, nsgmls)
|
|
AC_PATH_PROG(HTMLDOC, htmldoc)
|
|
AC_PATH_PROG(ONSGMLS, onsgmls)
|
|
AC_PATH_PROG(SGMLSPL, sgmlspl)
|
|
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 docbook2X. Make sure it is installed and that the sgml-share path is correct.")
|
|
fi
|
|
|
|
AC_SUBST(SGML_SHARE)dnl
|
|
|
|
DOC_BUILD_DATE=`date '+%d-%m-%Y'`
|
|
AC_SUBST(DOC_BUILD_DATE)
|
|
|
|
AC_OUTPUT( Makefile stylesheets/ldp.dsl )
|