diff --git a/libksieve/kmanagesieve/sasl-common.h b/libksieve/kmanagesieve/sasl-common.h index 96bcc2fa54..54056c96a9 100644 --- a/libksieve/kmanagesieve/sasl-common.h +++ b/libksieve/kmanagesieve/sasl-common.h @@ -1,53 +1,55 @@ /* This file is part of the KDE project Copyright (C) 2008 Jarosław Staniek This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ //krazy:excludeall=null since used by SASL (C library) #ifndef KSIEVE_KMANAGESIEVE_SASL_COMMON_H #define KSIEVE_KMANAGESIEVE_SASL_COMMON_H #include #include #include +#include + extern "C" { #include } inline bool initSASL() { #ifdef Q_OS_WIN32 QByteArray libInstallPath( QFile::encodeName(QDir::toNativeSeparators(KGlobal::dirs()->installPath("lib")+QLatin1String("sasl2"))) ); QByteArray configPath( QFile::encodeName(QDir::toNativeSeparators(KGlobal::dirs()->installPath("config")+QLatin1String("sasl2"))) ); if ( sasl_set_path(SASL_PATH_TYPE_PLUGIN, libInstallPath.data()) != SASL_OK || sasl_set_path(SASL_PATH_TYPE_CONFIG, configPath.data()) != SASL_OK ) { fprintf(stderr, "SASL path initialization failed!\n"); return false; } #endif if ( sasl_client_init( NULL ) != SASL_OK ) { fprintf(stderr, "SASL library initialization failed!\n"); return false; } return true; } #endif