diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-03-14 18:09:56 +0000 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-03-14 18:09:56 +0000 |
commit | ceebeb12e935e7a6fa72e1375e99d53cc91fcf45 (patch) | |
tree | 92b23d976966b05aaf04a5c88942790aea059f9d | |
parent | fb009891bb60921401ffeb47b33cf35a246cbe34 (diff) |
Warn if xmlto is missing and a prebuilt helpfile is missing.
-rwxr-xr-x | configure | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -443,6 +443,12 @@ else echo '#define WITH_PLUGINS' >> config.h fi +if [ ! -e doc/user-guide/help.txt ] && ! type xmlto > /dev/null 2> /dev/null; then + echo + echo 'WARNING: Building from an unreleased source tree without prebuilt helpfile.' + echo 'Install xmlto if you want online help to work.' +fi + echo if [ -z "$BITLBEE_VERSION" -a -d .bzr ] && type bzr > /dev/null 2> /dev/null; then nick=`bzr nick` |