From 51245d5f2f2bc66c63573c3f9c295eedfec88cfe Mon Sep 17 00:00:00 2001 From: vl Date: Fri, 18 Feb 2011 09:10:55 +0100 Subject: [PATCH] Changed: on mac, openal is always dynlib --- code/nel/src/sound/driver/openal/ext_al.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/nel/src/sound/driver/openal/ext_al.cpp b/code/nel/src/sound/driver/openal/ext_al.cpp index b3c5cf6aa..0c6690eb1 100644 --- a/code/nel/src/sound/driver/openal/ext_al.cpp +++ b/code/nel/src/sound/driver/openal/ext_al.cpp @@ -66,7 +66,7 @@ void alExtInitDevice(ALCdevice *device) } } -#ifndef NL_STATIC +#if !defined(NL_STATIC) || defined(NL_OS_MAC) // EFX if ((AlExtEfx = (alcIsExtensionPresent(device, "ALC_EXT_EFX") == ALC_TRUE)) == true) { @@ -136,7 +136,7 @@ EAXGetBufferMode eaxGetBufferMode = NULL; // ALC_EXT_EFX bool AlExtEfx = false; // effect objects -#ifndef NL_STATIC +#if !defined(NL_STATIC) || defined(NL_OS_MAC) LPALGENEFXOBJECTS alGenEffects = NULL; LPALDELETEEFXOBJECTS alDeleteEffects = NULL; LPALISEFXOBJECT alIsEffect = NULL;