[MPlayer-cvslog] r37549 - trunk/configure
rtogni
subversion at mplayerhq.hu
Wed Oct 21 22:49:01 CEST 2015
Author: rtogni
Date: Wed Oct 21 22:49:00 2015
New Revision: 37549
Log:
Drop the requirement for FFmpeg when just building the docs
This trivial patch allows to build the documentation without requiring
FFmpeg (internal or external) by doing
./configure --disable-ffmpeg_a --disable-mencoder --disable-mplayer
--yasm='' --language=all
and them
make html-chunked
Patch by Miguel A. Colón Vélez <debian.micove at gmail.com>
Modified:
trunk/configure
Modified: trunk/configure
==============================================================================
--- trunk/configure Sun Oct 18 19:09:49 2015 (r37548)
+++ trunk/configure Wed Oct 21 22:49:00 2015 (r37549)
@@ -7142,9 +7142,11 @@ else
def_ffmpeg_a='#undef CONFIG_FFMPEG_A'
def_ffmpeg_so='#undef CONFIG_FFMPEG_SO'
nocodecmodules="ffmpeg $nocodecmodules"
- echo "Compiling without FFmpeg is currently not supported/working."
- echo "Please contact us if that is an issue for you."
- die "both internal and external FFmpeg missing"
+ if test "$_mplayer" = yes || test "$_mencoder" = yes ; then
+ echo "Compiling without FFmpeg is currently not supported/working."
+ echo "Please contact us if that is an issue for you."
+ die "both internal and external FFmpeg missing"
+ fi
fi
test "$_vf_lavfi" = yes && def_vf_lavfi='#define CONFIG_VF_LAVFI 1'|| libavfilters=''
test "$_libavcodec_mpegaudio_hp" = yes &&
More information about the MPlayer-cvslog
mailing list