More descriptive configure output about manual building

git-svn-id: svn://svn.savannah.nongnu.org/lash/trunk@24 1de19dc7-4e3f-0410-a61d-eddf686bf0b7
This commit is contained in:
Dave Robillard 2006-03-24 20:34:08 +00:00
parent 09e155039a
commit 4524a6a503
2 changed files with 10 additions and 1 deletions

View File

@ -1,5 +1,7 @@
#!/bin/sh
echo -n "Generating build files... "
if ! test -d docs/lash-manual-html-split; then
mkdir docs/lash-manual-html-split;
ln -s ../lash-manual-html-one-page/Makefile.am docs/lash-manual-html-split;
@ -24,3 +26,5 @@ libtoolize --copy --force \
# sh conf;
# fi
#fi
echo "done"

View File

@ -12,6 +12,11 @@ AC_PROG_LIBTOOL
### texi2html ###
#################
AC_CHECK_PROG(lash_texi2html, texi2html, "yes", "no")
if test x$lash_texi2html = xyes; then
AC_MSG_NOTICE([texi2html found, building manual])
else
AC_MSG_WARN([texi2html not found, manual will not be built])
fi
AM_CONDITIONAL(HAVE_TEXI2HTML, test x$lash_texi2html = xyes)
############
@ -287,7 +292,7 @@ AC_MSG_RESULT([
gtk 2 support: $lash_gtk2
gtk 1 support: $lash_gtk
debugging output: $lash_debug
texi2html: $lash_texi2html
building manual: $lash_texi2html
JACK_CFLAGS: $JACK_CFLAGS
ALSA_CFLAGS: $ALSA_CFLAGS