Changeset c289b6f
- Timestamp:
- 2009-11-19T23:00:56Z (15 years ago)
- Branches:
- master
- Children:
- e5e795d
- Parents:
- c48a033 (diff), 36cf9fd (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:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
account.c
rc48a033 rc289b6f 27 27 #include "bitlbee.h" 28 28 #include "account.h" 29 #include "chat.h" 29 30 30 31 account_t *account_add( irc_t *irc, struct prpl *prpl, char *user, char *pass ) -
bitlbee.h
rc48a033 rc289b6f 129 129 #include "account.h" 130 130 #include "nick.h" 131 #include "chat.h"132 131 #include "conf.h" 133 132 #include "log.h" -
chat.c
rc48a033 rc289b6f 25 25 26 26 #include "bitlbee.h" 27 #include "chat.h" 27 28 28 29 struct chat *chat_add( irc_t *irc, account_t *acc, char *handle, char *channel ) -
chat.h
rc48a033 rc289b6f 24 24 */ 25 25 26 #ifndef _CHAT_H 27 #define _CHAT_H 28 26 29 struct chat 27 30 { … … 45 48 46 49 int chat_join( irc_t *irc, struct chat *c, const char *password ); 50 51 #endif -
configure
rc48a033 rc289b6f 267 267 detect_ldap() 268 268 { 269 TMPFILE= `mktemp`269 TMPFILE=$(mktemp) 270 270 if $CC -o $TMPFILE -shared -lldap 2>/dev/null >/dev/null; then 271 271 cat<<EOF>>Makefile.settings … … 280 280 ret=0 281 281 fi 282 } 283 284 RESOLV_TESTCODE=' 285 #include <arpa/nameser.h> 286 #include <resolv.h> 287 288 int main() 289 { 290 ns_initparse( NULL, 0, NULL ); 291 ns_parserr( NULL, ns_s_an, 0, NULL ); 292 } 293 ' 294 295 detect_resolv_dynamic() 296 { 297 echo "$RESOLV_TESTCODE" | $CC -o /dev/null -x c - -lresolv >/dev/null 2>/dev/null 298 if [ "$?" = "0" ]; then 299 echo 'EFLAGS+=-lresolv' >> Makefile.settings 300 return 0 301 fi 302 303 return 1 304 } 305 306 detect_resolv_static() 307 { 308 for i in $systemlibdirs; do 309 if [ -f $i/libresolv.a ]; then 310 echo "$RESOLV_TESTCODE" | $CC -o /dev/null -x c - -Wl,$i/libresolv.a >/dev/null 2>/dev/null 311 if [ "$?" = "0" ]; then 312 echo 'EFLAGS+='$i'/libresolv.a' >> Makefile.settings 313 return 0 314 fi 315 fi 316 done 317 318 return 1 282 319 } 283 320 … … 349 386 echo 'SSL_CLIENT=ssl_'$ssl'.o' >> Makefile.settings 350 387 351 for i in $systemlibdirs; do 352 if [ -f $i/libresolv.a ]; then 353 echo '#define HAVE_RESOLV_A' >> config.h 354 echo 'EFLAGS+='$i'/libresolv.a' >> Makefile.settings 355 break 356 fi 357 done 388 if detect_resolv_dynamic || detect_resolv_static; then 389 echo '#define HAVE_RESOLV_A' >> config.h 390 fi 358 391 359 392 STORAGES="text xml" -
doc/user-guide/misc.xml
rc48a033 rc289b6f 77 77 78 78 <para> 79 Some protocols (like Jabber) also support named groupchats. BitlBee now supports these too. You can use the <emphasis>chat add</emphasis> command to join them. See <emphasis>help chat _add</emphasis> for more information.79 Some protocols (like Jabber) also support named groupchats. BitlBee now supports these too. You can use the <emphasis>chat add</emphasis> command to join them. See <emphasis>help chat add</emphasis> for more information. 80 80 </para> 81 81 -
irc_commands.c
rc48a033 rc289b6f 27 27 #include "bitlbee.h" 28 28 #include "ipc.h" 29 #include "chat.h" 29 30 30 31 static void irc_cmd_pass( irc_t *irc, char **cmd ) -
lib/misc.c
rc48a033 rc289b6f 46 46 #endif 47 47 48 #include "md5.h" 48 49 #include "ssl_client.h" 49 50 -
protocols/jabber/jabber.h
rc48a033 rc289b6f 27 27 #include <glib.h> 28 28 29 #include "bitlbee.h" 30 #include "md5.h" 29 31 #include "xmltree.h" 30 #include "bitlbee.h"31 32 32 33 extern GSList *jabber_connections; -
protocols/nogaim.c
rc48a033 rc289b6f 33 33 34 34 #define BITLBEE_CORE 35 #include <ctype.h> 36 35 37 #include "nogaim.h" 36 #include <ctype.h>38 #include "chat.h" 37 39 38 40 static int remove_chat_buddy_silent( struct groupchat *b, const char *handle ); -
protocols/nogaim.h
rc48a033 rc289b6f 39 39 #define _NOGAIM_H 40 40 41 #include <stdint.h> 42 41 43 #include "bitlbee.h" 42 44 #include "account.h" 43 45 #include "proxy.h" 44 46 #include "query.h" 45 #include "md5.h"46 47 47 48 #define BUDDY_ALIAS_MAXLEN 388 /* because MSN names can be 387 characters */ -
root_commands.c
rc48a033 rc289b6f 29 29 #include "bitlbee.h" 30 30 #include "help.h" 31 #include "chat.h" 31 32 32 33 #include <string.h> -
storage_xml.c
rc48a033 rc289b6f 29 29 #include "arc.h" 30 30 #include "md5.h" 31 #include "chat.h" 31 32 32 33 #if GLIB_CHECK_VERSION(2,8,0)
Note: See TracChangeset
for help on using the changeset viewer.