1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-08-11 18:54:16 -04:00

Added check for HAVE_LIBGPGME in presence.c

This commit is contained in:
James Booth 2015-03-23 23:51:35 +00:00
parent 027fa2a700
commit b87130b601

View File

@ -49,7 +49,9 @@
#include "xmpp/connection.h"
#include "xmpp/stanza.h"
#include "xmpp/xmpp.h"
#ifdef HAVE_LIBGPGME
#include "pgp/gpg.h"
#endif
static Autocomplete sub_requests_ac;
@ -226,6 +228,7 @@ presence_update(const resource_presence_t presence_type, const char * const msg,
stanza_attach_status(ctx, presence, msg);
#ifdef HAVE_LIBGPGME
char *account_name = jabber_get_account_name();
ProfAccount *account = accounts_get_account(account_name);
if (account->pgp_keyid) {
@ -244,6 +247,7 @@ presence_update(const resource_presence_t presence_type, const char * const msg,
free(signed_status);
}
#endif
stanza_attach_priority(ctx, presence, pri);
stanza_attach_last_activity(ctx, presence, idle);