aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorRamiro Polla <ramiro@lisha.ufsc.br>2007-02-01 00:52:39 +0000
committerDiego Biurrun <diego@biurrun.de>2007-02-01 00:52:39 +0000
commit541184974ca11be6a7bb6fc4ff4ed804de62b524 (patch)
treeaa5072f0f39cd6d98ed588853b0ce66457904d6c /configure
parent5d55e966e18ec3490c20db85a3a137ba81cb2ad3 (diff)
downloadffmpeg-541184974ca11be6a7bb6fc4ff4ed804de62b524.tar.gz
Simplify GPl check.
patch by Ramiro Polla, ramiro lisha.ufsc br Originally committed as revision 7793 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure44
1 files changed, 13 insertions, 31 deletions
diff --git a/configure b/configure
index 1ee03ba511..b2634c8514 100755
--- a/configure
+++ b/configure
@@ -1248,37 +1248,19 @@ fi
if disabled gpl ; then
- if enabled pp; then
- die "The Postprocessing code is under GPL and --enable-gpl is not specified."
- fi
-
- if enabled_any liba52 liba52bin ; then
- die "liba52 is under GPL and --enable-gpl is not specified."
- fi
-
- if enabled xvid; then
- die "libxvidcore is under GPL and --enable-gpl is not specified."
- fi
-
- if enabled x264; then
- die "x264 is under GPL and --enable-gpl is not specified."
- fi
-
- if enabled libdts; then
- die "libdts is under GPL and --enable-gpl is not specified."
- fi
-
- if enabled libfaad2; then
- die "FAAD2 is under GPL and --enable-gpl is not specified."
- fi
-
- if enabled x11grab; then
- die "The X11 grabber is under GPL and --enable-gpl is not specified."
- fi
-
- if enabled swscaler; then
- die "The software scaler is under GPL and --enable-gpl is not specified."
- fi
+ die_gpl_disabled(){
+ name=$1
+ shift
+ enabled_any $@ && die "$name is under GPL and --enable-gpl is not specified."
+ }
+ die_gpl_disabled "The Postprocessing code" pp
+ die_gpl_disabled "liba52" liba52 liba52bin
+ die_gpl_disabled "libxvidcore" xvid
+ die_gpl_disabled "x264" x264
+ die_gpl_disabled "libdts" libdts
+ die_gpl_disabled "FAAD2" libfaad2
+ die_gpl_disabled "The X11 grabber" x11grab
+ die_gpl_disabled "The software scaler" swscaler
fi
# compute MMX state