diff options
author | David Robillard <d@drobilla.net> | 2012-09-12 17:28:16 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-09-12 17:28:16 +0000 |
commit | 5b36db63f3aeb512264b0f38cec2a5a486829fd1 (patch) | |
tree | 9faefef9e69fa0abba4e1564dfba51aca6c896b2 /src/qt4_in_gtk2.cpp | |
parent | d720a0449435a0e096edf5bce3353a71ff90e066 (diff) | |
download | suil-5b36db63f3aeb512264b0f38cec2a5a486829fd1.tar.gz suil-5b36db63f3aeb512264b0f38cec2a5a486829fd1.tar.bz2 suil-5b36db63f3aeb512264b0f38cec2a5a486829fd1.zip |
Fix module loading in static build.
Even when suil itself is built statically, the modules are not, so using
SUIL_API for the module entry point (suil_wrapper_new) in this case was not
setting dllexport.
git-svn-id: http://svn.drobilla.net/lad/trunk/suil@4772 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/qt4_in_gtk2.cpp')
-rw-r--r-- | src/qt4_in_gtk2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt4_in_gtk2.cpp b/src/qt4_in_gtk2.cpp index c04e25c..4bd61a2 100644 --- a/src/qt4_in_gtk2.cpp +++ b/src/qt4_in_gtk2.cpp @@ -128,7 +128,7 @@ wrapper_free(SuilWrapper* wrapper) } } -SUIL_API +SUIL_LIB_EXPORT SuilWrapper* suil_wrapper_new(SuilHost* host, const char* host_type_uri, |