X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fcore.cpp;h=f36c55fd918409d49b23a6113751a833d2f782d8;hb=e27e197e1e74d5087a476e3a70c5808ec7160064;hp=d252b9d78129a00921441956287c4d5ea1195fbc;hpb=f129f4cd5d03813f9acfe6ad71e94d08807deb40;p=quassel.git diff --git a/src/core/core.cpp b/src/core/core.cpp index d252b9d7..f36c55fd 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -55,6 +55,9 @@ Core::Core() : storage(0) { if(!_storageBackends.count()) { qWarning() << qPrintable(tr("Could not initialize any storage backend! Exiting...")); + qWarning() << qPrintable(tr("Currently, Quassel only supports SQLite3. You need to build your\n" + "Qt library with the sqlite plugin enabled in order for quasselcore\n" + "to work.")); exit(1); // TODO make this less brutal (especially for mono client -> popup) } connect(&_storageSyncTimer, SIGNAL(timeout()), this, SLOT(syncStorage()));