From 082d27ede81a88586de914bb33c0f9c5e33bab08 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Fri, 15 Jun 2012 08:39:46 -0700 Subject: Added option to compile on windows without DLL support. --- src/misc/util/abc_global.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src/misc') diff --git a/src/misc/util/abc_global.h b/src/misc/util/abc_global.h index 114a734c..5f0e1232 100644 --- a/src/misc/util/abc_global.h +++ b/src/misc/util/abc_global.h @@ -36,8 +36,13 @@ #endif #ifdef WIN32 -#define ABC_DLLEXPORT __declspec(dllexport) -#define ABC_DLLIMPORT __declspec(dllimport) + #ifdef WIN32_NO_DLL + #define ABC_DLLEXPORT + #define ABC_DLLIMPORT + #else + #define ABC_DLLEXPORT __declspec(dllexport) + #define ABC_DLLIMPORT __declspec(dllimport) + #endif #else /* defined(WIN32) */ #define ABC_DLLIMPORT #endif /* defined(WIN32) */ -- cgit v1.2.3