(partial) mac compilation correction -

1) correct cmake to look to the included openal-soft, not the system framework.
2) (incorrect) stubb-ins for library to function table binds
This commit is contained in:
Brian Roberts 2019-05-21 21:31:30 -05:00
parent 47640420ca
commit a5f2848b0d
3 changed files with 153 additions and 11 deletions

View file

@ -28,8 +28,11 @@
#endif
#if defined(TORQUE_OS_MAC)
# include <OpenAL/al.h>
# include <OpenAL/alc.h>
# include <AL/al.h>
# include <AL/alc.h>
# include <AL/alext.h>
# include <AL/efx.h>
# include <AL/efx-presets.h>
#elif defined(TORQUE_OS_LINUX)
# include <AL/al.h>
# include <AL/alc.h>