Changeset 51a799e
- Timestamp:
- 2010-05-25T22:07:06Z (15 years ago)
- Branches:
- master
- Children:
- f60079b
- Parents:
- d25ebea (diff), ba7d16f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Files:
-
- 3 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
rd25ebea r51a799e 10 10 11 11 # Program variables 12 objects = account.o bitlbee.o chat.o crypting.odcc.o help.o ipc.o irc.o irc_commands.o nick.o query.o root_commands.o set.o storage.o $(STORAGE_OBJS) user.o13 headers = account.h bitlbee.h commands.h conf.h config.h crypting.hhelp.h ipc.h irc.h log.h nick.h query.h set.h sock.h storage.h user.h lib/events.h lib/ftutil.h lib/http_client.h lib/ini.h lib/md5.h lib/misc.h lib/proxy.h lib/sha1.h lib/ssl_client.h lib/url.h protocols/ft.h protocols/nogaim.h12 objects = account.o bitlbee.o chat.o dcc.o help.o ipc.o irc.o irc_commands.o nick.o query.o root_commands.o set.o storage.o $(STORAGE_OBJS) user.o 13 headers = account.h bitlbee.h commands.h conf.h config.h help.h ipc.h irc.h log.h nick.h query.h set.h sock.h storage.h user.h lib/events.h lib/ftutil.h lib/http_client.h lib/ini.h lib/md5.h lib/misc.h lib/proxy.h lib/sha1.h lib/ssl_client.h lib/url.h protocols/ft.h protocols/nogaim.h 14 14 subdirs = lib protocols 15 15 -
configure
rd25ebea r51a799e 401 401 fi 402 402 403 STORAGES=" textxml"403 STORAGES="xml" 404 404 405 405 if [ "$ldap" = "auto" ]; then -
irc.c
rd25ebea r51a799e 27 27 #include "bitlbee.h" 28 28 #include "sock.h" 29 #include "crypting.h"30 29 #include "ipc.h" 31 30 #include "dcc.h" -
protocols/jabber/si.c
rd25ebea r51a799e 276 276 if( ( bud = jabber_buddy_by_jid( ic, ini_jid, GET_BUDDY_EXACT ) ) ) 277 277 { 278 bud->last_ act= time( NULL );278 bud->last_msg = time( NULL ); 279 279 ext_jid = bud->ext_jid ? : bud->bare_jid; 280 280 } -
root_commands.c
rd25ebea r51a799e 26 26 #define BITLBEE_CORE 27 27 #include "commands.h" 28 #include "crypting.h"29 28 #include "bitlbee.h" 30 29 #include "help.h" -
storage.c
rd25ebea r51a799e 28 28 #define BITLBEE_CORE 29 29 #include "bitlbee.h" 30 #include "crypting.h"31 30 32 31 extern storage_t storage_text; … … 66 65 storage_t *storage; 67 66 68 register_storage_backend(&storage_text);69 67 register_storage_backend(&storage_xml); 70 68 -
win32.c
rd25ebea r51a799e 27 27 #include "bitlbee.h" 28 28 #include "commands.h" 29 #include "crypting.h"30 29 #include "protocols/nogaim.h" 31 30 #include "help.h"
Note: See TracChangeset
for help on using the changeset viewer.