Re: FF 29 coredumps opening bookmarks

2014-08-04 Thread Marco Beishuizen

On Thu, 17 Jul 2014, the wise Marco Beishuizen wrote:


On Thu, 12 Jun 2014, the wise Marco Beishuizen wrote:


On Sat, 7 Jun 2014, the wise Marco Beishuizen wrote:

Don't know what change in ports caused it but FF 29 suddenly coredumps 
when opening the bookmarks. Doesn't matter if opened from the toolbar or 
by hitting CTRL+B. There are no error messages, it just dumps core.


Upgrade to FF 30 didn't help. Still bus error when hitting the bookmarks.


Upgrading FreeBSD to 9.3-STABLE and reinstalling FF (and deleting ~/.mozilla) 
didn't help either. Still crashing when hitting the bookmarks icon in the 
toolbar.


Upgrade to FF 31 didn't help. Still bus error. Resizing the window causes 
the crash too.


Regards,
Marco

--
A watched clock never boils.
___
freebsd-gecko@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-gecko
To unsubscribe, send any mail to freebsd-gecko-unsubscr...@freebsd.org


Re: Gecko

2014-08-04 Thread Jan Beich
Adrian J Fernandez a...@mozilla.com writes:

 Do you have any documentation on the process so that I could get up to
 date and see where I could help?

Here, downstream? I don't think there's much to get started other than

  $ svn co https://trillian.chruetertee.ch/svn/freebsd-gecko/trunk gecko-overlay
  $ (cd gecko-overlay; for d in */*/files; do rm -rf /usr/ports/$d; done)
  $ rsync -aC gecko-overlay/ /usr/ports/
  $ cd /usr/ports/www/firefox-nightly
  $ make

or

  $ hg clone https://hg.mozilla.org/mozilla-central/
  $ cd mozilla-central
  $ ./mach bootstrap || (cd /usr/ports/www/firefox; make depends)
  $ ./mach build

 Perhaps a TODO etc? I don't want to start doing work that's already been
 done =D.

If you can code (mostly C++ and make) there's an unordered list of ideas
in [1]. Some items may help chromium@ team as well such as OSS audio [2]
in WebRTC code.

[1] https://trillian.chruetertee.ch/freebsd-gecko/browser/trunk/Gecko_TODO
[2] https://lists.freebsd.org/pipermail/freebsd-current/2014-April/049330.html

 On a side note, a goal of mine would be to have firefox-nightly on the
 actual ports tree however, perhaps there are valid reasons as to why
 that's not currently the case.

No clue but I suspect other gecko@ members don't want to commit a port
that needs frequent updates. To make matter worse firefox-nightly often
depends on new version of NSPR/NSS or changes in bsd.gecko.mk.

 As for your particular issue, are these issues being tracked on the
 build system?

Maybe Mozilla bug 419470 but for jemalloc3. I can't confirm because my
PGO build crashes due to libc++ vs. libstdc++ conflict.

diff --git memory/jemalloc/moz.build memory/jemalloc/moz.build
index 310a55a..9f4f9cb 100644
--- memory/jemalloc/moz.build
+++ memory/jemalloc/moz.build
@@ -49,6 +49,11 @@ if CONFIG['_MSC_VER']:
 if not CONFIG['HAVE_INTTYPES_H']:
 LOCAL_INCLUDES += ['src/include/msvc_compat/C99']
 
+#XXX: PGO on Linux causes problems here
+# See bug 419470
+if CONFIG['GNU_CC']:
+NO_PGO = True
+
 if CONFIG['OS_TARGET'] == 'Linux':
 # For mremap
 DEFINES['_GNU_SOURCE'] = True
diff --git memory/mozjemalloc/moz.build memory/mozjemalloc/moz.build
index d5b58e5..a4003d4 100644
--- memory/mozjemalloc/moz.build
+++ memory/mozjemalloc/moz.build
@@ -30,7 +30,7 @@ DEFINES['MOZ_JEMALLOC_IMPL'] = True
 
 #XXX: PGO on Linux causes problems here
 # See bug 419470
-if CONFIG['OS_TARGET'] == 'Linux':
+if CONFIG['GNU_CC']:
 NO_PGO = True
 
 if CONFIG['MOZ_NUWA_PROCESS']:

-

VFEmail.net - http://www.vfemail.net
ONLY AT VFEmail! - Use our Metadata Mitigator to keep your email out of the 
NSA's hands!
$24.95 ONETIME Lifetime accounts with Privacy Features!  
15GB disk! No bandwidth quotas!
Commercial and Bulk Mail Options!  
___
freebsd-gecko@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-gecko
To unsubscribe, send any mail to freebsd-gecko-unsubscr...@freebsd.org


[SVN-Commit] r1648 - branches/firefox31

2014-08-04 Thread svn-freebsd-gecko
Author: jbeich
Date: Mon Aug  4 19:12:23 2014
New Revision: 1648

Log:
remove after the branch was merged

Deleted:
   branches/firefox31/
___
freebsd-gecko@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-gecko
To unsubscribe, send any mail to freebsd-gecko-unsubscr...@freebsd.org


[SVN-Commit] r1649 - trunk/security/ca_root_nss

2014-08-04 Thread svn-freebsd-gecko
Author: jbeich
Date: Mon Aug  4 19:17:55 2014
New Revision: 1649

Log:
define the same CPE_STR as security/nss

Modified:
   trunk/security/ca_root_nss/Makefile

Modified: trunk/security/ca_root_nss/Makefile
==
--- trunk/security/ca_root_nss/Makefile Mon Aug  4 19:12:23 2014(r1648)
+++ trunk/security/ca_root_nss/Makefile Mon Aug  4 19:17:55 2014(r1649)
@@ -12,7 +12,9 @@
 OPTIONS_DEFINE=ETCSYMLINK
 ETCSYMLINK_DESC=   Add symlink to /etc/ssl/cert.pem
 
-USES=  perl5
+USES=  cpe perl5
+CPE_VENDOR=mozilla
+CPE_PRODUCT=   network_security_services
 USE_PERL5= build
 NO_WRKSUBDIR=  yes
 
___
freebsd-gecko@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-gecko
To unsubscribe, send any mail to freebsd-gecko-unsubscr...@freebsd.org


[Bug 165263] mail/thunderbird: core dumping most time when users are LDAP backed up.

2014-08-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=165263

--- Comment #10 from Jan Beich jbe...@vfemail.net ---
Can you confirm it's FIXED after ports@363978 on thunderbird-31.0 ?

http://svnweb.freebsd.org/changeset/ports/363978

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-gecko@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-gecko
To unsubscribe, send any mail to freebsd-gecko-unsubscr...@freebsd.org


[Bug 184630] mail/thunderbird jobserver unavailable

2014-08-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=184630

Jan Beich jbe...@vfemail.net changed:

   What|Removed |Added

 Status|Patch Ready |Issue Resolved
 Resolution|--- |FIXED

--- Comment #13 from Jan Beich jbe...@vfemail.net ---
http://svnweb.freebsd.org/changeset/ports/363978

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-gecko@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-gecko
To unsubscribe, send any mail to freebsd-gecko-unsubscr...@freebsd.org