diff options
| -rw-r--r-- | default.bam | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/default.bam b/default.bam index 4f78b5fe..67f70a9a 100644 --- a/default.bam +++ b/default.bam @@ -219,7 +219,13 @@ function build(settings) else glfw_platform = "x11" pa_platform = "unix" - pa_hostapi = "alsa" -- todo, change me + + if platform == "linux" then + pa_hostapi = "alsa" + else + pa_hostapi = "oss" + end + settings.linker.libs:add("pthread") end elseif family == "windows" then |