[FFmpeg-cvslog] r13183 - trunk/configure
diego
subversion
Fri May 16 18:12:56 CEST 2008
Author: diego
Date: Fri May 16 18:12:55 2008
New Revision: 13183
Log:
Store license value in a variable for later use.
patch by Jeremy Kolb, jkolb wsi com
Modified:
trunk/configure
Modified: trunk/configure
==============================================================================
--- trunk/configure (original)
+++ trunk/configure Fri May 16 18:12:55 2008
@@ -1978,11 +1978,14 @@ for type in decoder encoder parser demux
echo
done
-enabled nonfree &&
- echo "License: unredistributable" ||
- (enabled gpl &&
- echo "License: GPL" ||
- echo "License: LGPL")
+license="LGPL"
+if enabled nonfree; then
+ license="unredistributable"
+elif enabled gpl; then
+ license="GPL"
+fi
+
+echo "License: $license"
echo "Creating config.mak and config.h..."
More information about the ffmpeg-cvslog
mailing list