mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 11:40:18 +02:00
Move doc files into guile-core distribution (7)
This commit is contained in:
parent
c2dc2842b6
commit
fff043abc0
4 changed files with 31 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2001-03-09 Neil Jerram <neil@ossau.uklinux.net>
|
||||||
|
|
||||||
|
* configure.in (htmldoc): Merge handling of `--enable-htmldoc'
|
||||||
|
option from guile-doc/configure.in.
|
||||||
|
|
||||||
2001-03-06 Dirk Herrmann <D.Herrmann@tu-bs.de>
|
2001-03-06 Dirk Herrmann <D.Herrmann@tu-bs.de>
|
||||||
|
|
||||||
* libguile.h: Removed #include "libguile/dump.h".
|
* libguile.h: Removed #include "libguile/dump.h".
|
||||||
|
|
22
configure.in
22
configure.in
|
@ -74,6 +74,28 @@ AC_ARG_ENABLE(regex,
|
||||||
[ --disable-regex omit regular expression interfaces],,
|
[ --disable-regex omit regular expression interfaces],,
|
||||||
enable_regex=yes)
|
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)
|
||||||
|
|
||||||
dnl The --disable-debug used to control these two. But now they are
|
dnl The --disable-debug used to control these two. But now they are
|
||||||
dnl a required part of the distribution.
|
dnl a required part of the distribution.
|
||||||
AC_DEFINE(DEBUG_EXTENSIONS)
|
AC_DEFINE(DEBUG_EXTENSIONS)
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
2001-03-09 Neil Jerram <neil@ossau.uklinux.net>
|
2001-03-09 Neil Jerram <neil@ossau.uklinux.net>
|
||||||
|
|
||||||
|
* Makefile.am: Change HTML to HTMLDOC, now that we're part of a
|
||||||
|
wider distribution.
|
||||||
|
|
||||||
Moving documentation files from guile-doc and guile-doc into
|
Moving documentation files from guile-doc and guile-doc into
|
||||||
guile-core/doc:
|
guile-core/doc:
|
||||||
|
|
||||||
|
|
|
@ -37,7 +37,7 @@ goops_TEXINFOS = goops-tutorial.texi hierarchy.eps hierarchy.txt
|
||||||
|
|
||||||
# Optionally support building an HTML version of the reference manual.
|
# Optionally support building an HTML version of the reference manual.
|
||||||
|
|
||||||
if HTML
|
if HTMLDOC
|
||||||
|
|
||||||
htmldir = $(prefix)/html/guile-$(VERSION)
|
htmldir = $(prefix)/html/guile-$(VERSION)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue