From 9c909fbb4d4abeabe9ac6731cb0c3f966dacf0ff Mon Sep 17 00:00:00 2001 From: wm4 Date: Wed, 29 Nov 2017 21:19:02 +0100 Subject: build: fix LGPL build with ALSA enabled Oops. This is part of the TV code, for which we didn't make any effort to relicense. But files were always built, because they didn't depend on the common TV code. (The HAVE_GPL in the source file exposed this by making the build fail.) --- wscript_build.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'wscript_build.py') diff --git a/wscript_build.py b/wscript_build.py index e20af74c7e..12a4ea4da0 100644 --- a/wscript_build.py +++ b/wscript_build.py @@ -302,9 +302,9 @@ def build(ctx): ( "player/video.c" ), ## Streams - ( "stream/ai_alsa1x.c", "alsa" ), - ( "stream/ai_oss.c", "oss-audio" ), - ( "stream/ai_sndio.c", "sndio" ), + ( "stream/ai_alsa1x.c", "alsa && audio-input" ), + ( "stream/ai_oss.c", "oss-audio && audio-input" ), + ( "stream/ai_sndio.c", "sndio && audio-input" ), ( "stream/audio_in.c", "audio-input" ), ( "stream/cache.c" ), ( "stream/cache_file.c" ), -- cgit v1.2.3