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.)
This commit is contained in:
wm4 2017-11-29 21:19:02 +01:00
parent 3d27a0792b
commit 9c909fbb4d
1 changed files with 3 additions and 3 deletions

View File

@ -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" ),