Changeset df1694b


Ignore:
Timestamp:
2006-06-25T12:15:42Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
7ed3199
Parents:
812a413
Message:

Moving all generic files to lib/ instead of having some in / and some in
protocols/, and adding RC4 code.

Files:
3 added
6 edited
22 moved

Legend:

Unmodified
Added
Removed
  • Makefile

    r812a413 rdf1694b  
    1010
    1111# Program variables
    12 objects = account.o bitlbee.o conf.o crypting.o help.o ini.o ipc.o irc.o irc_commands.o log.o nick.o query.o root_commands.o set.o storage.o storage_text.o storage_xml.o unix.o url.o user.o util.o
     12objects = account.o bitlbee.o conf.o crypting.o help.o ipc.o irc.o irc_commands.o log.o nick.o query.o root_commands.o set.o storage.o storage_text.o storage_xml.o unix.o user.o
    1313headers = account.h bitlbee.h commands.h conf.h config.h crypting.h help.h ini.h ipc.h irc.h log.h nick.h query.h set.h sock.h storage.h url.h user.h protocols/http_client.h protocols/md5.h protocols/nogaim.h protocols/proxy.h protocols/sha.h protocols/ssl_client.h
    14 subdirs = protocols
     14subdirs = protocols lib
    1515
    1616objects += $(LDAP_OBJ)
  • bitlbee.h

    r812a413 rdf1694b  
    130130#include "query.h"
    131131#include "sock.h"
    132 #include "util.h"
     132#include "misc.h"
    133133#include "proxy.h"
    134134
  • conf.c

    r812a413 rdf1694b  
    3434#include "ipc.h"
    3535
    36 #include "protocols/proxy.h"
     36#include "proxy.h"
    3737
    3838char *CONF_FILE;
  • configure

    r812a413 rdf1694b  
    144144fi
    145145
    146 echo CFLAGS+=-I`pwd` -I`pwd`/protocols -I. >> Makefile.settings
     146echo CFLAGS+=-I`pwd` -I`pwd`/lib -I`pwd`/protocols -I. >> Makefile.settings
    147147
    148148echo CFLAGS+=-DHAVE_CONFIG_H >> Makefile.settings
  • irc_commands.c

    r812a413 rdf1694b  
    321321{
    322322        user_t *u;
    323         char buff[IRC_MAX_LINE], *s;
     323        char buff[IRC_MAX_LINE];
    324324        int lenleft, i;
    325325       
  • protocols/Makefile

    r812a413 rdf1694b  
    1010
    1111# [SH] Program variables
    12 objects = $(EVENT_HANDLER) http_client.o md5.o nogaim.o proxy.o sha.o $(SSL_CLIENT)
     12objects = nogaim.o
    1313
    1414# [SH] The next two lines should contain the directory name (in $(subdirs))
Note: See TracChangeset for help on using the changeset viewer.