Added conditionals to makefile for otr support

This commit is contained in:
James Booth
2014-01-12 02:15:16 +00:00
parent 4e97c1e460
commit 264fc55aa2
5 changed files with 23 additions and 7 deletions

View File

@@ -2391,7 +2391,7 @@ cmd_otr(gchar **args, struct cmd_help_t help)
return TRUE;
}
#else
cons_show("This version of Profanity has not been build with OTR support enabled");
cons_show("This version of Profanity has not been built with OTR support enabled");
return TRUE;
#endif
}

View File

@@ -44,7 +44,9 @@
#include "roster_list.h"
#include "log.h"
#include "muc.h"
#ifdef HAVE_LIBOTR
#include "otr.h"
#endif
#include "resource.h"
#include "ui/ui.h"
#include "xmpp/xmpp.h"

View File

@@ -28,7 +28,9 @@
#include "config/preferences.h"
#include "roster_list.h"
#include "ui/ui.h"
#ifdef HAVE_LIBOTR
#include "otr.h"
#endif
void
handle_error_message(const char *from, const char *err_msg)
@@ -49,7 +51,9 @@ void
handle_login_account_success(char *account_name)
{
ProfAccount *account = accounts_get_account(account_name);
#ifdef HAVE_LIBOTR
otr_on_connect(account);
#endif
resource_presence_t resource_presence = accounts_get_login_presence(account->name);
contact_presence_t contact_presence = contact_presence_from_resource_presence(resource_presence);
cons_show_login_success(account);