[Lunar-commits] <moonbase> ffmpeg: add an --enable-nonfree compile param to accept nonfree codecs at compile.

Florin Braescu florin at lunar-linux.org
Mon Apr 12 15:50:55 CEST 2010


commit 1b530227bb33893719b89cc3b90cfdc573586c7b
Author: Florin Braescu <florin at lunar-linux.org>
Date:   Mon Apr 12 16:50:55 2010 +0300

    ffmpeg: add an --enable-nonfree compile param to accept nonfree codecs at compile.
    
    Thanks to wdp for pointing it.
---
 video/ffmpeg/BUILD |   12 +++++++++---
 1 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/video/ffmpeg/BUILD b/video/ffmpeg/BUILD
index 889fac4..81ff2f3 100644
--- a/video/ffmpeg/BUILD
+++ b/video/ffmpeg/BUILD
@@ -1,10 +1,16 @@
 (
 
-  OPTS+=" --enable-gpl --enable-shared --enable-pthreads  --enable-postproc  \
-          --enable-avfilter-lavf --enable-swscale --enable-avfilter"        &&
+  OPTS+=" --enable-gpl            \
+          --enable-shared         \
+          --enable-pthreads       \
+          --enable-postproc       \
+          --enable-avfilter-lavf  \
+          --enable-swscale        \
+          --enable-avfilter       \
+          --enable-nonfree"      &&
 
  [ -n $CPU ] && OPTS+=" --cpu=$CPU"
-  ./configure --prefix=/usr $OPTS &&
+  ./configure --prefix=/usr $OPTS  &&
 
   default_make
 


More information about the Lunar-commits mailing list