summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Togni <r_togni@tiscali.it>2008-01-07 21:37:18 +0000
committerRoberto Togni <r_togni@tiscali.it>2008-01-07 21:37:18 +0000
commitca5323af4b2aa6f499a85687ee027426aca10d7a (patch)
treedd19a5c90d00d8bf633b34c646814da3a844766e
parent8e4270c551533598a8c9861f7c75eae04d0e38ac (diff)
Move printing of the license status at the end of configure output, so
that users won't miss it Originally committed as revision 11450 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-xconfigure7
1 files changed, 4 insertions, 3 deletions
diff --git a/configure b/configure
index 89b2e8765b..21da64841a 100755
--- a/configure
+++ b/configure
@@ -1907,9 +1907,6 @@ echo "libvorbis enabled ${libvorbis-no}"
echo "x264 enabled ${libx264-no}"
echo "XviD enabled ${libxvid-no}"
echo "zlib enabled ${zlib-no}"
-enabled gpl &&
- echo "License: GPL" ||
- echo "License: LGPL"
for type in decoder encoder parser demuxer muxer protocol bsf indev outdev; do
echo "Enabled ${type}s:"
@@ -1925,6 +1922,10 @@ done
echo "Creating config.mak and config.h..."
+enabled gpl &&
+ echo "License: GPL" ||
+ echo "License: LGPL"
+
echo "# Automatically generated by configure - do not modify!" > config.mak
echo "/* Automatically generated by configure - do not modify! */" > $TMPH
echo "#ifndef FFMPEG_CONFIG_H" >> $TMPH