You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(27) |
Jul
(25) |
Aug
(21) |
Sep
(136) |
Oct
(123) |
Nov
(87) |
Dec
(110) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
(87) |
Feb
(88) |
Mar
(81) |
Apr
(255) |
May
(73) |
Jun
(96) |
Jul
(131) |
Aug
(94) |
Sep
(148) |
Oct
(171) |
Nov
(166) |
Dec
(172) |
| 2004 |
Jan
(251) |
Feb
(140) |
Mar
(213) |
Apr
(298) |
May
(182) |
Jun
(185) |
Jul
(159) |
Aug
(376) |
Sep
(334) |
Oct
(256) |
Nov
(217) |
Dec
(189) |
| 2005 |
Jan
(186) |
Feb
(151) |
Mar
(199) |
Apr
(115) |
May
(203) |
Jun
(228) |
Jul
(116) |
Aug
(189) |
Sep
(136) |
Oct
(198) |
Nov
(249) |
Dec
(339) |
| 2006 |
Jan
(167) |
Feb
(185) |
Mar
(95) |
Apr
(133) |
May
(86) |
Jun
(156) |
Jul
(149) |
Aug
(170) |
Sep
(208) |
Oct
(151) |
Nov
(270) |
Dec
(148) |
| 2007 |
Jan
(240) |
Feb
(127) |
Mar
(150) |
Apr
(40) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Ajay G. <aja...@ya...> - 2003-03-31 20:19:28
|
Hello, I am trying install gaim on Debian for yahoo msngr. I downloaded the latest source release from gaim.sf.net Unfortunately, ./configure fails at GLIB test. I have 1.2.0 and looks like gaim requires at least 1.2.5. Anyway, I could compile gaim with GLIB 1.2.0 ? Thanks ===== Ajay Gautam Linux User #252843 http://counter.li.org If i never try anything, i never learn anything... If i never take a risk, i stay where i am. __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com |
|
From: Morten B. P. <mo...@wt...> - 2003-03-31 17:29:33
|
Hi, I found some untranslated strings in src/protocols/jabber/jabber.c. Attached patch against jabber.c fixes it. - Morten. -- http://mbrix.dk/ |
|
From: Mark D. <ma...@ki...> - 2003-03-30 18:56:52
|
> The problem occurs when I try to send a message which I have
> recieved from user1 to user2, where user2 is someone other than
> myself. I get a dialog propt asking me if I want to direct connect
> to user2. I don't want to direct connect to user2! Anyway, even if
> I click the yes button on the dialog box, it refuses to direct
> connect me.
> buf_size = strlen(buf);
> if ( buf_size > MAX_MESSAGE )
> buf_size = MAX_MESSAGE;
> for (i = 0; i < write_to.count; i++) {
> if (strcmp(*who, write_to.handle[i]))
> /*can I send a message to a different user over the same gc that
> I used to **recieve a message from another user?*/
> serv_send_im(gc, write_to.handle[i], buf, buf_size, *flags); } }
That last line should be:
serv_send_im(gc, write_to.handle[i], buf, -1, *flags);
The length parameter should always be set to -1 unless you are IMing someone a
message containing an image. For normal text strings, each PRPL just uses
strlen to find the length of buf.
-Mark
--
O O Mark Doliner
\ | ma...@ki...
\ | www.kingant.net
"I'd rather be rich than stupid."
|
|
From: James L. <ius...@op...> - 2003-03-30 05:54:00
|
Hello
I wrote a plugin. It is supposed to forward messages that I recieve from
user1 to user2. I have most of it striaghtened out. If I make the recieving
user (user2) myself, (i.e. I send messages that user1 sends to me to the
screen name that I am loged on to), then the plugin works fine.
The problem occurs when I try to send a message which I have recieved from
user1 to user2, where user2 is someone other than myself. I get a dialog
propt asking me if I want to direct connect to user2. I don't want to direct
connect to user2! Anyway, even if I click the yes button on the dialog box,
it refuses to direct connect me.
My theory to this whole thing is that I am sending over the wrong connection.
I have not too much knowledge of gaim, so that could be the case. I have
read the HACKING file, read about PRPLS, and looked at the multi.h file, yet
I am still a bit confused as to how the gaim_connections work.
Code in question
typedef struct {
char **handle; //array of strings pointing to aim screen names
size_t count;
} snarray;
snarray read_from;
snarray write_to;
/* checks to see if a person is on the reroute list */
int is_on_list(char *who)
{
int i;
for (i = 0; i<read_from.count; i++) {
if (!(strcasecmp(read_from.handle[i], who)))
return 1;
}
return 0;
}
/* send messages from one person to another*/
static void reroute(struct gaim_connection *gc, char **who,
char **text, guint32 *flags)
{
int i;
size_t sn_size, text_size, buf_size;
char buf[MAX_MESSAGE];
char *pbuf, *temp;
char temp_text[MAX_MESSAGE];
if (!(is_on_list(*who)))
return;
sn_size = strlen(*who);
text_size = strlen(*text);
if (sn_size + text_size > MAX_MESSAGE - 3) {
/* -3 because of terminating nul and ": " between name and text*/
strncpy(temp_text, *text, MAX_MESSAGE - 3 - sn_size);
*(temp_text + MAX_MESSAGE -2 -sn_size) = 0; // nul terminator
} else {
strcpy(temp_text, *text);
}
pbuf = stpcpy(buf, *who);
pbuf = stpcpy(pbuf, ": ");
strcpy (pbuf, *text);
buf_size = strlen(buf);
if ( buf_size > MAX_MESSAGE )
buf_size = MAX_MESSAGE;
for (i = 0; i < write_to.count; i++) {
if (strcmp(*who, write_to.handle[i]))
/*can I send a message to a different user over the same gc that I used to
**recieve a message from another user?*/
serv_send_im(gc, write_to.handle[i], buf, buf_size, *flags);
}
}
char *gaim_plugin_init(GModule *handle)
{
load_config(); //function reads in screen names who need messages forwarded
gaim_signal_connect(handle, event_im_recv, reroute, NULL);
}
thank you very much
--
-James Leddy (iustitia)
|
|
From: Luke S. <lsc...@us...> - 2003-03-30 00:44:36
|
If i set GDK_USE_XFT=0 instead of GDK_USE_XFT=1, then it doesn't crash. hopefully someone can figure this out... luke On Sat, Mar 29, 2003 at 07:36:32PM -0500, Luke Schierer wrote: > debian testing upgraded pagno and and xft2, and at this point gaim is > crashing on start. > > Program received signal SIGSEGV, Segmentation fault. > [Switching to Thread 16384 (LWP 24760)] > 0x406c1af8 in XftCharIndex () from /usr/X11R6/lib/libXft.so.2 > (gdb) bt > #0 0x406c1af8 in XftCharIndex () from /usr/X11R6/lib/libXft.so.2 > #1 0x406c2be2 in XftCharSpecRender () from /usr/X11R6/lib/libXft.so.2 > #2 0x402a777d in _pango_xft_font_new () from /usr/lib/libpangoxft-1.0.so.0 > #3 0x402a79b5 in pango_xft_picture_render () from > /usr/lib/libpangoxft-1.0.so.0 > #4 0x4025055b in _gdk_x11_have_render () from /usr/lib/libgdk-x11-2.0.so.0 > #5 0x40234de8 in gdk_draw_glyphs () from /usr/lib/libgdk-x11-2.0.so.0 > #6 0x4023ccb8 in gdk_pixmap_get_type () from /usr/lib/libgdk-x11-2.0.so.0 > #7 0x40234de8 in gdk_draw_glyphs () from /usr/lib/libgdk-x11-2.0.so.0 > #8 0x40246832 in gdk_window_get_internal_paint_info () from > /usr/lib/libgdk-x11-2.0.so.0 > #9 0x40234de8 in gdk_draw_glyphs () from /usr/lib/libgdk-x11-2.0.so.0 > #10 0x4023947c in gdk_draw_layout_line_with_colors () from > /usr/lib/libgdk-x11-2.0.so.0 > #11 0x402397c8 in gdk_draw_layout_with_colors () from > /usr/lib/libgdk-x11-2.0.so.0 > #12 0x402399f0 in gdk_draw_layout () from /usr/lib/libgdk-x11-2.0.so.0 > #13 0x40119319 in gtk_style_apply_default_background () from > /usr/lib/libgtk-x11-2.0.so.0 > #14 0x4011aa8d in gtk_paint_layout () from /usr/lib/libgtk-x11-2.0.so.0 > #15 0x400c685e in gtk_label_get () from /usr/lib/libgtk-x11-2.0.so.0 > #16 0x400d5a42 in _gtk_marshal_BOOLEAN__BOXED () from > /usr/lib/libgtk-x11-2.0.so.0 > #17 0x40304bf6 in g_cclosure_new_swap () from /usr/lib/libgobject-2.0.so.0 > #18 0x40304956 in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0 > #19 0x40313f0c in g_signal_emit_by_name () from /usr/lib/libgobject-2.0.so.0 > #20 0x40313395 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0 > #21 0x4010acbf in gtk_signal_emit () from /usr/lib/libgtk-x11-2.0.so.0 > #22 0x4018ae8d in gtk_widget_send_expose () from > /usr/lib/libgtk-x11-2.0.so.0 > #23 0x4018abfa in gtk_widget_send_expose () from > /usr/lib/libgtk-x11-2.0.so.0 > #24 0x4008d379 in gtk_container_propagate_expose () from > /usr/lib/libgtk-x11-2.0.so.0 > #25 0x4008d06a in gtk_container_get_focus_hadjustment () from > /usr/lib/libgtk-x11-2.0.so.0 > #26 0x40063025 in gtk_bin_get_type () from /usr/lib/libgtk-x11-2.0.so.0 > #27 0x4008b7a2 in gtk_container_forall () from /usr/lib/libgtk-x11-2.0.so.0 > #28 0x4008d129 in gtk_container_get_focus_hadjustment () from > /usr/lib/libgtk-x11-2.0.so.0 > #29 0x4006893d in _gtk_button_paint () from /usr/lib/libgtk-x11-2.0.so.0 > #30 0x400d5a42 in _gtk_marshal_BOOLEAN__BOXED () from > /usr/lib/libgtk-x11-2.0.so.0 > #31 0x40304bf6 in g_cclosure_new_swap () from /usr/lib/libgobject-2.0.so.0 > #32 0x40304956 in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0 > #33 0x40313f0c in g_signal_emit_by_name () from /usr/lib/libgobject-2.0.so.0 > #34 0x40313395 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0 > #35 0x4010acbf in gtk_signal_emit () from /usr/lib/libgtk-x11-2.0.so.0 > #36 0x4018ae8d in gtk_widget_send_expose () from > /usr/lib/libgtk-x11-2.0.so.0 > #37 0x4018abfa in gtk_widget_send_expose () from > /usr/lib/libgtk-x11-2.0.so.0 > #38 0x4008d379 in gtk_container_propagate_expose () from > /usr/lib/libgtk-x11-2.0.so.0 > #39 0x4008d06a in gtk_container_get_focus_hadjustment () from > /usr/lib/libgtk-x11-2.0.so.0 > #40 0x4011de47 in gtk_table_get_homogeneous () from > /usr/lib/libgtk-x11-2.0.so.0 > #41 0x4008b7a2 in gtk_container_forall () from /usr/lib/libgtk-x11-2.0.so.0 > #42 0x4008d129 in gtk_container_get_focus_hadjustment () from > /usr/lib/libgtk-x11-2.0.so.0 > #43 0x400d5a42 in _gtk_marshal_BOOLEAN__BOXED () from > /usr/lib/libgtk-x11-2.0.so.0 > #44 0x40304bf6 in g_cclosure_new_swap () from /usr/lib/libgobject-2.0.so.0 > #45 0x40304956 in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0 > #46 0x40313f0c in g_signal_emit_by_name () from /usr/lib/libgobject-2.0.so.0 > #47 0x40313395 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0 > #48 0x4010acbf in gtk_signal_emit () from /usr/lib/libgtk-x11-2.0.so.0 > #49 0x4018ae8d in gtk_widget_send_expose () from > /usr/lib/libgtk-x11-2.0.so.0 > #50 0x4018abfa in gtk_widget_send_expose () from > /usr/lib/libgtk-x11-2.0.so.0 > #51 0x4008d379 in gtk_container_propagate_expose () from > /usr/lib/libgtk-x11-2.0.so.0 > #52 0x4008d06a in gtk_container_get_focus_hadjustment () from > /usr/lib/libgtk-x11-2.0.so.0 > #53 0x40067280 in gtk_box_set_child_packing () from > /usr/lib/libgtk-x11-2.0.so.0 > #54 0x4008b7a2 in gtk_container_forall () from /usr/lib/libgtk-x11-2.0.so.0 > #55 0x4008d129 in gtk_container_get_focus_hadjustment () from > /usr/lib/libgtk-x11-2.0.so.0 > #56 0x400d5a42 in _gtk_marshal_BOOLEAN__BOXED () from > /usr/lib/libgtk-x11-2.0.so.0 > #57 0x40304bf6 in g_cclosure_new_swap () from /usr/lib/libgobject-2.0.so.0 > #58 0x40304956 in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0 > #59 0x40313f0c in g_signal_emit_by_name () from /usr/lib/libgobject-2.0.so.0 > #60 0x40313395 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0 > #61 0x4010acbf in gtk_signal_emit () from /usr/lib/libgtk-x11-2.0.so.0 > #62 0x4018ae8d in gtk_widget_send_expose () from > /usr/lib/libgtk-x11-2.0.so.0 > #63 0x4018abfa in gtk_widget_send_expose () from > /usr/lib/libgtk-x11-2.0.so.0 > #64 0x4008d379 in gtk_container_propagate_expose () from > /usr/lib/libgtk-x11-2.0.so.0 > #65 0x4008d06a in gtk_container_get_focus_hadjustment () from > /usr/lib/libgtk-x11-2.0.so.0 > #66 0x40063025 in gtk_bin_get_type () from /usr/lib/libgtk-x11-2.0.so.0 > #67 0x4008b7a2 in gtk_container_forall () from /usr/lib/libgtk-x11-2.0.so.0 > #68 0x4008d129 in gtk_container_get_focus_hadjustment () from > /usr/lib/libgtk-x11-2.0.so.0 > ---Type <return> to continue, or q <return> to quit--- > #69 0x40195e5d in _gtk_window_constrain_size () from > /usr/lib/libgtk-x11-2.0.so.0 > #70 0x400d5a42 in _gtk_marshal_BOOLEAN__BOXED () from > /usr/lib/libgtk-x11-2.0.so.0 > #71 0x40304bf6 in g_cclosure_new_swap () from /usr/lib/libgobject-2.0.so.0 > #72 0x40304956 in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0 > #73 0x40313f0c in g_signal_emit_by_name () from /usr/lib/libgobject-2.0.so.0 > #74 0x40313395 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0 > #75 0x4010acbf in gtk_signal_emit () from /usr/lib/libgtk-x11-2.0.so.0 > #76 0x4018ae8d in gtk_widget_send_expose () from > /usr/lib/libgtk-x11-2.0.so.0 > #77 0x4018abfa in gtk_widget_send_expose () from > /usr/lib/libgtk-x11-2.0.so.0 > #78 0x400d4893 in gtk_main_do_event () from /usr/lib/libgtk-x11-2.0.so.0 > #79 0x40247378 in gdk_window_clear_area_e () from > /usr/lib/libgdk-x11-2.0.so.0 > #80 0x40247421 in gdk_window_process_all_updates () from > /usr/lib/libgdk-x11-2.0.so.0 > #81 0x4008b3ab in gtk_container_set_reallocate_redraws () from > /usr/lib/libgtk-x11-2.0.so.0 > #82 0x40350be8 in g_timeout_add () from /usr/lib/libglib-2.0.so.0 > #83 0x4034e44f in g_get_current_time () from /usr/lib/libglib-2.0.so.0 > #84 0x4034f369 in g_main_context_dispatch () from /usr/lib/libglib-2.0.so.0 > #85 0x4034f66f in g_main_context_dispatch () from /usr/lib/libglib-2.0.so.0 > #86 0x4034fcbe in g_main_loop_run () from /usr/lib/libglib-2.0.so.0 > #87 0x400d400f in gtk_main () from /usr/lib/libgtk-x11-2.0.so.0 > #88 0x08095342 in main (argc=2, argv=0xbffff9e4) at main.c:919 > (gdb) dns[24761]: nobody needs me... =( > dns[24762]: nobody needs me... =( > > a nice all gtk bactrace :-( > luke > -- > -This email is made of 100% recycled electrons. > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Gaim-devel mailing list > Gai...@li... > https://lists.sourceforge.net/lists/listinfo/gaim-devel -- -This email is made of 100% recycled electrons. |
|
From: Luke S. <lsc...@ta...> - 2003-03-30 00:37:36
|
debian testing upgraded pagno and and xft2, and at this point gaim is crashing on start. Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 16384 (LWP 24760)] 0x406c1af8 in XftCharIndex () from /usr/X11R6/lib/libXft.so.2 (gdb) bt #0 0x406c1af8 in XftCharIndex () from /usr/X11R6/lib/libXft.so.2 #1 0x406c2be2 in XftCharSpecRender () from /usr/X11R6/lib/libXft.so.2 #2 0x402a777d in _pango_xft_font_new () from /usr/lib/libpangoxft-1.0.so.0 #3 0x402a79b5 in pango_xft_picture_render () from /usr/lib/libpangoxft-1.0.so.0 #4 0x4025055b in _gdk_x11_have_render () from /usr/lib/libgdk-x11-2.0.so.0 #5 0x40234de8 in gdk_draw_glyphs () from /usr/lib/libgdk-x11-2.0.so.0 #6 0x4023ccb8 in gdk_pixmap_get_type () from /usr/lib/libgdk-x11-2.0.so.0 #7 0x40234de8 in gdk_draw_glyphs () from /usr/lib/libgdk-x11-2.0.so.0 #8 0x40246832 in gdk_window_get_internal_paint_info () from /usr/lib/libgdk-x11-2.0.so.0 #9 0x40234de8 in gdk_draw_glyphs () from /usr/lib/libgdk-x11-2.0.so.0 #10 0x4023947c in gdk_draw_layout_line_with_colors () from /usr/lib/libgdk-x11-2.0.so.0 #11 0x402397c8 in gdk_draw_layout_with_colors () from /usr/lib/libgdk-x11-2.0.so.0 #12 0x402399f0 in gdk_draw_layout () from /usr/lib/libgdk-x11-2.0.so.0 #13 0x40119319 in gtk_style_apply_default_background () from /usr/lib/libgtk-x11-2.0.so.0 #14 0x4011aa8d in gtk_paint_layout () from /usr/lib/libgtk-x11-2.0.so.0 #15 0x400c685e in gtk_label_get () from /usr/lib/libgtk-x11-2.0.so.0 #16 0x400d5a42 in _gtk_marshal_BOOLEAN__BOXED () from /usr/lib/libgtk-x11-2.0.so.0 #17 0x40304bf6 in g_cclosure_new_swap () from /usr/lib/libgobject-2.0.so.0 #18 0x40304956 in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0 #19 0x40313f0c in g_signal_emit_by_name () from /usr/lib/libgobject-2.0.so.0 #20 0x40313395 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0 #21 0x4010acbf in gtk_signal_emit () from /usr/lib/libgtk-x11-2.0.so.0 #22 0x4018ae8d in gtk_widget_send_expose () from /usr/lib/libgtk-x11-2.0.so.0 #23 0x4018abfa in gtk_widget_send_expose () from /usr/lib/libgtk-x11-2.0.so.0 #24 0x4008d379 in gtk_container_propagate_expose () from /usr/lib/libgtk-x11-2.0.so.0 #25 0x4008d06a in gtk_container_get_focus_hadjustment () from /usr/lib/libgtk-x11-2.0.so.0 #26 0x40063025 in gtk_bin_get_type () from /usr/lib/libgtk-x11-2.0.so.0 #27 0x4008b7a2 in gtk_container_forall () from /usr/lib/libgtk-x11-2.0.so.0 #28 0x4008d129 in gtk_container_get_focus_hadjustment () from /usr/lib/libgtk-x11-2.0.so.0 #29 0x4006893d in _gtk_button_paint () from /usr/lib/libgtk-x11-2.0.so.0 #30 0x400d5a42 in _gtk_marshal_BOOLEAN__BOXED () from /usr/lib/libgtk-x11-2.0.so.0 #31 0x40304bf6 in g_cclosure_new_swap () from /usr/lib/libgobject-2.0.so.0 #32 0x40304956 in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0 #33 0x40313f0c in g_signal_emit_by_name () from /usr/lib/libgobject-2.0.so.0 #34 0x40313395 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0 #35 0x4010acbf in gtk_signal_emit () from /usr/lib/libgtk-x11-2.0.so.0 #36 0x4018ae8d in gtk_widget_send_expose () from /usr/lib/libgtk-x11-2.0.so.0 #37 0x4018abfa in gtk_widget_send_expose () from /usr/lib/libgtk-x11-2.0.so.0 #38 0x4008d379 in gtk_container_propagate_expose () from /usr/lib/libgtk-x11-2.0.so.0 #39 0x4008d06a in gtk_container_get_focus_hadjustment () from /usr/lib/libgtk-x11-2.0.so.0 #40 0x4011de47 in gtk_table_get_homogeneous () from /usr/lib/libgtk-x11-2.0.so.0 #41 0x4008b7a2 in gtk_container_forall () from /usr/lib/libgtk-x11-2.0.so.0 #42 0x4008d129 in gtk_container_get_focus_hadjustment () from /usr/lib/libgtk-x11-2.0.so.0 #43 0x400d5a42 in _gtk_marshal_BOOLEAN__BOXED () from /usr/lib/libgtk-x11-2.0.so.0 #44 0x40304bf6 in g_cclosure_new_swap () from /usr/lib/libgobject-2.0.so.0 #45 0x40304956 in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0 #46 0x40313f0c in g_signal_emit_by_name () from /usr/lib/libgobject-2.0.so.0 #47 0x40313395 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0 #48 0x4010acbf in gtk_signal_emit () from /usr/lib/libgtk-x11-2.0.so.0 #49 0x4018ae8d in gtk_widget_send_expose () from /usr/lib/libgtk-x11-2.0.so.0 #50 0x4018abfa in gtk_widget_send_expose () from /usr/lib/libgtk-x11-2.0.so.0 #51 0x4008d379 in gtk_container_propagate_expose () from /usr/lib/libgtk-x11-2.0.so.0 #52 0x4008d06a in gtk_container_get_focus_hadjustment () from /usr/lib/libgtk-x11-2.0.so.0 #53 0x40067280 in gtk_box_set_child_packing () from /usr/lib/libgtk-x11-2.0.so.0 #54 0x4008b7a2 in gtk_container_forall () from /usr/lib/libgtk-x11-2.0.so.0 #55 0x4008d129 in gtk_container_get_focus_hadjustment () from /usr/lib/libgtk-x11-2.0.so.0 #56 0x400d5a42 in _gtk_marshal_BOOLEAN__BOXED () from /usr/lib/libgtk-x11-2.0.so.0 #57 0x40304bf6 in g_cclosure_new_swap () from /usr/lib/libgobject-2.0.so.0 #58 0x40304956 in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0 #59 0x40313f0c in g_signal_emit_by_name () from /usr/lib/libgobject-2.0.so.0 #60 0x40313395 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0 #61 0x4010acbf in gtk_signal_emit () from /usr/lib/libgtk-x11-2.0.so.0 #62 0x4018ae8d in gtk_widget_send_expose () from /usr/lib/libgtk-x11-2.0.so.0 #63 0x4018abfa in gtk_widget_send_expose () from /usr/lib/libgtk-x11-2.0.so.0 #64 0x4008d379 in gtk_container_propagate_expose () from /usr/lib/libgtk-x11-2.0.so.0 #65 0x4008d06a in gtk_container_get_focus_hadjustment () from /usr/lib/libgtk-x11-2.0.so.0 #66 0x40063025 in gtk_bin_get_type () from /usr/lib/libgtk-x11-2.0.so.0 #67 0x4008b7a2 in gtk_container_forall () from /usr/lib/libgtk-x11-2.0.so.0 #68 0x4008d129 in gtk_container_get_focus_hadjustment () from /usr/lib/libgtk-x11-2.0.so.0 ---Type <return> to continue, or q <return> to quit--- #69 0x40195e5d in _gtk_window_constrain_size () from /usr/lib/libgtk-x11-2.0.so.0 #70 0x400d5a42 in _gtk_marshal_BOOLEAN__BOXED () from /usr/lib/libgtk-x11-2.0.so.0 #71 0x40304bf6 in g_cclosure_new_swap () from /usr/lib/libgobject-2.0.so.0 #72 0x40304956 in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0 #73 0x40313f0c in g_signal_emit_by_name () from /usr/lib/libgobject-2.0.so.0 #74 0x40313395 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0 #75 0x4010acbf in gtk_signal_emit () from /usr/lib/libgtk-x11-2.0.so.0 #76 0x4018ae8d in gtk_widget_send_expose () from /usr/lib/libgtk-x11-2.0.so.0 #77 0x4018abfa in gtk_widget_send_expose () from /usr/lib/libgtk-x11-2.0.so.0 #78 0x400d4893 in gtk_main_do_event () from /usr/lib/libgtk-x11-2.0.so.0 #79 0x40247378 in gdk_window_clear_area_e () from /usr/lib/libgdk-x11-2.0.so.0 #80 0x40247421 in gdk_window_process_all_updates () from /usr/lib/libgdk-x11-2.0.so.0 #81 0x4008b3ab in gtk_container_set_reallocate_redraws () from /usr/lib/libgtk-x11-2.0.so.0 #82 0x40350be8 in g_timeout_add () from /usr/lib/libglib-2.0.so.0 #83 0x4034e44f in g_get_current_time () from /usr/lib/libglib-2.0.so.0 #84 0x4034f369 in g_main_context_dispatch () from /usr/lib/libglib-2.0.so.0 #85 0x4034f66f in g_main_context_dispatch () from /usr/lib/libglib-2.0.so.0 #86 0x4034fcbe in g_main_loop_run () from /usr/lib/libglib-2.0.so.0 #87 0x400d400f in gtk_main () from /usr/lib/libgtk-x11-2.0.so.0 #88 0x08095342 in main (argc=2, argv=0xbffff9e4) at main.c:919 (gdb) dns[24761]: nobody needs me... =( dns[24762]: nobody needs me... =( a nice all gtk bactrace :-( luke -- -This email is made of 100% recycled electrons. |
|
From: Ajay G. <aja...@ya...> - 2003-03-27 19:08:56
|
--- Mark Doliner <ma...@ki...> wrote: > Does /home/agutam/cvs_sources/gaim/bin/gaim exist? Yes, it does, I am able to start gdb and kdbg against the same binary file. > That seems like a weird > path to me... I also get the feeling that you > didn't run make install. Yes, I did, but as you guess later, I did not do it system wide. Read on... :) > Either that or it failed. Now I am going to read a > list: > > -Make sure you keep your gaim source code around, > you'll need it for debugging yes, I do, in /home/agautam/cvs_sources/gaim > -I find it useful to "export CLFAGS='-Wall -ggdb'" > Sometimes gdb gives more > useful output. I've had weird results with this on > different distributions > with different versions of stuff > > -If you're not going to install gaim system-wide, > you still need to run make > install. When you run ./autogen.sh or ./configure, > use the prefix switch to > specify an alternate path to install Gaim to. An > example is "./autogen.sh > --prefix="/home/agautam/gaimcvs"" This puts the > gaim binary in > /home/agautam/gaimcvs/bin/ I did: $ ./configure --prefix=/home/agautam/cvs_sources/gaim --enable-debug $ make $ make install All as user agautam, and all went fine. gaim and remote-gaim are in /home/agautam/cvs_sources/gaim/bin > -All the plugins were probably unloaded because you > were using 0.59 and you > ran 0.60. 0.60 loads protocol plugins > automatically, and so the protocol > plugins are no longer specified in your ~/.gaimrc > file Running gaim from /home/agautam/cvs_sources/gaim/bin works fine, it logons to my yahoo and AOL IDs. But it does screw my .gaimrc for 0.59.9, which does not bother me a lot :) More suggestions most welcome Thanks for your comments :) Ajay > > -Mark > > > On Thu, 27 Mar 2003 04:59:07 -0800 (PST), Ajay > Gautam wrote > > What is everyone using for debugging ? > > > > I tried using kdevelop, but it can't seem to debug > the > > gaim binary. I get an error dialog stating: > > "gdb message: > > This GDB was configured as > > > "i686-pc-linux-gnu"..."/home/agautam/cvs_sources/gaim/bin/gaim": > > No such file or directory." > > > > Dialog screen dump: > > http://ajaygautam.homelinux.net/kdev-gaim.jpg > > Execute from KDevelop works fine ! > > > > I tried using the KDE debugger (Kdbg), I am able > to > > run gaim, but can't seem to set a break point. > > > > I would prefer to use a GUI (IDE) based debugger. > gdb > > seems like, it would need some time to learn. > > > > As you can see, this is my first development > project > > on Linux. Any help / info will be highly > appreciated. > > > > Thanks > > > > --- Luke Schierer <lsc...@ta...> wrote: > > > On Tue, Mar 25, 2003 at 06:00:17PM -0800, Ajay > > > Gautam wrote: > > > > Hello, > > > > > > > > I got the CVS version of gaim into > > > > /home/agautam/cvs_sources/gaim > > > > > > > > cd /home/agautam/cvs_sources/ > > > > cvs -d:blah:blah:blah co gaim > > > > cd gaim > > > > ./configure > > > > make > > > > cd src > > > > gdb ./gaim > > > > > > > > The gaim that comes up looks like: > > > > http://ajaygautam.homelinux.net/gaim.jpg > > > > > > this isn't reachable, the connection is refused. > > > > > > > > > > > > It also screwed up my gaim config in my home > > > directory > > > > and unloaded all the gaim plugins. > > > > > > any plugins will have to be updated to conform > to > > > the newwer plugin api. > > > > > > > > > > > I also tried to run thru kdevelop, but had the > > > same > > > > results. > > > > > > > > I am trying to debug why gaim is not able to > get > > > all > > > > off-line yahoo messages. > > > > > > > > > > unlike all other yahoo messages, offline > messages > > > are delivered to you in a > > > single packet (others come in one packet per > > > message). we currently only > > > pull the last message out of that packet. a > patch > > > would be greatly > > > appreciated. > > > > > > > > > > Any pointers, tips, help to get gaim debugging > > > will be > > > > really helpful... > > > > > > > > > good luck. > > > luke > > > > > > -- > > > -This email is made of 100% recycled electrons. > > > > ===== > > Ajay Gautam > > Linux User #252843 http://counter.li.org > > If i never try anything, i never learn anything... > > If i never take a risk, i stay where i am. > > > > __________________________________________________ > > Do you Yahoo!? > > Yahoo! Platinum - Watch CBS' NCAA March Madness, > live on your > > desktop! http://platinum.yahoo.com > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: > > The Definitive IT and Networking Event. Be There! > > NetWorld+Interop Las Vegas 2003 -- Register today! > > > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > > _______________________________________________ > > Gaim-devel mailing list > > Gai...@li... > > > https://lists.sourceforge.net/lists/listinfo/gaim-devel > > > > -- > O O Mark Doliner > \ | ma...@ki... > \ | www.kingant.net > "I'd rather be rich than stupid." ===== Ajay Gautam Linux User #252843 http://counter.li.org If i never try anything, i never learn anything... If i never take a risk, i stay where i am. __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com |
|
From: Mark D. <ma...@ki...> - 2003-03-27 18:14:22
|
Does /home/agutam/cvs_sources/gaim/bin/gaim exist? That seems like a weird path to me... I also get the feeling that you didn't run make install. Either that or it failed. Now I am going to read a list: -Make sure you keep your gaim source code around, you'll need it for debugging -I find it useful to "export CLFAGS='-Wall -ggdb'" Sometimes gdb gives more useful output. I've had weird results with this on different distributions with different versions of stuff -If you're not going to install gaim system-wide, you still need to run make install. When you run ./autogen.sh or ./configure, use the prefix switch to specify an alternate path to install Gaim to. An example is "./autogen.sh --prefix="/home/agautam/gaimcvs"" This puts the gaim binary in /home/agautam/gaimcvs/bin/ -All the plugins were probably unloaded because you were using 0.59 and you ran 0.60. 0.60 loads protocol plugins automatically, and so the protocol plugins are no longer specified in your ~/.gaimrc file -Mark On Thu, 27 Mar 2003 04:59:07 -0800 (PST), Ajay Gautam wrote > What is everyone using for debugging ? > > I tried using kdevelop, but it can't seem to debug the > gaim binary. I get an error dialog stating: > "gdb message: > This GDB was configured as > "i686-pc-linux-gnu"..."/home/agautam/cvs_sources/gaim/bin/gaim": > No such file or directory." > > Dialog screen dump: > http://ajaygautam.homelinux.net/kdev-gaim.jpg > Execute from KDevelop works fine ! > > I tried using the KDE debugger (Kdbg), I am able to > run gaim, but can't seem to set a break point. > > I would prefer to use a GUI (IDE) based debugger. gdb > seems like, it would need some time to learn. > > As you can see, this is my first development project > on Linux. Any help / info will be highly appreciated. > > Thanks > > --- Luke Schierer <lsc...@ta...> wrote: > > On Tue, Mar 25, 2003 at 06:00:17PM -0800, Ajay > > Gautam wrote: > > > Hello, > > > > > > I got the CVS version of gaim into > > > /home/agautam/cvs_sources/gaim > > > > > > cd /home/agautam/cvs_sources/ > > > cvs -d:blah:blah:blah co gaim > > > cd gaim > > > ./configure > > > make > > > cd src > > > gdb ./gaim > > > > > > The gaim that comes up looks like: > > > http://ajaygautam.homelinux.net/gaim.jpg > > > > this isn't reachable, the connection is refused. > > > > > > > > It also screwed up my gaim config in my home > > directory > > > and unloaded all the gaim plugins. > > > > any plugins will have to be updated to conform to > > the newwer plugin api. > > > > > > > > I also tried to run thru kdevelop, but had the > > same > > > results. > > > > > > I am trying to debug why gaim is not able to get > > all > > > off-line yahoo messages. > > > > > > > unlike all other yahoo messages, offline messages > > are delivered to you in a > > single packet (others come in one packet per > > message). we currently only > > pull the last message out of that packet. a patch > > would be greatly > > appreciated. > > > > > > > Any pointers, tips, help to get gaim debugging > > will be > > > really helpful... > > > > > > good luck. > > luke > > > > -- > > -This email is made of 100% recycled electrons. > > ===== > Ajay Gautam > Linux User #252843 http://counter.li.org > If i never try anything, i never learn anything... > If i never take a risk, i stay where i am. > > __________________________________________________ > Do you Yahoo!? > Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your > desktop! http://platinum.yahoo.com > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Gaim-devel mailing list > Gai...@li... > https://lists.sourceforge.net/lists/listinfo/gaim-devel -- O O Mark Doliner \ | ma...@ki... \ | www.kingant.net "I'd rather be rich than stupid." |
|
From: Luke S. <lsc...@ta...> - 2003-03-27 15:27:40
|
Most people i know use gdb directly. it does take some time to learn, and few people learn all of it, most just learn what they need to, but its worth the investment if you plan on coding much. luke On Thu, 27 Mar 2003, Ajay Gautam wrote: > What is everyone using for debugging ? > > I tried using kdevelop, but it can't seem to debug the > gaim binary. I get an error dialog stating: > "gdb message: > This GDB was configured as > "i686-pc-linux-gnu"..."/home/agautam/cvs_sources/gaim/bin/gaim": > No such file or directory." > > Dialog screen dump: > http://ajaygautam.homelinux.net/kdev-gaim.jpg > Execute from KDevelop works fine ! > > I tried using the KDE debugger (Kdbg), I am able to > run gaim, but can't seem to set a break point. > > I would prefer to use a GUI (IDE) based debugger. gdb > seems like, it would need some time to learn. > > As you can see, this is my first development project > on Linux. Any help / info will be highly appreciated. > > Thanks > > --- Luke Schierer <lsc...@ta...> wrote: > > On Tue, Mar 25, 2003 at 06:00:17PM -0800, Ajay > > Gautam wrote: > > > Hello, > > > > > > I got the CVS version of gaim into > > > /home/agautam/cvs_sources/gaim > > > > > > cd /home/agautam/cvs_sources/ > > > cvs -d:blah:blah:blah co gaim > > > cd gaim > > > ./configure > > > make > > > cd src > > > gdb ./gaim > > > > > > The gaim that comes up looks like: > > > http://ajaygautam.homelinux.net/gaim.jpg > > > > this isn't reachable, the connection is refused. > > > > > > > > It also screwed up my gaim config in my home > > directory > > > and unloaded all the gaim plugins. > > > > any plugins will have to be updated to conform to > > the newwer plugin api. > > > > > > > > I also tried to run thru kdevelop, but had the > > same > > > results. > > > > > > I am trying to debug why gaim is not able to get > > all > > > off-line yahoo messages. > > > > > > > unlike all other yahoo messages, offline messages > > are delivered to you in a > > single packet (others come in one packet per > > message). we currently only > > pull the last message out of that packet. a patch > > would be greatly > > appreciated. > > > > > > > Any pointers, tips, help to get gaim debugging > > will be > > > really helpful... > > > > > > good luck. > > luke > > > > -- > > -This email is made of 100% recycled electrons. > > > ===== > Ajay Gautam > Linux User #252843 http://counter.li.org > If i never try anything, i never learn anything... > If i never take a risk, i stay where i am. > > __________________________________________________ > Do you Yahoo!? > Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! > http://platinum.yahoo.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Gaim-devel mailing list > Gai...@li... > https://lists.sourceforge.net/lists/listinfo/gaim-devel > |
|
From: Ajay G. <aja...@ya...> - 2003-03-27 12:59:08
|
What is everyone using for debugging ? I tried using kdevelop, but it can't seem to debug the gaim binary. I get an error dialog stating: "gdb message: This GDB was configured as "i686-pc-linux-gnu"..."/home/agautam/cvs_sources/gaim/bin/gaim": No such file or directory." Dialog screen dump: http://ajaygautam.homelinux.net/kdev-gaim.jpg Execute from KDevelop works fine ! I tried using the KDE debugger (Kdbg), I am able to run gaim, but can't seem to set a break point. I would prefer to use a GUI (IDE) based debugger. gdb seems like, it would need some time to learn. As you can see, this is my first development project on Linux. Any help / info will be highly appreciated. Thanks --- Luke Schierer <lsc...@ta...> wrote: > On Tue, Mar 25, 2003 at 06:00:17PM -0800, Ajay > Gautam wrote: > > Hello, > > > > I got the CVS version of gaim into > > /home/agautam/cvs_sources/gaim > > > > cd /home/agautam/cvs_sources/ > > cvs -d:blah:blah:blah co gaim > > cd gaim > > ./configure > > make > > cd src > > gdb ./gaim > > > > The gaim that comes up looks like: > > http://ajaygautam.homelinux.net/gaim.jpg > > this isn't reachable, the connection is refused. > > > > > It also screwed up my gaim config in my home > directory > > and unloaded all the gaim plugins. > > any plugins will have to be updated to conform to > the newwer plugin api. > > > > > I also tried to run thru kdevelop, but had the > same > > results. > > > > I am trying to debug why gaim is not able to get > all > > off-line yahoo messages. > > > > unlike all other yahoo messages, offline messages > are delivered to you in a > single packet (others come in one packet per > message). we currently only > pull the last message out of that packet. a patch > would be greatly > appreciated. > > > > Any pointers, tips, help to get gaim debugging > will be > > really helpful... > > > good luck. > luke > > -- > -This email is made of 100% recycled electrons. ===== Ajay Gautam Linux User #252843 http://counter.li.org If i never try anything, i never learn anything... If i never take a risk, i stay where i am. __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com |
|
From: Nathan W. <fac...@fa...> - 2003-03-26 04:24:07
|
On Tue, Mar 25, 2003 at 06:00:17PM -0800, Ajay Gautam wrote: > Hello, >=20 > I got the CVS version of gaim into > /home/agautam/cvs_sources/gaim >=20 > cd /home/agautam/cvs_sources/ > cvs -d:blah:blah:blah co gaim > cd gaim > ./configure > make > cd src > gdb ./gaim >=20 > The gaim that comes up looks like: > http://ajaygautam.homelinux.net/gaim.jpg I get connection refused when trying to access this page. > It also screwed up my gaim config in my home directory > and unloaded all the gaim plugins. I don't doubt it, I'll explain below. >=20 > I also tried to run thru kdevelop, but had the same > results. >=20 > I am trying to debug why gaim is not able to get all > off-line yahoo messages. >=20 > Any pointers, tips, help to get gaim debugging will be > really helpful... You have to install gaim to run it. It needs to be able to find the protocol plugins, the pixmaps (i'm guessing your screenshot shows gaim without any images), and the regular plugins. It will unload any plugins it can't load. It probably tried to load the old plugins you had installed, found unresolved symbols and all sorts of other chaos. Install gaim, then run it from the installed binary. Then it should work. --=20 Nathan Walp || fac...@fa... GPG Fingerprint: || http://faceprint.com/ 5509 6EF3 928B 2363 9B2B DA17 3E46 2CDC 492D DB7E |
|
From: Ajay G. <aja...@ya...> - 2003-03-26 02:00:17
|
Hello, I got the CVS version of gaim into /home/agautam/cvs_sources/gaim cd /home/agautam/cvs_sources/ cvs -d:blah:blah:blah co gaim cd gaim ./configure make cd src gdb ./gaim The gaim that comes up looks like: http://ajaygautam.homelinux.net/gaim.jpg It also screwed up my gaim config in my home directory and unloaded all the gaim plugins. I also tried to run thru kdevelop, but had the same results. I am trying to debug why gaim is not able to get all off-line yahoo messages. Any pointers, tips, help to get gaim debugging will be really helpful... TIA ===== Ajay Gautam Linux User #252843 http://counter.li.org If i never try anything, i never learn anything... If i never take a risk, i stay where i am. __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com |
|
From: Christian H. <ch...@gn...> - 2003-03-25 23:09:42
|
On Sat, Mar 22, 2003 at 11:36:21PM -0500, Joseph S. Testa II wrote: > Hi. >=20 > I'm doing a little gaim hacking, and I'm running into strange=20 > problems with libtool. I can't seem to fix it myself because I'm an=20 > autoconf newbie, so I'm posting here. Don't use 0.59.x. Go grab CVS and see if it works there. http://gaim.sf.net/cvs.php Christian --=20 Christian Hammond <> The GNUpdate Project ch...@gn... <> http://www.gnupdate.org/ If it jams, force it. If it breaks, it needed replacing |
|
From: Jango F. <bou...@so...> - 2003-03-24 23:31:25
|
I created a jabber account and I tested connection using original client. when I try to connect using gaim i got always an error: You have been disconnected, conection lost. Im using an updated cvs copy (downloaded/compiled it rigth now). |
|
From: Joseph S. T. I. <js...@ri...> - 2003-03-23 04:34:11
|
Hi.
I'm doing a little gaim hacking, and I'm running into strange
problems with libtool. I can't seem to fix it myself because I'm an
autoconf newbie, so I'm posting here.
Here are the steps I perform:
0.) Using the fresh v0.59.9 untarred package, I add
'AC_CHECK_LIB(mylib, myfunc)' to configure.ac.
1.) I run autoconf.
2.) I run configure.
3.) I run make, and on the very first C file it tries to compile,
this happens:
make[2]: Entering directory `/home/jdog/gaim-0.59.9/sounds'
gcc -DHAVE_CONFIG_H -I. -I. -I.. -g -O2 -I/usr/local/include
-I/opt/include
-I.. -I/usr/include/gnome-1.0 -DNEED_GNOMESUPPORT_H
-I/usr/lib/gnome-libs/include -I/usr/include/gtk-1.2
-I/usr/include/glib-1.2 -I/usr/lib/glib/include -I/usr/X11R6/include
-I/usr/include/gdk-pixbuf-1.0 -I/usr/include/gtk-1.2
-I/usr/include/glib-1.2 -I/usr/lib/glib/include -I/usr/X11R6/include -c
au2h.c
/bin/sh ../libtool --silent --mode=link gcc -g -O2 -I/usr/local/include
-I/opt/include -I.. -I/usr/include/gnome-1.0 -DNEED_GNOMESUPPORT_H
-I/usr/lib/gnome-libs/include -I/usr/include/gtk-1.2
-I/usr/include/glib-1.2 -I/usr/lib/glib/include -I/usr/X11R6/include
-I/usr/include/gdk-pixbuf-1.0 -I/usr/include/gtk-1.2
-I/usr/include/glib-1.2 -I/usr/lib/glib/include -I/usr/X11R6/include
-o au2h au2h.o -lnsl
../libtool: line 1: s%^.*/%%: No such file or directory
../libtool: line 1: -e: command not found
../libtool: line 1: -e: command not found
../libtool: line 1: -e: command not found
../libtool: line 1: -e: command not found
../libtool: line 1: -e: command not found
../libtool: line 1: -e: command not found
../libtool: line 1: -e: command not found
../libtool: line 1: -e: command not found
../libtool: line 1: -e: command not found
../libtool: line 1: -e: command not found
../libtool: line 1: -e: command not found
../libtool: line 1: -e: command not found
../libtool: line 1: -e: command not found
../libtool: line 1: -e: command not found
../libtool: line 1: -e: command not found
../libtool: line 1: -e: command not found
../libtool: line 1: -e: command not found
../libtool: line 1: -e: command not found
../libtool: line 1: -e: command not found
../libtool: line 1: -e: command not found
../libtool: line 1: -e: command not found
mkdir: cannot create directory `/.libs': Permission denied
make[2]: *** [au2h] Error 1
make[2]: Leaving directory `/home/jdog/gaim-0.59.9/sounds'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/jdog/gaim-0.59.9'
make: *** [all-recursive-am] Error 2
[jdog@localhost gaim-0.59.9]$
I saved the 'libtool' script that I generated and called it
'libtool.busted', then compared it with the 'libtool' script that gets
generated when I do not change configure.ac (and I called that one
'libtool.good'). Here are the differences:
[jdog@localhost jdog]$ diff libtool.good libtool.busted
29,31d28
< # A sed that does not truncate output.
< SED="/bin/sed"
<
33c30
< Xsed="/bin/sed -e s/^X//"
---
> Xsed="sed -e s/^X//"
[jdog@localhost jdog]$
This is all done from a Red Hat 8.0 box. If someone needs more
details to fix this, I'd be happy to give more.
Thanks!
- Joe
|
|
From: Ethan B. <ebl...@cs...> - 2003-03-23 03:05:54
|
Hmmm I'm incapable of using my mailer... ;-) Ethan -- Happiness is a belt-fed weapon. |
|
From: Bjoern V. <bj...@cs...> - 2003-03-22 07:34:38
|
Hello Luke, Thanks for including my latest patches. I have a new patch, which - re-enables keyboard accelerators (for instance CONTROL-B for "Add A Buddy" in main window or CONTROL-W for "Close" in conversation window) Regards, Bj=F6rn --=20 Bj=F6rn Voigt <bj...@we...> Telefon: 030 / 6 36 66 27 Handy: 0172/85 45 704 WWW: http://user.cs.tu-berlin.de/~bjoern/ Chat:=09 bjoernv (Yahoo), bjoern001 (AOL), 122516697 (ICQ) |
|
From: Sean E. <sea...@bi...> - 2003-03-18 20:17:59
|
That's how the new editor is implemented. -s. On Tue, 2003-03-18 at 13:22, James Mastros wrote: > From: "Luke Schierer" <lsc...@us...> > Sent: Monday, March 17, 2003 7:05 PM > Subject: Re: [Gaim-devel] offline contacts > > On Mon, Mar 17, 2003 at 04:04:19PM -0800, AthlonRob wrote: > > in a current cvs build, there is no edit buddies tab. thus you can't edit > > the list. you can re-order the list, but not add/remove. > > This reminds me of somthing I meant to bring up earlier. Most IM clients > seem to have a sepperate edit tab. This seems rather silly to me. Why > can't you just have a right-click, delete option, and a > right-click-on-group, add, and a checkbox to show offline buddies? It seems > silly that if you see somebody you don't want on your buddylist, you have to > switch tabs, find them again, delete, and then switch back to the other > tab -- it's making a simple task complex. > > -=- James > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code think in ink? > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Gaim-devel mailing list > Gai...@li... > https://lists.sourceforge.net/lists/listinfo/gaim-devel -- Sean Egan <sea...@bi...> |
|
From: James M. <ja...@ma...> - 2003-03-18 18:22:44
|
From: "Luke Schierer" <lsc...@us...>
Sent: Monday, March 17, 2003 7:05 PM
Subject: Re: [Gaim-devel] offline contacts
> On Mon, Mar 17, 2003 at 04:04:19PM -0800, AthlonRob wrote:
> in a current cvs build, there is no edit buddies tab. thus you can't edit
> the list. you can re-order the list, but not add/remove.
This reminds me of somthing I meant to bring up earlier. Most IM clients
seem to have a sepperate edit tab. This seems rather silly to me. Why
can't you just have a right-click, delete option, and a
right-click-on-group, add, and a checkbox to show offline buddies? It seems
silly that if you see somebody you don't want on your buddylist, you have to
switch tabs, find them again, delete, and then switch back to the other
tab -- it's making a simple task complex.
-=- James
|
|
From: Luke S. <lsc...@us...> - 2003-03-18 11:42:54
|
On Mon, Mar 17, 2003 at 11:43:22PM -0800, Kevin Molskness wrote: > Hi, > > At the risk of sounding like an idiot because I know nothing of the Oscar > protocol, I pose this question... Would it be possible to write a plugin > that would record the screenname of every person that looked at your buddy > info? I'm referring to the straight buddy info, not the "sub profile" > that's so popular these days. > > Assuming it's possible to do...I may look into writing such a plugin, unless > of course someone's already done it! Congratulations, you now look like someone who doesn't know anything about Oscar ;-). its not possible. when you set your info, or an away message for that matter, you send a copy to the server. when someone uses the get info or get away message functions, from either gaim or from winaim or what have you, they get the copy from the server. when they actually write you, they get the copy of your away message directly from you. in the first case, from the server, we are not notified that someone asked for it, and so cannot count it. in the second, you can see the message, and so there is no need to count it. luke > > -Kevin > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Gaim-devel mailing list > Gai...@li... > https://lists.sourceforge.net/lists/listinfo/gaim-devel -- -This email is made of 100% recycled electrons. |
|
From: Kevin M. <mol...@en...> - 2003-03-18 07:43:36
|
Hi, At the risk of sounding like an idiot because I know nothing of the Oscar protocol, I pose this question... Would it be possible to write a plugin that would record the screenname of every person that looked at your buddy info? I'm referring to the straight buddy info, not the "sub profile" that's so popular these days. Assuming it's possible to do...I may look into writing such a plugin, unless of course someone's already done it! -Kevin |
|
From: Luke S. <lsc...@us...> - 2003-03-18 00:30:45
|
On Mon, Mar 17, 2003 at 04:04:19PM -0800, AthlonRob wrote: > On Mon, 2003-03-17 at 15:38, Nathan Walp wrote: > > On Tue, Mar 18, 2003 at 10:12:43AM +1100, Jacob Visser wrote: > > > Just a general question: > > > > > > how do you view your offline contacts on the latest version of the cvs? > > > > > > > For the moment, you don't. This will be re-added shortly. > > My CVS build is a bit updated, but could you just go in like you're > going to edit your buddylist and get the full list there? in a current cvs build, there is no edit buddies tab. thus you can't edit the list. you can re-order the list, but not add/remove. > > Rob > > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Gaim-devel mailing list > Gai...@li... > https://lists.sourceforge.net/lists/listinfo/gaim-devel -- -This email is made of 100% recycled electrons. |
|
From: AthlonRob <ath...@ax...> - 2003-03-18 00:02:26
|
On Mon, 2003-03-17 at 15:38, Nathan Walp wrote: > On Tue, Mar 18, 2003 at 10:12:43AM +1100, Jacob Visser wrote: > > Just a general question: > > > > how do you view your offline contacts on the latest version of the cvs? > > > > For the moment, you don't. This will be re-added shortly. My CVS build is a bit updated, but could you just go in like you're going to edit your buddylist and get the full list there? Rob |
|
From: Nathan W. <fac...@fa...> - 2003-03-17 23:38:03
|
On Tue, Mar 18, 2003 at 10:12:43AM +1100, Jacob Visser wrote: > Just a general question: >=20 > how do you view your offline contacts on the latest version of the cvs? >=20 For the moment, you don't. This will be re-added shortly. Nathan --=20 Nathan Walp || fac...@fa... GPG Fingerprint: || http://faceprint.com/ 5509 6EF3 928B 2363 9B2B DA17 3E46 2CDC 492D DB7E |
|
From: Jacob V. <j.v...@ad...> - 2003-03-17 23:13:09
|
Just a general question: how do you view your offline contacts on the latest version of the cvs? Thanks Jacob Visser |