diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-11-10 18:10:59 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-11-14 23:03:36 +0100 |
commit | e28b7553aeab8aa0d590683a21a9a6ab113cb433 (patch) | |
tree | 3e9ac43bba79e8575567259db1ba6acd4c4cbbb3 | |
parent | b74dbdd5e99aed7f3bf1ecb5da1b374e5ba35768 (diff) | |
download | ffmpeg-e28b7553aeab8aa0d590683a21a9a6ab113cb433.tar.gz |
configure: Add option to disable all command line programs
-rwxr-xr-x | configure | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -101,12 +101,15 @@ Configuration options: --enable-gray enable full grayscale support (slower color) --disable-swscale-alpha disable alpha channel support in swscale -Component options: - --disable-doc do not build documentation +Program options: + --disable-programs do not build command line programs --disable-avconv disable avconv build --disable-avplay disable avplay build --disable-avprobe disable avprobe build --disable-avserver disable avserver build + +Component options: + --disable-doc do not build documentation --disable-avdevice disable libavdevice build --disable-avcodec disable libavcodec build --disable-avformat disable libavformat build @@ -1945,6 +1948,9 @@ for opt do ;; --enable-debug=*) debuglevel="$optval" ;; + --disable-programs) + disable $PROGRAM_LIST + ;; --disable-everything) map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST ;; |