diff options
author | Diego Biurrun <diego@biurrun.de> | 2018-02-05 13:53:49 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2018-02-06 10:03:15 +0100 |
commit | bca41545b371efc34e38d1fa8bb12dba8b614da0 (patch) | |
tree | 025ff50f474302535eb44066e37155b9df56bb79 /configure | |
parent | 2eb396b175e55e515aa6a13c5b1789a2a18d3935 (diff) | |
download | ffmpeg-bca41545b371efc34e38d1fa8bb12dba8b614da0.tar.gz |
configure: Group code that sets the license string with licensing checks
This also moves the setting of the licensing string out of a block that
is skipped when quiet operation is requested.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 23 |
1 files changed, 12 insertions, 11 deletions
@@ -2881,6 +2881,18 @@ map "die_license_disabled version3" $EXTERNAL_LIBRARY_VERSION3_LIST enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; } +if enabled nonfree; then + license="nonfree and unredistributable" +elif enabled gplv3; then + license="GPL version 3 or later" +elif enabled lgplv3; then + license="LGPL version 3 or later" +elif enabled gpl; then + license="GPL version 2 or later" +else + license="LGPL version 2.1 or later" +fi + enabled_all gnutls openssl && die "GnuTLS and OpenSSL must not be enabled at the same time." @@ -5170,17 +5182,6 @@ if test -n "$ignore_tests"; then echo fi -license="LGPL version 2.1 or later" -if enabled nonfree; then - license="nonfree and unredistributable" -elif enabled gplv3; then - license="GPL version 3 or later" -elif enabled lgplv3; then - license="LGPL version 3 or later" -elif enabled gpl; then - license="GPL version 2 or later" -fi - echo "License: $license" fi # test "$quiet" != "yes" |