228803e9db
By generating stubs using https://github.com/hpvb/dynload-wrapper we
can dynamically load libpulse and libasound on systems where it is available.
Both are still a build-time requirement but no longer a run-time dependency.
For maintenance purposes the wrappers should not need to be re-generated
unless we want to bump pulse or asound to an incompatible version. It is
unlikely we will want to do this any time soon.
cherry-pick from 09f82fa6ea
8 lines
201 B
Python
8 lines
201 B
Python
#!/usr/bin/env python
|
|
|
|
Import("env")
|
|
|
|
if "pulseaudio" in env and env["pulseaudio"]:
|
|
env.add_source_files(env.drivers_sources, "pulse-so_wrap.c")
|
|
|
|
env.add_source_files(env.drivers_sources, "*.cpp")
|