DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

commit c255436ab65e5eb0364e2385b279354291a0172b
parent 94f2f5087a16928bbf3f347603d051f37b898d98
Author: falkTX <falktx@gmail.com>
Date:   Tue, 29 Mar 2016 11:51:22 +0200

Treat FreeBSD and GNU (Hurd) as if they were linux

Diffstat:
Mdistrho/src/DistrhoDefines.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/distrho/src/DistrhoDefines.h b/distrho/src/DistrhoDefines.h @@ -37,7 +37,7 @@ # define DISTRHO_DLL_EXTENSION "dylib" # elif defined(__HAIKU__) # define DISTRHO_OS_HAIKU 1 -# elif defined(__linux__) +# elif defined(__linux__) || defined(__linux) || defined(__FreeBSD__) || defined(__GNU__) # define DISTRHO_OS_LINUX 1 # endif #endif