diff options
author | James Booth <boothj5@gmail.com> | 2014-01-12 02:15:16 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-01-12 02:15:16 +0000 |
commit | 264fc55aa22d0069d0031a97c56afd5f86df83c3 (patch) | |
tree | 15874d0a439c8823a53bc4d298b0aae1679829c7 /src | |
parent | 4e97c1e460d150b0cde6d8e35d8caf7bcf959a71 (diff) | |
download | profani-tty-264fc55aa22d0069d0031a97c56afd5f86df83c3.tar.gz |
Added conditionals to makefile for otr support
Diffstat (limited to 'src')
-rw-r--r-- | src/command/commands.c | 2 | ||||
-rw-r--r-- | src/profanity.c | 2 | ||||
-rw-r--r-- | src/server_events.c | 4 |
3 files changed, 7 insertions, 1 deletions
diff --git a/src/command/commands.c b/src/command/commands.c index 69e80414..d7ce2742 100644 --- a/src/command/commands.c +++ b/src/command/commands.c @@ -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 } diff --git a/src/profanity.c b/src/profanity.c index b4149d3a..049d4bc4 100644 --- a/src/profanity.c +++ b/src/profanity.c @@ -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" diff --git a/src/server_events.c b/src/server_events.c index 5e478a51..792415be 100644 --- a/src/server_events.c +++ b/src/server_events.c @@ -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); |