mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-14 02:26:39 +01:00
untested fix for compiling waves audiobackend on case-sensitive FS with mingw.
This commit is contained in:
parent
d75d6a833a
commit
cd60fd9dfe
16 changed files with 20 additions and 10 deletions
|
|
@ -0,0 +1,41 @@
|
|||
#ifndef __WavesPublicAPI_Defines_h__
|
||||
#define __WavesPublicAPI_Defines_h__
|
||||
|
||||
/*Copy to include
|
||||
#include "WavesPublicAPI_Defines.h"
|
||||
*/
|
||||
|
||||
#ifdef __APPLE__
|
||||
|
||||
#ifdef __GNUC__
|
||||
#define WPAPI_DllExport __attribute__ ((visibility("default")))
|
||||
#define __WPAPI_CDECL
|
||||
#define __WPAPI_STDCALL
|
||||
|
||||
#else
|
||||
|
||||
#define WPAPI_DllExport __declspec(export)
|
||||
#define __WPAPI_CDECL
|
||||
#define __WPAPI_STDCALL
|
||||
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef PLATFORM_WINDOWS
|
||||
#define WPAPI_DllExport __declspec(dllexport)
|
||||
#define __WPAPI_CDECL __cdecl
|
||||
#define __WPAPI_STDCALL __stdcall
|
||||
#endif
|
||||
|
||||
#ifdef __linux__
|
||||
|
||||
#define WPAPI_DllExport __attribute__ ((visibility("default")))
|
||||
|
||||
#define __WPAPI_CDECL
|
||||
#define __WPAPI_STDCALL
|
||||
|
||||
#endif
|
||||
|
||||
#endif //__WavesPublicAPI_Defines_h__
|
||||
Loading…
Add table
Add a link
Reference in a new issue