comparison src/multi.c @ 3382:e9a89676d120

[gaim-migrate @ 3401] No longer do we build libicq.so -- run make in src/protocols/icq if you feel you need it for some reason (you don't--use OSCAR) TOC is no longer compiled statically by default. If you need it for some reason, you can load the libtoc.so plugin. Ari Pollak fixed up some #ifdefs to get IM images to work in gtk2, and he fixed a few gtk font warnings elsewhere. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Wed, 07 Aug 2002 23:25:33 +0000
parents 8c394e9f0dfb
children 412d1035d666
comparison
equal deleted inserted replaced
3381:5df81b058690 3382:e9a89676d120
942 } 942 }
943 } else if (u->gc) { 943 } else if (u->gc) {
944 u->gc->wants_to_die = TRUE; 944 u->gc->wants_to_die = TRUE;
945 signoff(u->gc); 945 signoff(u->gc);
946 } else { 946 } else {
947 do_error_dialog(_("You cannot log this account in; you do not have " 947 if (u->protocol == PROTO_TOC)
948 "the protocol it uses loaded, or the protocol does " 948 do_error_dialog(_("You have attempted to login an IM account using the "
949 "not have a login function."), _("Login Error")); 949 "TOC protocol. Because this protocol is inferior to "
950 "OSCAR, it is now compiled as a plugin by default. "
951 "To login, edit this account to use OSCAR or load the "
952 "TOC plugin."), _("Login Error"));
953 else
954 do_error_dialog(_("You cannot log this account in; you do not have "
955 "the protocol it uses loaded, or the protocol does "
956 "not have a login function."), _("Login Error"));
950 } 957 }
951 l = l->next; 958 l = l->next;
952 } 959 }
953 } 960 }
954 961