From ec7b81f4205abd38d6feaa45be397a0eaf797372 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Fri, 3 Oct 2014 05:29:56 +0200 Subject: Fix libotr3 detection Fix FTBFS with libotr3 --- src/otrlchatinterface.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/otrlchatinterface.cpp') diff --git a/src/otrlchatinterface.cpp b/src/otrlchatinterface.cpp index 49895e4..135377b 100644 --- a/src/otrlchatinterface.cpp +++ b/src/otrlchatinterface.cpp @@ -209,7 +209,9 @@ static void gone_secure(void *opdata, ConnContext *context){ OTRPlugin::plugin()->emitGoneSecure( ((Kopete::ChatSession*)opdata), 1 ); } +#ifdef HAVE_LIBOTR_0400 session->setProperty("otr-instag", QString::number(context->their_instance)); +#endif // HAVE_LIBOTR_0400 } /* Actually I've never seen this event but its implemented in case someone should receive it @@ -578,11 +580,13 @@ OtrlChatInterface::OtrlChatInterface(){ otrl_privkey_read_fingerprints(userstate, TQString(TDEGlobal::dirs()->saveLocation("data", "kopete_otr/", true )) + "fingerprints", NULL, NULL); +#ifdef HAVE_LIBOTR_0400 otrl_instag_read(userstate, TQString(TDEGlobal::dirs()->saveLocation("data", "kopete_otr/", true )) + "instags"); unsigned int interval = otrl_message_poll_get_default_interval(userstate); forwardSecrecyTimerStart(interval); connect(&m_forwardSecrecyTimer, SIGNAL(timeout()), this, SLOT(otrlMessagePoll())); +#endif // HAVE_LIBOTR_0400 } @@ -607,7 +611,9 @@ void OtrlChatInterface::forwardSecrecyTimerStop(){ } void OtrlChatInterface::otrlMessagePoll(){ +#ifdef HAVE_LIBOTR_0400 otrl_message_poll(userstate, 0, 0); +#endif // HAVE_LIBOTR_0400 } /********************* Chat section ***************************/ -- cgit v1.2.1