From 48e44f005730d7bef5e281cd3fe4bb64652a19a1 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Fri, 27 Oct 2023 17:03:04 +0300 Subject: [PATCH] engine: wscript: move libasound uselib under linux condition, as the ALSA interface is only relevant for Linux --- engine/wscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/engine/wscript b/engine/wscript index 6f009913..48226bcc 100644 --- a/engine/wscript +++ b/engine/wscript @@ -144,12 +144,13 @@ def build(bld): libs += ['USER32', 'SHELL32', 'GDI32', 'ADVAPI32', 'DBGHELP', 'PSAPI', 'WS2_32' ] source += bld.path.ant_glob(['platform/win32/*.c']) elif bld.env.DEST_OS not in ['dos', 'nswitch', 'psvita']: #posix - libs += [ 'M', 'RT', 'PTHREAD', 'ASOUND'] + libs += [ 'M', 'RT', 'PTHREAD'] if not bld.env.STATIC: libs += ['DL'] source += bld.path.ant_glob(['platform/posix/*.c']) if bld.env.DEST_OS == 'linux': + libs += ['ASOUND'] source += bld.path.ant_glob(['platform/linux/*.c']) if bld.env.DEST_OS == 'irix':