Added an ifdef for linux which will, be default, disable EFX support on linux. We are doing this because of licensing issues with EFX on linux. We cannot provide in our packages key EFX headers. If you want EFX support on linux, you must provide them yourself.

This commit is contained in:
Joshua Jones 2010-02-20 03:51:40 +00:00
parent 629fee3891
commit 131959224f
2 changed files with 8 additions and 0 deletions

View File

@ -22,6 +22,9 @@ New:
Updated:
Better doxygen documentation.
Numerous bug fixes (Too many to list here)
Note for linux users:
By default, EFX is disabled on linux with an ifdef in cAudioDefines. We are doing this because of licensing issues with EFX on linux. We cannot provide in our packages key EFX headers, so if you want EFX support on linux, you must provide them yourself.
//////////////////
// INSTALLATION //

View File

@ -50,6 +50,9 @@
//Audio Effects Settings
/////////////////////////
//! Since linux has license issues with OpenAL EFX, we cannot release the header files necessary for it. Therefore, we must disable EFX on linux. Remove this ifndef if you have EFX available on linux.
#ifndef CAUDIO_PLATFORM_LINUX
//! Comment out to remove all EFX support from the library
#define CAUDIO_EFX_ENABLED
@ -58,4 +61,6 @@
#define CAUDIO_SOURCE_MAX_EFFECT_SLOTS 4
#endif
#endif
#endif //! CAUDIODEFINES_H