diff options
| author | Stefan Hajnoczi <stefanha@redhat.com> | 2015-04-09 14:52:18 +0100 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2015-04-09 21:43:15 +0100 |
| commit | 6a460ed18a3fda0eb2d9c96b8b01817b4dcbded4 (patch) | |
| tree | 0d0d53443c844d2b27a419233fe56a381f9b2e8e | |
| parent | a6f2cb037a82fb8679e70e175cfbc879dd829e06 (diff) | |
| download | focaccia-qemu-6a460ed18a3fda0eb2d9c96b8b01817b4dcbded4.tar.gz focaccia-qemu-6a460ed18a3fda0eb2d9c96b8b01817b4dcbded4.zip | |
configure: disable Archipelago by default and warn about libxseg GPLv3 license
libxseg has changed license to GPLv3. QEMU includes GPL "v2 only" code which is not compatible with GPLv3. This means the resulting binaries may not be redistributable! Disable Archipelago (libxseg) by default to prevent accidental license violations. Also warn if linking against libxseg is enabled to remind the user. Note that this commit does not constitute any advice about software licensing. If you have doubts you should consult a lawyer. Cc: Chrysostomos Nanakos <cnanakos@grnet.gr> Suggested-by: Kevin Wolf <kwolf@redhat.com> Reported-by: Andreas Färber <afaerber@suse.de> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> Reviewed-by: Andreas Färber <afaerber@suse.de> Message-id: 1428587538-8765-1-git-send-email-stefanha@redhat.com Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
| -rwxr-xr-x | configure | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/configure b/configure index 09c922511c..8b673fdc34 100755 --- a/configure +++ b/configure @@ -327,7 +327,7 @@ seccomp="" glusterfs="" glusterfs_discard="no" glusterfs_zerofill="no" -archipelago="" +archipelago="no" gtk="" gtkabi="" vte="" @@ -3173,6 +3173,12 @@ EOF archipelago="yes" libs_tools="$archipelago_libs $libs_tools" libs_softmmu="$archipelago_libs $libs_softmmu" + + echo "WARNING: Please check the licenses of QEMU and libxseg carefully." + echo "GPLv3 versions of libxseg may not be compatible with QEMU's" + echo "license and therefore prevent redistribution." + echo + echo "To disable Archipelago, use --disable-archipelago" else if test "$archipelago" = "yes" ; then feature_not_found "Archipelago backend support" "Install libxseg devel" |