# HG changeset patch # User Herman Bloggs # Date 1062716937 0 # Node ID 57a24492434bc5edf62a678a054756eaeda720f6 # Parent a781689ca455c99ebea9c544c2c35b3a7c9866b3 [gaim-migrate @ 7277] compile for windows.. committer: Tailor Script diff -r a781689ca455 -r 57a24492434b src/Makefile.mingw --- a/src/Makefile.mingw Thu Sep 04 21:48:15 2003 +0000 +++ b/src/Makefile.mingw Thu Sep 04 23:08:57 2003 +0000 @@ -118,6 +118,7 @@ server.c \ signals.c \ sound.c \ + sslconn.c \ status.c \ stock.c \ themes.c \ diff -r a781689ca455 -r 57a24492434b src/dialogs.c --- a/src/dialogs.c Thu Sep 04 21:48:15 2003 +0000 +++ b/src/dialogs.c Thu Sep 04 23:08:57 2003 +0000 @@ -443,9 +443,10 @@ while(bnode) { GaimBuddy *b; if(GAIM_BLIST_NODE_IS_BUDDY(bnode)) { - b = (GaimBuddy*)bnode; + GaimConversation *c; + b = (GaimBuddy*)bnode; bnode = bnode->next; - GaimConversation *c = gaim_find_conversation_with_account(b->name, b->account); + c = gaim_find_conversation_with_account(b->name, b->account); if(gaim_account_is_connected(b->account)) { serv_remove_buddy(b->account->gc, b->name, g->name); gaim_blist_remove_buddy(b); diff -r a781689ca455 -r 57a24492434b src/protocols/yahoo/Makefile.mingw --- a/src/protocols/yahoo/Makefile.mingw Thu Sep 04 21:48:15 2003 +0000 +++ b/src/protocols/yahoo/Makefile.mingw Thu Sep 04 23:08:57 2003 +0000 @@ -69,6 +69,7 @@ ## C_SRC = yahoo.c \ + yahoochat.c \ crypt.c \ util.c diff -r a781689ca455 -r 57a24492434b src/sslconn.c --- a/src/sslconn.c Thu Sep 04 21:48:15 2003 +0000 +++ b/src/sslconn.c Thu Sep 04 23:08:57 2003 +0000 @@ -122,7 +122,7 @@ gaim_input_remove(gsc->inpa); if (ops != NULL && ops->close != NULL) - ops->close(gsc); + (ops->close)(gsc); if (gsc->fd) close(gsc->fd); @@ -144,8 +144,8 @@ ops = gaim_ssl_get_ops(); - if (ops != NULL && ops->read != NULL) - return ops->read(gsc, data, len); + if (ops != NULL && (ops->read) != NULL) + return (ops->read)(gsc, data, len); return 0; } @@ -161,8 +161,8 @@ ops = gaim_ssl_get_ops(); - if (ops != NULL && ops->write != NULL) - return ops->write(gsc, data, len); + if (ops != NULL && (ops->write) != NULL) + return (ops->write)(gsc, data, len); return 0; }