aboutsummaryrefslogtreecommitdiff
path: root/src/init.cpp
diff options
context:
space:
mode:
authorMatt Corallo <matt@bluematt.me>2011-10-07 10:46:56 -0400
committerGavin Andresen <gavinandresen@gmail.com>2011-10-25 11:51:34 -0400
commit5f2e76b8c777785a80f171d825cfddb213320f9a (patch)
tree43e5f28b893d55e8d6fcb3b1ec932eaa1c9664b2 /src/init.cpp
parent3f197952bdde524739c029e0d4a21af7ce069595 (diff)
downloadbitcoin-5f2e76b8c777785a80f171d825cfddb213320f9a.tar.xz
Optionally include additional QT plugins when required to build.
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/init.cpp b/src/init.cpp
index 28be7ef7c0..d6e153285e 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -12,6 +12,16 @@
#include <boost/filesystem/fstream.hpp>
#include <boost/interprocess/sync/file_lock.hpp>
+#if defined(BITCOIN_NEED_QT_PLUGINS) && !defined(_BITCOIN_QT_PLUGINS_INCLUDED)
+#define _BITCOIN_QT_PLUGINS_INCLUDED
+#define __INSURE__
+#include <QtPlugin>
+Q_IMPORT_PLUGIN(qcncodecs)
+Q_IMPORT_PLUGIN(qjpcodecs)
+Q_IMPORT_PLUGIN(qtwcodecs)
+Q_IMPORT_PLUGIN(qkrcodecs)
+#endif
+
using namespace std;
using namespace boost;