diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-11-21 16:57:56 -0800 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-11-23 09:45:06 -0800 |
commit | f187557ab4612776f7f527ecf3d40062975c3e4c (patch) | |
tree | b4fcab430f8c738470a660ce8cb41ba95f2a669f /configure | |
parent | 6f270da61b8c9a2dc71f48ae2a21e046d7f15b69 (diff) | |
download | ffmpeg-f187557ab4612776f7f527ecf3d40062975c3e4c.tar.gz |
build: more fine-grained dependencies for documentation build tools
Perl is needed to build the manual pages, texi2html for the HTML pages.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1107,7 +1107,6 @@ CONFIG_LIST=" $LIBRARY_LIST $PROGRAM_LIST dct - doc error_resilience fft gpl @@ -1119,6 +1118,7 @@ CONFIG_LIST=" memalign_hack network nonfree + perl pic rdft runtime_cpudetect @@ -1128,6 +1128,7 @@ CONFIG_LIST=" sram static swscale_alpha + texi2html thumb version3 xmm_clobber_test @@ -1963,8 +1964,6 @@ avserver_deps="avformat fork !shared" avserver_select="ffm_muxer rtp_protocol rtsp_demuxer" avserver_extralibs='$ldl' -doc_deps="texi2html" - # default parameters logfile="config.log" @@ -3869,6 +3868,7 @@ if check_pkg_config sdl SDL_events.h SDL_PollEvent; then enable sdl fi +perl -v > /dev/null 2>&1 && enable perl || disable perl texi2html -version > /dev/null 2>&1 && enable texi2html || disable texi2html check_header linux/fb.h |