mirror of https://github.com/mpv-player/mpv
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:
parent
3d27a0792b
commit
9c909fbb4d
|
@ -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" ),
|
||||
|
|
Loading…
Reference in New Issue