mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
Added xmpp subdir to source
This commit is contained in:
parent
029a016103
commit
1d3739bb79
17
Makefile.am
17
Makefile.am
@ -1,17 +1,16 @@
|
|||||||
bin_PROGRAMS = profanity
|
bin_PROGRAMS = profanity
|
||||||
profanity_SOURCES = src/command.c src/contact.c src/command_history.c src/xmpp.h \
|
profanity_SOURCES = src/command.c src/contact.c src/command_history.c \
|
||||||
src/preferences.c src/autocomplete.c src/ui_statusbar.c \
|
src/preferences.c src/autocomplete.c src/ui_statusbar.c \
|
||||||
src/command.h src/contact.h src/log.c src/preferences.h \
|
src/command.h src/contact.h src/log.c src/preferences.h \
|
||||||
src/autocomplete.h src/ui_titlebar.c src/ui_windows.c src/common.c \
|
src/autocomplete.h src/ui_titlebar.c src/ui_windows.c src/common.c \
|
||||||
src/contact_list.c src/ui_inputwin.c src/log.h src/profanity.c \
|
src/contact_list.c src/ui_inputwin.c src/log.h src/profanity.c \
|
||||||
src/history.c src/ui.h src/common.h src/ contact_list.h src/xmpp_conn.c \
|
src/history.c src/ui.h src/common.h src/ contact_list.h \
|
||||||
src/main.c src/profanity.h src/history.h src/xmpp_presence.c \
|
src/main.c src/profanity.h src/history.h src/tinyurl.c src/tinyurl.h \
|
||||||
src/tinyurl.c src/tinyurl.h src/chat_session.c \
|
src/chat_session.c src/chat_session.h src/muc.c src/muc.h \
|
||||||
src/chat_session.h src/muc.c src/xmpp_message.c \
|
src/command_parser.c src/theme.c src/theme.h src/window.c src/window.h \
|
||||||
src/muc.h src/xmpp_stanza.c src/command_parser.c \
|
src/files.c src/files.h src/accounts.c src/accounts.h src/jid.h src/jid.c \
|
||||||
src/theme.c src/theme.h src/window.c src/window.h \
|
src/xmpp/xmpp.h src/xmpp/capabilities.c src/xmpp/connection.c \
|
||||||
src/files.c src/files.h src/accounts.c src/accounts.h \
|
src/xmpp/iq.c src/xmpp/message.c src/xmpp/presence.c src/xmpp/stanza.c
|
||||||
src/jid.h src/jid.c src/xmpp_caps.c src/xmpp_iq.c
|
|
||||||
|
|
||||||
TESTS = tests/testsuite
|
TESTS = tests/testsuite
|
||||||
check_PROGRAMS = tests/testsuite
|
check_PROGRAMS = tests/testsuite
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
#include "files.h"
|
#include "files.h"
|
||||||
#include "jid.h"
|
#include "jid.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "xmpp.h"
|
#include "xmpp/xmpp.h"
|
||||||
|
|
||||||
static gchar *accounts_loc;
|
static gchar *accounts_loc;
|
||||||
static GKeyFile *accounts;
|
static GKeyFile *accounts;
|
||||||
|
@ -42,7 +42,7 @@
|
|||||||
#include "theme.h"
|
#include "theme.h"
|
||||||
#include "tinyurl.h"
|
#include "tinyurl.h"
|
||||||
#include "ui.h"
|
#include "ui.h"
|
||||||
#include "xmpp.h"
|
#include "xmpp/xmpp.h"
|
||||||
|
|
||||||
typedef char*(*autocomplete_func)(char *);
|
typedef char*(*autocomplete_func)(char *);
|
||||||
|
|
||||||
|
@ -42,7 +42,7 @@
|
|||||||
#include "muc.h"
|
#include "muc.h"
|
||||||
#include "theme.h"
|
#include "theme.h"
|
||||||
#include "ui.h"
|
#include "ui.h"
|
||||||
#include "xmpp.h"
|
#include "xmpp/xmpp.h"
|
||||||
|
|
||||||
static log_level_t _get_log_level(char *log_level);
|
static log_level_t _get_log_level(char *log_level);
|
||||||
static gboolean _process_input(char *inp);
|
static gboolean _process_input(char *inp);
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#ifndef PROFANITY_H
|
#ifndef PROFANITY_H
|
||||||
#define PROFANITY_H
|
#define PROFANITY_H
|
||||||
|
|
||||||
#include "xmpp.h"
|
#include "xmpp/xmpp.h"
|
||||||
|
|
||||||
void prof_run(const int disable_tls, char *log_level);
|
void prof_run(const int disable_tls, char *log_level);
|
||||||
|
|
||||||
|
2
src/ui.h
2
src/ui.h
@ -36,8 +36,8 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "contact.h"
|
#include "contact.h"
|
||||||
#include "xmpp.h"
|
|
||||||
#include "jid.h"
|
#include "jid.h"
|
||||||
|
#include "xmpp/xmpp.h"
|
||||||
|
|
||||||
#define INP_WIN_MAX 1000
|
#define INP_WIN_MAX 1000
|
||||||
#define PAD_SIZE 1000
|
#define PAD_SIZE 1000
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* xmpp_caps.c
|
* capabilities.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
|
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
|
||||||
*
|
*
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* xmpp_conn.c
|
* connection.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
|
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
|
||||||
*
|
*
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* xmpp_iq.c
|
* iq.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
|
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
|
||||||
*
|
*
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* xmpp_message.c
|
* message.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
|
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
|
||||||
*
|
*
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* xmpp_presence.c
|
* presence.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
|
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
|
||||||
*
|
*
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* xmpp_stanza.c
|
* stanza.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
|
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
|
||||||
*
|
*
|
Loading…
Reference in New Issue
Block a user