[FFmpeg-devel] [PATCH] configure: Fix checking external non-free libraries

Thilo Borgmann thilo.borgmann at mail.de
Sun Jan 21 14:31:33 EET 2018


Hi,

fixes rejection of non-free libraries if "--enable-nonfree" is omitted for me.

Git blame says this line is older than 10 months... is it for some reason the expected behaviour?

-Thilo
-------------- next part --------------
From 6fcb95d0094341149e865982b00cb763f99a92a3 Mon Sep 17 00:00:00 2001
From: Thilo Borgmann <thilo.borgmann at mail.de>
Date: Sun, 21 Jan 2018 13:22:53 +0100
Subject: [PATCH] configure: Fix checking external non-free libraries

---
 configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure b/configure
index 5d53362..8532c25 100755
--- a/configure
+++ b/configure
@@ -3773,7 +3773,7 @@ map "die_license_disabled gpl"      $EXTERNAL_LIBRARY_GPL_LIST $EXTERNAL_LIBRARY
 map "die_license_disabled version3" $EXTERNAL_LIBRARY_VERSION3_LIST $EXTERNAL_LIBRARY_GPLV3_LIST
 
 enabled gpl && map "die_license_disabled_gpl nonfree" $EXTERNAL_LIBRARY_NONFREE_LIST
-map "die_license_disabled nonfree" $HWACCEL_LIBRARY_NONFREE_LIST
+map "die_license_disabled nonfree" $HWACCEL_LIBRARY_NONFREE_LIST $EXTERNAL_LIBRARY_NONFREE_LIST
 
 enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; }
 
-- 
2.9.3



More information about the ffmpeg-devel mailing list