# HG changeset patch # User Richard Laager # Date 1171070097 0 # Node ID 3f10bd32ef1c6f3f9c8f6195cb12f510843cb4e7 # Parent b740309318888d756fe70b2f9aa9baf061a30d0a# Parent b03021cef5cb2304124a9046077c3b324e7a0455 merge of '12c5fcf0819724b3304461672fc4bd1ebf0a8287' and 'e485e0b2753d7eb36ce2f7abf8a6eb040cae49b7' diff -r b74030931888 -r 3f10bd32ef1c COPYRIGHT --- a/COPYRIGHT Sat Feb 10 01:10:15 2007 +0000 +++ b/COPYRIGHT Sat Feb 10 01:14:57 2007 +0000 @@ -245,6 +245,7 @@ Havoc Pennington Ted Percival Eduardo Pérez +Matt Perry Celso Pinto Joao Luís Marques Pinto Aleksander Piotrowski diff -r b74030931888 -r 3f10bd32ef1c configure.ac --- a/configure.ac Sat Feb 10 01:10:15 2007 +0000 +++ b/configure.ac Sat Feb 10 01:14:57 2007 +0000 @@ -1978,6 +1978,7 @@ console/plugins/Makefile po/Makefile.in gaim.pc + gaim-uninstalled.pc gaim.spec ]) diff -r b74030931888 -r 3f10bd32ef1c console/libgnt/gnt.pc.in --- a/console/libgnt/gnt.pc.in Sat Feb 10 01:10:15 2007 +0000 +++ b/console/libgnt/gnt.pc.in Sat Feb 10 01:14:57 2007 +0000 @@ -2,11 +2,12 @@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ +datarootdir=@datarootdir@ datadir=@datadir@ sysconfdir=@sysconfdir@ Name: LibGNT -Description: Gaim Ncurses Toolkit is a collection of curses-widgets. +Description: Glib Ncurses Toolkit is a collection of curses-widgets. Version: @VERSION@ Requires: glib-2.0 Cflags: -I${includedir}/gnt diff -r b74030931888 -r 3f10bd32ef1c gaim-uninstalled.pc.in --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gaim-uninstalled.pc.in Sat Feb 10 01:14:57 2007 +0000 @@ -0,0 +1,14 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ +datarootdir=@datarootdir@ +datadir=@datadir@ +sysconfdir=@sysconfdir@ + +Name: Gaim +Description: Gaim is a GTK2-based instant messenger application. +Version: @VERSION@ +Requires: glib-2.0 +Cflags: -I${pc_top_builddir}/${pcfiledir}/libpurple -I${pc_top_builddir}/${pcfiledir}/pidgin +Libs: ${pc_top_builddir}/${pcfiledir}/libpurple/libpurple.la diff -r b74030931888 -r 3f10bd32ef1c gaim.pc.in --- a/gaim.pc.in Sat Feb 10 01:10:15 2007 +0000 +++ b/gaim.pc.in Sat Feb 10 01:14:57 2007 +0000 @@ -2,6 +2,7 @@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ +datarootdir=@datarootdir@ datadir=@datadir@ sysconfdir=@sysconfdir@ diff -r b74030931888 -r 3f10bd32ef1c pidgin/gtkconv.c --- a/pidgin/gtkconv.c Sat Feb 10 01:10:15 2007 +0000 +++ b/pidgin/gtkconv.c Sat Feb 10 01:14:57 2007 +0000 @@ -4932,7 +4932,9 @@ /* TODO: These colors should not be hardcoded so log.c can use them */ - if (flags & GAIM_MESSAGE_SYSTEM) { + if (flags & GAIM_MESSAGE_RAW) { + gtk_imhtml_append_text(GTK_IMHTML(gtkconv->imhtml), message, gtk_font_options_all); + } else if (flags & GAIM_MESSAGE_SYSTEM) { g_snprintf(buf2, sizeof(buf2), "%s", sml_attrib ? sml_attrib : "", mdate, displaying); @@ -4952,8 +4954,6 @@ sml_attrib ? sml_attrib : "", displaying); gtk_imhtml_append_text(GTK_IMHTML(gtkconv->imhtml), buf2, gtk_font_options_all); - } else if (flags & GAIM_MESSAGE_RAW) { - gtk_imhtml_append_text(GTK_IMHTML(gtkconv->imhtml), displaying, gtk_font_options_all); } else { char *new_message = g_memdup(displaying, length); char *alias_escaped = (alias ? g_markup_escape_text(alias, strlen(alias)) : g_strdup(""));