mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
Autodetect tools neccessary for building documentation.
Make distclean remove generated documentation files. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1834 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
d0ecd2aaf9
commit
cc8ae6de58
2 changed files with 15 additions and 1 deletions
10
configure
vendored
10
configure
vendored
|
@ -94,6 +94,7 @@ check_gfx="yes"
|
|||
check_gcc="yes"
|
||||
softmmu="yes"
|
||||
user="no"
|
||||
build_docs="no"
|
||||
|
||||
# OS specific
|
||||
targetos=`uname -s`
|
||||
|
@ -427,6 +428,11 @@ fi # sdl compile test
|
|||
fi # cross compilation
|
||||
fi # -z $sdl
|
||||
|
||||
# Check if tools are available to build documentation.
|
||||
if [ ! -z `which texi2html` ] && [ ! -z `which pod2man` ]; then
|
||||
build_docs="yes"
|
||||
fi
|
||||
|
||||
if test "$mingw32" = "yes" ; then
|
||||
if test -z "$prefix" ; then
|
||||
prefix="/c/Program Files/Qemu"
|
||||
|
@ -489,6 +495,7 @@ else
|
|||
fi
|
||||
echo "FMOD support $fmod $fmod_support"
|
||||
echo "kqemu support $kqemu"
|
||||
echo "Documentation $build_docs"
|
||||
|
||||
if test $sdl_too_old = "yes"; then
|
||||
echo "-> Your SDL version is too old - please upgrade to have SDL support"
|
||||
|
@ -632,6 +639,9 @@ if [ "$source_path_used" = "yes" ]; then
|
|||
echo "VPATH=$source_path" >> $config_mak
|
||||
fi
|
||||
echo "TARGET_DIRS=$target_list" >> $config_mak
|
||||
if [ "$build_docs" = "yes" ] ; then
|
||||
echo "BUILD_DOCS=yes" >> $config_mak
|
||||
fi
|
||||
|
||||
# XXX: suppress that
|
||||
if [ "$bsd" = "yes" ] ; then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue