summaryrefslogtreecommitdiff
path: root/cairommconfig.h.meson
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2021-03-09 10:31:24 +0000
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2021-03-09 10:31:24 +0000
commit4fe97af983213de24cb53cae9abd75458d57d088 (patch)
treea6c70854f3b9cda94a7ace88f20fc60792b72b79 /cairommconfig.h.meson
parentda328a5099950600c51f9e2185c689b8793d9650 (diff)
parente828ba65061d6d4dd49873b7fef7383135aa4193 (diff)
Merge branch 'fix.mingw.warnings' into 'master'
cairommconfig.h.*: Don't dllimport on MinGW (master branch) See merge request cairo/cairomm!16
Diffstat (limited to 'cairommconfig.h.meson')
-rw-r--r--cairommconfig.h.meson4
1 files changed, 3 insertions, 1 deletions
diff --git a/cairommconfig.h.meson b/cairommconfig.h.meson
index 5a1e7b9..2988edc 100644
--- a/cairommconfig.h.meson
+++ b/cairommconfig.h.meson
@@ -28,8 +28,10 @@
#ifdef CAIROMM_DLL
# if defined(CAIROMM_BUILD)
# define CAIROMM_API __declspec(dllexport)
-# else
+# elif !defined (__GNUC__)
# define CAIROMM_API __declspec(dllimport)
+# else /* don't dllimport classes/methods on GCC/MinGW */
+# define CAIROMM_API
# endif
/* Build a static or non-native-Windows library */
#else