1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-22 19:44:10 +02:00

Removed code for --enable-htmldoc; support for HTML is now included in

automake.
This commit is contained in:
Marius Vollmer 2004-06-28 14:47:34 +00:00
parent c44a931da1
commit 06a2c45b12

View file

@ -90,28 +90,6 @@ AC_ARG_ENABLE(regex,
[ --disable-regex omit regular expression interfaces],,
enable_regex=yes)
AC_ARG_ENABLE(htmldoc,
[ --enable-htmldoc build HTML documentation as well as Info],
[if test "$enable_htmldoc" = "" || test "$enable_htmldoc" = y || test "$enable_htmldoc" = yes; then
htmldoc_enabled=yes
AC_PATH_PROG(TEXI2HTML, texi2html, not found)
if test "$TEXI2HTML" = "not found"; then
echo
echo Building HTML documentation requires the \`texi2html\' program,
echo which appears not to be present on your machine.
echo
echo \`texi2html\' is available from
echo 'http://www.mathematik.uni-kl.de/~obachman/Texi2html/.'
echo
echo In the meantime, to build the guile-doc distribution
echo without HTML enabled, please rerun \`./configure\' without
echo the \`--enable-htmldoc\' option.
exit -1
fi
fi])
AM_CONDITIONAL(HTMLDOC, test x$htmldoc_enabled = xyes)
AC_ARG_ENABLE(deprecated,
[ --disable-deprecated omit deprecated features [no]])