Revert "engine: wscript: move libasound uselib under linux condition, as the ALSA interface is only relevant for Linux"

This reverts commit 48e44f0057.
This commit is contained in:
Alibek Omarov 2023-10-28 10:10:03 +03:00
parent 48e44f0057
commit 8647110a10
1 changed files with 1 additions and 2 deletions

View File

@ -144,13 +144,12 @@ 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']
libs += [ 'M', 'RT', 'PTHREAD', 'ASOUND']
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':