From e506d6ce40dd357e29a7c856ab2b664df69cf015 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 2 Mar 2006 12:38:33 +0100 Subject: Install bitlbee's header files and a pkg-config file. This means that 3rd-parties can write support for additional protocols in BitlBee. --- bitlbee.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitlbee.h') diff --git a/bitlbee.h b/bitlbee.h index b43159d0..4efdddd9 100644 --- a/bitlbee.h +++ b/bitlbee.h @@ -101,7 +101,7 @@ extern char *CONF_FILE; #include "irc.h" #include "storage.h" #include "set.h" -#include "protocols/nogaim.h" +#include "nogaim.h" #include "commands.h" #include "account.h" #include "conf.h" -- cgit v1.2.3 From e27661d09e8c3fc85c979d4769ba20d1d3c289e2 Mon Sep 17 00:00:00 2001 From: Wilmer van der Gaast Date: Fri, 31 Mar 2006 19:55:47 +0200 Subject: Finished the iconv() fix. Instead of doing it every time something goes from or to the IM-modules, it's now just done with everything that goes between BitlBee and the user. Incomparably more efficient/reliable. Plus some more cleanups. It compiles, can't test it for real yet. ;-) --- bitlbee.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'bitlbee.h') diff --git a/bitlbee.h b/bitlbee.h index 4efdddd9..4da87ec6 100644 --- a/bitlbee.h +++ b/bitlbee.h @@ -110,6 +110,7 @@ extern char *CONF_FILE; #include "help.h" #include "query.h" #include "sock.h" +#include "util.h" typedef struct global { /* In forked mode, child processes store the fd of the IPC socket here. */ @@ -132,10 +133,6 @@ gboolean bitlbee_io_current_client_write( GIOChannel *source, GIOCondition condi void root_command_string( irc_t *irc, user_t *u, char *command, int flags ); void root_command( irc_t *irc, char *command[] ); void bitlbee_shutdown( gpointer data ); -double gettime( void ); -G_MODULE_EXPORT void http_encode( char *s ); -G_MODULE_EXPORT void http_decode( char *s ); -G_MODULE_EXPORT char *strip_newlines(char *source); extern global_t global; -- cgit v1.2.3