Changeset fd03770
- Timestamp:
- 2006-06-25T19:43:14Z (18 years ago)
- Branches:
- master
- Children:
- c9f0c79
- Parents:
- 6ee9d2d (diff), 9b63df6 (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:
-
- 4 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
.bzrignore
r6ee9d2d rfd03770 12 12 bitlbee.pc 13 13 .gdb_history 14 tests/check -
Makefile
r6ee9d2d rfd03770 46 46 rm -f Makefile.settings config.h 47 47 find . -name 'DEADJOE' -o -name '*.orig' -o -name '*.rej' -o -name '*~' -exec rm -f {} \; 48 49 check: 50 $(MAKE) -C tests 48 51 49 52 install-doc: -
configure
r6ee9d2d rfd03770 207 207 echo 'EVENT_HANDLER=events_'$events'.o' >> Makefile.settings 208 208 209 if [ "$events" = "libevent" ]; then 210 if ! [ -e "${libevent}include/event.h" ]; then 211 echo 212 echo 'Warning: Could not find event.h, you might have to install it and/or specify' 213 echo 'its location using the --libevent= argument. (Example: If event.h is in' 214 echo '/usr/local/include and binaries are in /usr/local/lib: --libevent=/usr/local)' 215 fi 216 217 echo '#define EVENTS_LIBEVENT' >> config.h 218 cat <<EOF>>Makefile.settings 219 EFLAGS+=-levent -L${libevent}lib 220 CFLAGS+=-I${libevent}include 221 EOF 222 elif [ "$events" = "glib" ]; then 223 ## We already use glib anyway, so this is all we need (and in fact not even this, but just to be sure...): 224 echo '#define EVENTS_GLIB' >> config.h 225 else 226 echo 227 echo 'ERROR: Unknown event handler specified.' 228 exit 1 229 fi 230 echo 'EVENT_HANDLER=events_'$events'.o' >> Makefile.settings 231 209 232 detect_gnutls() 210 233 { -
lib/proxy.c
r6ee9d2d rfd03770 539 539 phb->data = data; 540 540 541 #ifndef _WIN32542 sethostent(1);543 #endif544 545 541 if ((proxytype == PROXY_NONE) || !proxyhost || !proxyhost[0] || !proxyport || (proxyport == -1)) 546 542 return proxy_connect_none(host, port, phb); -
nick.c
r6ee9d2d rfd03770 163 163 int i, j; 164 164 165 for( i = j = 0; nick[i] && i< MAX_NICK_LENGTH; i++ )165 for( i = j = 0; nick[i] && j < MAX_NICK_LENGTH; i++ ) 166 166 { 167 167 if( strchr( nick_lc_chars, nick[i] ) || … … 172 172 } 173 173 } 174 while( j < MAX_NICK_LENGTH )174 while( j <= MAX_NICK_LENGTH ) 175 175 nick[j++] = '\0'; 176 176 } -
protocols/msn/msn.c
r6ee9d2d rfd03770 94 94 g_slist_free( md->msgq ); 95 95 } 96 97 g_free( md->grouplist ); 96 98 97 99 g_free( md ); -
protocols/nogaim.c
r6ee9d2d rfd03770 294 294 295 295 serv_got_crap( gc, "Signing off.." ); 296 297 b_event_remove( gc->keepalive ); 296 298 gc->flags |= OPT_LOGGING_OUT; 297 299 298 b_event_remove( gc->keepalive );299 300 gc->keepalive = 0; 300 301 gc->prpl->close( gc ); -
user.c
r6ee9d2d rfd03770 106 106 if( u->nick != u->host ) g_free( u->host ); 107 107 if( u->nick != u->realname ) g_free( u->realname ); 108 if( u->away ) g_free( u->away ); 109 if( u->handle ) g_free( u->handle ); 110 if( u->sendbuf ) g_free( u->sendbuf ); 108 g_free( u->group ); 109 g_free( u->away ); 110 g_free( u->handle ); 111 g_free( u->sendbuf ); 111 112 if( u->sendbuf_timer ) b_event_remove( u->sendbuf_timer ); 112 113 g_free( u );
Note: See TracChangeset
for help on using the changeset viewer.