mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-03 12:19:33 +01:00
fix correct export macro guard in libpbd for mingw64
This commit is contained in:
parent
03fd396286
commit
3e2ac89d22
1 changed files with 1 additions and 1 deletions
|
|
@ -20,7 +20,7 @@
|
|||
#ifndef __libpbd_libpbd_visibility_h__
|
||||
#define __libpbd_libpbd_visibility_h__
|
||||
|
||||
#if defined(COMPILER_MSVC) || defined(COMPILER_MINGW64)
|
||||
#if defined(COMPILER_MSVC) || defined(__MINGW64__)
|
||||
#define LIBPBD_DLL_IMPORT __declspec(dllimport)
|
||||
#define LIBPBD_DLL_EXPORT __declspec(dllexport)
|
||||
#define LIBPBD_DLL_LOCAL
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue