Re: SIGPIPE in pt_Send (libnspr4)

2007-03-05 Thread Martynas Venckus
Please pkg_delete -F ambiguous .libs-mozilla-firefox, or something like that.

--
Martynas Venckus



Re: SIGPIPE in pt_Send (libnspr4)

2007-03-05 Thread Kurt Miller
On Monday 05 March 2007 2:38:19 am Gregory Steuck wrote:
 I am running i386-current-Feb-14. Firefox frequently crashes on me with
 a stack trace below. Does anybody know if this has been fixed in newer
 current (which I should upgrade to anyway, but not tonight). The relvant
 packages are from Feb 14 snapshot: mozilla-firefox-2.0.0.1p0 nss-3.11.4p1
 
 (gdb) run
 Starting program: /usr/local/mozilla-firefox/firefox-bin 
 [New process 21520]
 [New process 21520, thread 0x856dd800]
 [New process 21520, thread 0x7d86e400]
 [New process 21520, thread 0x7d97]
 
 Program received signal SIGPIPE, Broken pipe.
 [Switching to process 21520, thread 0x7d97]
 0x0b2894e9 in sendto () from /usr/lib/libc.so.40.3

SIPPIPE is normal. Issue the following command before
'run' to tell gdb to let them be handled/ignored by
firefox (i.e. SIG_IGN) without interrupting the debug
session.

(gdb) handle SIGPIPE nostop noprint

-Kurt