From owner-freebsd-gecko@FreeBSD.ORG Sun Nov 7 02:30:09 2010 Return-Path: Delivered-To: gecko@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BCAB8106566C for ; Sun, 7 Nov 2010 02:30:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7C5E88FC12 for ; Sun, 7 Nov 2010 02:30:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id oA72U9gw021927 for ; Sun, 7 Nov 2010 02:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id oA72U9A4021914; Sun, 7 Nov 2010 02:30:09 GMT (envelope-from gnats) Resent-Date: Sun, 7 Nov 2010 02:30:09 GMT Resent-Message-Id: <201011070230.oA72U9A4021914@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: gecko@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Anonymous Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C8BEF106566C for ; Sun, 7 Nov 2010 02:29:22 +0000 (UTC) (envelope-from swell.k@gmail.com) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id 823B68FC1C for ; Sun, 7 Nov 2010 02:29:22 +0000 (UTC) Received: by yxl31 with SMTP id 31so2949445yxl.13 for ; Sat, 06 Nov 2010 19:29:21 -0700 (PDT) Received: by 10.151.8.8 with SMTP id l8mr1486882ybi.373.1289096961279; Sat, 06 Nov 2010 19:29:21 -0700 (PDT) Received: from localhost (tor-exit-proxy2-readme.formlessnetworking.net [208.53.142.38]) by mx.google.com with ESMTPS id x45sm2406304yhc.45.2010.11.06.19.29.19 (version=SSLv3 cipher=RC4-MD5); Sat, 06 Nov 2010 19:29:20 -0700 (PDT) Message-Id: <86iq09uaro.fsf@gmail.com> Date: Sun, 07 Nov 2010 05:29:15 +0300 From: Anonymous To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/152001: [patch] www/firefox-devel: use optimized asm in libvpx on i386/amd64 X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Nov 2010 02:30:09 -0000 >Number: 152001 >Category: ports >Synopsis: [patch] www/firefox-devel: use optimized asm in libvpx on i386/amd64 >Confidential: no >Severity: non-critical >Priority: low >Responsible: gecko >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Nov 07 02:30:09 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Anonymous >Release: FreeBSD 9.0-CURRENT amd64 >Organization: >Environment: >Description: Build *bundled* libvpx more like multimedia/libvpx does by using x86-linux-gcc and x86_64-linux-gcc targets. Non-x86 archs continue to use generic-gnu target. >How-To-Repeat: # let's see if arch-specific asm is actually used during build $ make configue $ grep \^VPX_ $(make -V WRKSRC)/config/autoconf.mk VPX_AS = yasm VPX_ASFLAGS = -f elf64 -rnasm -pnasm -DPIC VPX_X86_ASM = 1 # build bundled libvpx manually to save time $ gmake -C$(make -V WRKSRC)/config $ gmake -C$(make -V WRKSRC)/media/libvpx [...] yasm -o idctllm_mmx.o -f elf64 -rnasm -pnasm -DPIC -I../../media/libvpx/ -I../../media/libvpx/vpx_ports/ -c ./vp8/common/x86/idctllm_mmx.asm yasm: warning: unrecognized option `-c' yasm -o iwalsh_mmx.o -f elf64 -rnasm -pnasm -DPIC -I../../media/libvpx/ -I../../media/libvpx/vpx_ports/ -c ./vp8/common/x86/iwalsh_mmx.asm yasm: warning: unrecognized option `-c' yasm -o iwalsh_sse2.o -f elf64 -rnasm -pnasm -DPIC -I../../media/libvpx/ -I../../media/libvpx/vpx_ports/ -c ./vp8/common/x86/iwalsh_sse2.asm yasm: warning: unrecognized option `-c' yasm -o loopfilter_mmx.o -f elf64 -rnasm -pnasm -DPIC -I../../media/libvpx/ -I../../media/libvpx/vpx_ports/ -c ./vp8/common/x86/loopfilter_mmx.asm yasm: warning: unrecognized option `-c' yasm -o loopfilter_sse2.o -f elf64 -rnasm -pnasm -DPIC -I../../media/libvpx/ -I../../media/libvpx/vpx_ports/ -c ./vp8/common/x86/loopfilter_sse2.asm yasm: warning: unrecognized option `-c' yasm -o postproc_mmx.o -f elf64 -rnasm -pnasm -DPIC -I../../media/libvpx/ -I../../media/libvpx/vpx_ports/ -c ./vp8/common/x86/postproc_mmx.asm yasm: warning: unrecognized option `-c' yasm -o postproc_sse2.o -f elf64 -rnasm -pnasm -DPIC -I../../media/libvpx/ -I../../media/libvpx/vpx_ports/ -c ./vp8/common/x86/postproc_sse2.asm yasm: warning: unrecognized option `-c' yasm -o recon_mmx.o -f elf64 -rnasm -pnasm -DPIC -I../../media/libvpx/ -I../../media/libvpx/vpx_ports/ -c ./vp8/common/x86/recon_mmx.asm yasm: warning: unrecognized option `-c' yasm -o recon_sse2.o -f elf64 -rnasm -pnasm -DPIC -I../../media/libvpx/ -I../../media/libvpx/vpx_ports/ -c ./vp8/common/x86/recon_sse2.asm yasm: warning: unrecognized option `-c' yasm -o subpixel_mmx.o -f elf64 -rnasm -pnasm -DPIC -I../../media/libvpx/ -I../../media/libvpx/vpx_ports/ -c ./vp8/common/x86/subpixel_mmx.asm yasm: warning: unrecognized option `-c' yasm -o subpixel_sse2.o -f elf64 -rnasm -pnasm -DPIC -I../../media/libvpx/ -I../../media/libvpx/vpx_ports/ -c ./vp8/common/x86/subpixel_sse2.asm yasm: warning: unrecognized option `-c' yasm -o dequantize_mmx.o -f elf64 -rnasm -pnasm -DPIC -I../../media/libvpx/ -I../../media/libvpx/vpx_ports/ -c ./vp8/decoder/x86/dequantize_mmx.asm yasm: warning: unrecognized option `-c' yasm -o emms.o -f elf64 -rnasm -pnasm -DPIC -I../../media/libvpx/ -I../../media/libvpx/vpx_ports/ -c ./vpx_ports/emms.asm yasm: warning: unrecognized option `-c' rm -f libvpx.a ar cr libvpx.a vpx_config_c.o systemdependent.o alloccommon.o blockd.o debugmodes.o dsystemdependent.o entropy.o entropymode.o entropymv.o extend.o filter_c.o findnearmv.o idctllm.o invtrans.o loopfilter.o loopfilter_filters.o mbpitch.o modecont.o modecontext.o postproc.o predictdc.o quant_common.o recon.o reconinter.o reconintra.o reconintra4x4.o segmentation_common.o setupintrarecon.o swapyv12buffer.o textblit.o treecoder.o dboolhuff.o decodemv.o decodframe.o demode.o dequantize.o detokenize.o onyxd_if.o threading.o vp8_dx_iface.o vpx_codec.o vpx_decoder.o vpx_decoder_compat.o vpx_encoder.o vpx_image.o vpx_mem.o gen_scalers.o vpxscale.o scalesystemdependant.o yv12config.o yv12extend.o loopfilter_x86.o vp8_asm_stubs.o x86_systemdependent.o x86_dsystemdependent.o idctllm_mmx.o iwalsh_mmx.o iwalsh_sse2.o loopfilter_mmx.o loopfilter_sse2.o postproc_mmx.o postproc_sse2.o recon_mmx.o recon_sse2.o subpixel_mmx.o subpixel_sse2.o dequantize_mmx.o emms.o ranlib libvpx.a >Fix: --- a.diff begins here --- Index: www/firefox-devel/Makefile =================================================================== --- www/firefox-devel/Makefile (revision 430) +++ www/firefox-devel/Makefile (working copy) @@ -87,6 +85,10 @@ ALL_TARGET= profiledbuild .endif +.if ${ARCH} == amd64 || ${ARCH} == i386 +BUILD_DEPENDS+= yasm:${PORTSDIR}/devel/yasm +.endif + pre-extract: .if defined(WITH_PGO) @${ECHO} "*****************************************************************" Index: www/firefox-devel/files/patch-configure.in =================================================================== --- www/firefox-devel/files/patch-configure.in (revision 430) +++ www/firefox-devel/files/patch-configure.in (working copy) @@ -9,3 +9,17 @@ CPU_ARCH="$OS_TEST" ;; +@@ -5938,11 +5938,11 @@ if test -n "$MOZ_WEBM"; then + AC_CHECK_PROGS(VPX_AS, $YASM yasm, "") + dnl We have YASM, see if we have assembly on this platform. + case "$OS_ARCH:$OS_TEST" in +- Linux:x86|Linux:i?86) ++ Linux:x86|Linux:i?86|FreeBSD:i386) + VPX_ASFLAGS="-f elf32 -rnasm -pnasm" + VPX_X86_ASM=1 + ;; +- Linux:x86_64) ++ Linux:x86_64|FreeBSD:amd64) + VPX_ASFLAGS="-f elf64 -rnasm -pnasm -DPIC" + VPX_X86_ASM=1 + ;; Index: www/firefox-devel/files/patch-media-libvpx-vpx_config.c =================================================================== --- www/firefox-devel/files/patch-media-libvpx-vpx_config.c (revision 0) +++ www/firefox-devel/files/patch-media-libvpx-vpx_config.c (revision 0) @@ -0,0 +1,16 @@ +--- media/libvpx/vpx_config_c.c~ ++++ media/libvpx/vpx_config_c.c +@@ -12,11 +12,11 @@ + /* 32 bit MacOS. */ + #include "vpx_config_x86-darwin9-gcc.c" + +-#elif defined(__linux__) && defined(__i386__) ++#elif (defined(__linux__) || defined(__FreeBSD__)) && defined(__i386__) + /* 32 bit Linux. */ + #include "vpx_config_x86-linux-gcc.c" + +-#elif defined(__linux__) && defined(__x86_64__) ++#elif (defined(__linux__) || defined(__FreeBSD__)) && defined(__x86_64__) + /* 64 bit Linux. */ + #include "vpx_config_x86_64-linux-gcc.c" + Index: www/firefox-devel/files/patch-media-libvpx-vpx_config.h =================================================================== --- www/firefox-devel/files/patch-media-libvpx-vpx_config.h (revision 0) +++ www/firefox-devel/files/patch-media-libvpx-vpx_config.h (revision 0) @@ -0,0 +1,16 @@ +--- media/libvpx/vpx_config.h~ ++++ media/libvpx/vpx_config.h +@@ -12,11 +12,11 @@ + /* 32 bit MacOS. */ + #include "vpx_config_x86-darwin9-gcc.h" + +-#elif defined(__linux__) && defined(__i386__) ++#elif (defined(__linux__) || defined(__FreeBSD__)) && defined(__i386__) + /* 32 bit Linux. */ + #include "vpx_config_x86-linux-gcc.h" + +-#elif defined(__linux__) && defined(__x86_64__) ++#elif (defined(__linux__) || defined(__FreeBSD__)) && defined(__x86_64__) + /* 64 bit Linux. */ + #include "vpx_config_x86_64-linux-gcc.h" + --- a.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-gecko@FreeBSD.ORG Sun Nov 7 03:30:10 2010 Return-Path: Delivered-To: gecko@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DDBAC1065672 for ; Sun, 7 Nov 2010 03:30:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B88FB8FC13 for ; Sun, 7 Nov 2010 03:30:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id oA73U99u099772 for ; Sun, 7 Nov 2010 03:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id oA73U9v1099759; Sun, 7 Nov 2010 03:30:09 GMT (envelope-from gnats) Resent-Date: Sun, 7 Nov 2010 03:30:09 GMT Resent-Message-Id: <201011070330.oA73U9v1099759@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: gecko@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Anonymous Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 70779106566B for ; Sun, 7 Nov 2010 03:26:22 +0000 (UTC) (envelope-from swell.k@gmail.com) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id 2AE768FC13 for ; Sun, 7 Nov 2010 03:26:21 +0000 (UTC) Received: by yxl31 with SMTP id 31so2958624yxl.13 for ; Sat, 06 Nov 2010 20:26:21 -0700 (PDT) Received: by 10.151.7.12 with SMTP id k12mr6105999ybi.367.1289100381031; Sat, 06 Nov 2010 20:26:21 -0700 (PDT) Received: from localhost (tor-exit-proxy1-readme.formlessnetworking.net [208.53.142.37]) by mx.google.com with ESMTPS id p1sm2445422ybn.17.2010.11.06.20.26.18 (version=SSLv3 cipher=RC4-MD5); Sat, 06 Nov 2010 20:26:20 -0700 (PDT) Message-Id: <86r5exrezu.fsf@gmail.com> Date: Sun, 07 Nov 2010 06:26:13 +0300 From: Anonymous To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/152002: [patch] www/firefox-devel: don't link against librt for clock_gettime(3) X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Nov 2010 03:30:10 -0000 >Number: 152002 >Category: ports >Synopsis: [patch] www/firefox-devel: don't link against librt for clock_gettime(3) >Confidential: no >Severity: non-critical >Priority: low >Responsible: gecko >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 07 03:30:09 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Anonymous >Release: FreeBSD 9.0-CURRENT amd64 >Organization: >Environment: >Description: Try to search clock_gettime() in libc first and then in librt. >How-To-Repeat: $ make install $ ldd LOCALBASE/lib/firefox/libxul.so | fgrep librt >Fix: --- a.diff begins here --- Index: www/firefox-devel/files/patch-configure.in =================================================================== --- www/firefox-devel/files/patch-configure.in (revision 430) +++ www/firefox-devel/files/patch-configure.in (working copy) @@ -9,3 +9,30 @@ CPU_ARCH="$OS_TEST" ;; +@@ -3767,19 +3767,21 @@ AC_CHECK_FUNCS(flockfile getpagesize) + AC_CHECK_FUNCS(localtime_r strtok_r) + + dnl check for clock_gettime(), the CLOCK_MONOTONIC clock, and -lrt +-_SAVE_LDFLAGS=$LDFLAGS +-LDFLAGS="$LDFLAGS -lrt" +-AC_CACHE_CHECK(for clock_gettime(CLOCK_MONOTONIC) and -lrt, ++_SAVE_LIBS=$LIBS ++AC_SEARCH_LIBS(clock_gettime, rt) ++AC_CACHE_CHECK(for clock_gettime(CLOCK_MONOTONIC), + ac_cv_have_clock_monotonic, + [AC_TRY_LINK([#include ], + [ struct timespec ts; + clock_gettime(CLOCK_MONOTONIC, &ts); ], + ac_cv_have_clock_monotonic=yes, + ac_cv_have_clock_monotonic=no)]) +-LDFLAGS=$_SAVE_LDFLAGS ++LIBS=$_SAVE_LIBS + if test "$ac_cv_have_clock_monotonic" = "yes"; then + HAVE_CLOCK_MONOTONIC=1 +- REALTIME_LIBS=-lrt ++ if test "$ac_cv_search_clock_gettime" != "none required"; then ++ REALTIME_LIBS=$ac_cv_search_clock_gettime ++ fi + AC_DEFINE(HAVE_CLOCK_MONOTONIC) + AC_SUBST(HAVE_CLOCK_MONOTONIC) + AC_SUBST(REALTIME_LIBS) --- a.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-gecko@FreeBSD.ORG Sun Nov 7 10:30:45 2010 Return-Path: Delivered-To: gecko@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1737A1065670; Sun, 7 Nov 2010 10:30:45 +0000 (UTC) (envelope-from beat@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E0FE18FC1B; Sun, 7 Nov 2010 10:30:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id oA7AUi09060602; Sun, 7 Nov 2010 10:30:44 GMT (envelope-from beat@freefall.freebsd.org) Received: (from beat@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id oA7AUiIY060585; Sun, 7 Nov 2010 10:30:44 GMT (envelope-from beat) Date: Sun, 7 Nov 2010 10:30:44 GMT Message-Id: <201011071030.oA7AUiIY060585@freefall.freebsd.org> To: beat@FreeBSD.org, gecko@FreeBSD.org, beat@FreeBSD.org From: beat@FreeBSD.org Cc: Subject: Re: ports/152001: [patch] www/firefox-devel: use optimized asm in libvpx on i386/amd64 X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Nov 2010 10:30:45 -0000 Synopsis: [patch] www/firefox-devel: use optimized asm in libvpx on i386/amd64 Responsible-Changed-From-To: gecko->beat Responsible-Changed-By: beat Responsible-Changed-When: Sun Nov 7 10:30:43 UTC 2010 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=152001 From owner-freebsd-gecko@FreeBSD.ORG Sun Nov 7 10:31:12 2010 Return-Path: Delivered-To: gecko@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B4AC61065670; Sun, 7 Nov 2010 10:31:12 +0000 (UTC) (envelope-from beat@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8A5698FC14; Sun, 7 Nov 2010 10:31:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id oA7AVCsB066002; Sun, 7 Nov 2010 10:31:12 GMT (envelope-from beat@freefall.freebsd.org) Received: (from beat@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id oA7AVCJj065978; Sun, 7 Nov 2010 10:31:12 GMT (envelope-from beat) Date: Sun, 7 Nov 2010 10:31:12 GMT Message-Id: <201011071031.oA7AVCJj065978@freefall.freebsd.org> To: beat@FreeBSD.org, gecko@FreeBSD.org, beat@FreeBSD.org From: beat@FreeBSD.org Cc: Subject: Re: ports/152002: [patch] www/firefox-devel: don't link against librt for clock_gettime(3) X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Nov 2010 10:31:12 -0000 Synopsis: [patch] www/firefox-devel: don't link against librt for clock_gettime(3) Responsible-Changed-From-To: gecko->beat Responsible-Changed-By: beat Responsible-Changed-When: Sun Nov 7 10:31:11 UTC 2010 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=152002 From owner-freebsd-gecko@FreeBSD.ORG Sun Nov 7 13:07:46 2010 Return-Path: Delivered-To: freebsd-gecko@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D9001106564A for ; Sun, 7 Nov 2010 13:07:46 +0000 (UTC) (envelope-from svn-freebsd-gecko@chruetertee.ch) Received: from trillian.chruetertee.ch (trillian.chruetertee.ch [217.150.245.56]) by mx1.freebsd.org (Postfix) with ESMTP id 83BF58FC1E for ; Sun, 7 Nov 2010 13:07:45 +0000 (UTC) Received: from trillian.chruetertee.ch (trillian [217.150.245.56]) by trillian.chruetertee.ch (8.14.3/8.14.3) with ESMTP id oA7D7j2e006933 for ; Sun, 7 Nov 2010 13:07:45 GMT (envelope-from svn-freebsd-gecko@chruetertee.ch) Received: (from www@localhost) by trillian.chruetertee.ch (8.14.3/8.14.3/Submit) id oA7D7ej5005915 for freebsd-gecko@freebsd.org; Sun, 7 Nov 2010 13:07:40 GMT (envelope-from svn-freebsd-gecko@chruetertee.ch) Date: Sun, 7 Nov 2010 13:07:40 GMT Message-Id: <201011071307.oA7D7ej5005915@trillian.chruetertee.ch> X-Authentication-Warning: trillian.chruetertee.ch: www set sender to svn-freebsd-gecko@chruetertee.ch using -f From: svn-freebsd-gecko@chruetertee.ch To: freebsd-gecko@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [SVN-Commit] r431 - in branches/experimental/www/firefox-devel: . files X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-gecko@freebsd.org List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Nov 2010 13:07:46 -0000 Author: beat Date: Sun Nov 7 13:07:39 2010 New Revision: 431 Log: - Use optimized asm in libvpx on i386/amd64 [1] - Don't link against librt for clock_gettime(3) [2] PR: ports/152001 [1], ports/152002 [2] Submitted by: Anonymous [1,2] Added: branches/experimental/www/firefox-devel/files/patch-media-libvpx-vpx_config.c branches/experimental/www/firefox-devel/files/patch-media-libvpx-vpx_config.h Modified: branches/experimental/www/firefox-devel/Makefile branches/experimental/www/firefox-devel/files/patch-configure.in Modified: branches/experimental/www/firefox-devel/Makefile ============================================================================== --- branches/experimental/www/firefox-devel/Makefile Tue Nov 2 21:13:01 2010 (r430) +++ branches/experimental/www/firefox-devel/Makefile Sun Nov 7 13:07:39 2010 (r431) @@ -87,6 +87,10 @@ ALL_TARGET= profiledbuild .endif +.if ${ARCH} == amd64 || ${ARCH} == i386 +BUILD_DEPENDS+= yasm:${PORTSDIR}/devel/yasm +.endif + pre-extract: .if defined(WITH_PGO) @${ECHO} "*****************************************************************" Modified: branches/experimental/www/firefox-devel/files/patch-configure.in ============================================================================== --- branches/experimental/www/firefox-devel/files/patch-configure.in Tue Nov 2 21:13:01 2010 (r430) +++ branches/experimental/www/firefox-devel/files/patch-configure.in Sun Nov 7 13:07:39 2010 (r431) @@ -9,3 +9,44 @@ CPU_ARCH="$OS_TEST" ;; +@@ -3767,19 +3767,21 @@ AC_CHECK_FUNCS(flockfile getpagesize) + AC_CHECK_FUNCS(localtime_r strtok_r) + + dnl check for clock_gettime(), the CLOCK_MONOTONIC clock, and -lrt +-_SAVE_LDFLAGS=$LDFLAGS +-LDFLAGS="$LDFLAGS -lrt" +-AC_CACHE_CHECK(for clock_gettime(CLOCK_MONOTONIC) and -lrt, ++_SAVE_LIBS=$LIBS ++AC_SEARCH_LIBS(clock_gettime, rt) ++AC_CACHE_CHECK(for clock_gettime(CLOCK_MONOTONIC), + ac_cv_have_clock_monotonic, + [AC_TRY_LINK([#include ], + [ struct timespec ts; + clock_gettime(CLOCK_MONOTONIC, &ts); ], + ac_cv_have_clock_monotonic=yes, + ac_cv_have_clock_monotonic=no)]) +-LDFLAGS=$_SAVE_LDFLAGS ++LIBS=$_SAVE_LIBS + if test "$ac_cv_have_clock_monotonic" = "yes"; then + HAVE_CLOCK_MONOTONIC=1 +- REALTIME_LIBS=-lrt ++ if test "$ac_cv_search_clock_gettime" != "none required"; then ++ REALTIME_LIBS=$ac_cv_search_clock_gettime ++ fi + AC_DEFINE(HAVE_CLOCK_MONOTONIC) + AC_SUBST(HAVE_CLOCK_MONOTONIC) + AC_SUBST(REALTIME_LIBS) +@@ -5938,11 +5938,11 @@ if test -n "$MOZ_WEBM"; then + AC_CHECK_PROGS(VPX_AS, $YASM yasm, "") + dnl We have YASM, see if we have assembly on this platform. + case "$OS_ARCH:$OS_TEST" in +- Linux:x86|Linux:i?86) ++ Linux:x86|Linux:i?86|FreeBSD:i386) + VPX_ASFLAGS="-f elf32 -rnasm -pnasm" + VPX_X86_ASM=1 + ;; +- Linux:x86_64) ++ Linux:x86_64|FreeBSD:amd64) + VPX_ASFLAGS="-f elf64 -rnasm -pnasm -DPIC" + VPX_X86_ASM=1 + ;; Added: branches/experimental/www/firefox-devel/files/patch-media-libvpx-vpx_config.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/experimental/www/firefox-devel/files/patch-media-libvpx-vpx_config.c Sun Nov 7 13:07:39 2010 (r431) @@ -0,0 +1,16 @@ +--- media/libvpx/vpx_config_c.c~ ++++ media/libvpx/vpx_config_c.c +@@ -12,11 +12,11 @@ + /* 32 bit MacOS. */ + #include "vpx_config_x86-darwin9-gcc.c" + +-#elif defined(__linux__) && defined(__i386__) ++#elif (defined(__linux__) || defined(__FreeBSD__)) && defined(__i386__) + /* 32 bit Linux. */ + #include "vpx_config_x86-linux-gcc.c" + +-#elif defined(__linux__) && defined(__x86_64__) ++#elif (defined(__linux__) || defined(__FreeBSD__)) && defined(__x86_64__) + /* 64 bit Linux. */ + #include "vpx_config_x86_64-linux-gcc.c" + Added: branches/experimental/www/firefox-devel/files/patch-media-libvpx-vpx_config.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/experimental/www/firefox-devel/files/patch-media-libvpx-vpx_config.h Sun Nov 7 13:07:39 2010 (r431) @@ -0,0 +1,16 @@ +--- media/libvpx/vpx_config.h~ ++++ media/libvpx/vpx_config.h +@@ -12,11 +12,11 @@ + /* 32 bit MacOS. */ + #include "vpx_config_x86-darwin9-gcc.h" + +-#elif defined(__linux__) && defined(__i386__) ++#elif (defined(__linux__) || defined(__FreeBSD__)) && defined(__i386__) + /* 32 bit Linux. */ + #include "vpx_config_x86-linux-gcc.h" + +-#elif defined(__linux__) && defined(__x86_64__) ++#elif (defined(__linux__) || defined(__FreeBSD__)) && defined(__x86_64__) + /* 64 bit Linux. */ + #include "vpx_config_x86_64-linux-gcc.h" + From owner-freebsd-gecko@FreeBSD.ORG Mon Nov 8 11:07:14 2010 Return-Path: Delivered-To: gecko@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B43BB106579C for ; Mon, 8 Nov 2010 11:07:14 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A1C448FC15 for ; Mon, 8 Nov 2010 11:07:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id oA8B7EAu088336 for ; Mon, 8 Nov 2010 11:07:14 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id oA8B7DYl088334 for gecko@FreeBSD.org; Mon, 8 Nov 2010 11:07:13 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 8 Nov 2010 11:07:13 GMT Message-Id: <201011081107.oA8B7DYl088334@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: gecko@FreeBSD.org Cc: Subject: Current problem reports assigned to gecko@FreeBSD.org X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Nov 2010 11:07:14 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/150631 gecko www/firefox 3.6.9 does not build if you have previousl f ports/149594 gecko /usr/ports/mail/thunderbird no build o ports/148475 gecko [patch] Mk/bsd.gecko.mk: use tar(1) for copying trees o ports/146231 gecko [feature request] [patch] www/firefox: use port libs o ports/144145 gecko www/firefox: Firefox 3.6 does not allow any https-conn o ports/144044 gecko [PATCH] www/firefox: Makefile.webplugins target order o ports/142807 gecko www/firefox35-i18n does not depend on www/firefox35 7 problems total. From owner-freebsd-gecko@FreeBSD.ORG Mon Nov 8 14:27:56 2010 Return-Path: Delivered-To: freebsd-gecko@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CA4361065670 for ; Mon, 8 Nov 2010 14:27:56 +0000 (UTC) (envelope-from svn-freebsd-gecko@chruetertee.ch) Received: from trillian.chruetertee.ch (trillian.chruetertee.ch [217.150.245.56]) by mx1.freebsd.org (Postfix) with ESMTP id 5A0218FC0A for ; Mon, 8 Nov 2010 14:27:55 +0000 (UTC) Received: from trillian.chruetertee.ch (trillian [217.150.245.56]) by trillian.chruetertee.ch (8.14.3/8.14.3) with ESMTP id oA8ERsuL016254 for ; Mon, 8 Nov 2010 14:27:54 GMT (envelope-from svn-freebsd-gecko@chruetertee.ch) Received: (from www@localhost) by trillian.chruetertee.ch (8.14.3/8.14.3/Submit) id oA8ERmEA014653 for freebsd-gecko@freebsd.org; Mon, 8 Nov 2010 14:27:48 GMT (envelope-from svn-freebsd-gecko@chruetertee.ch) Date: Mon, 8 Nov 2010 14:27:48 GMT Message-Id: <201011081427.oA8ERmEA014653@trillian.chruetertee.ch> X-Authentication-Warning: trillian.chruetertee.ch: www set sender to svn-freebsd-gecko@chruetertee.ch using -f From: svn-freebsd-gecko@chruetertee.ch To: freebsd-gecko@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [SVN-Commit] r432 - branches/experimental/Mk branches/experimental/www/firefox-devel branches/experimental/www/firefox-devel/files trunk/Mk X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-gecko@freebsd.org List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Nov 2010 14:27:56 -0000 Author: beat Date: Mon Nov 8 14:27:48 2010 New Revision: 432 Log: - Fix build with recent gcc versions Submitted by: Anonymous Added: branches/experimental/www/firefox-devel/files/patch-js-src-jsnativestack.cpp Modified: branches/experimental/Mk/bsd.gecko.mk branches/experimental/www/firefox-devel/Makefile branches/experimental/www/firefox-devel/files/patch-js-src-Makefile.in branches/experimental/www/firefox-devel/files/patch-toolkit_library_Makefile.in trunk/Mk/bsd.gecko.mk Modified: branches/experimental/Mk/bsd.gecko.mk ============================================================================== --- branches/experimental/Mk/bsd.gecko.mk Sun Nov 7 13:07:39 2010 (r431) +++ branches/experimental/Mk/bsd.gecko.mk Mon Nov 8 14:27:48 2010 (r432) @@ -623,6 +623,7 @@ .for subdir in "" nsprpub js/src @if [ -f ${MOZSRC}/${subdir}/config/system-headers ] ; then \ ${ECHO_CMD} "fenv.h" >> ${MOZSRC}/${subdir}/config/system-headers ; \ + ${ECHO_CMD} "pthread_np.h" >> ${MOZSRC}/${subdir}/config/system-headers ; \ fi .endfor @${REINPLACE_CMD} -e 's|%%MOZILLA%%|${MOZILLA}|g' \ Modified: branches/experimental/www/firefox-devel/Makefile ============================================================================== --- branches/experimental/www/firefox-devel/Makefile Sun Nov 7 13:07:39 2010 (r431) +++ branches/experimental/www/firefox-devel/Makefile Mon Nov 8 14:27:48 2010 (r432) @@ -113,6 +113,7 @@ post-patch: ${REINPLACE_CMD} -e 's|%%PTHREAD_LIBS%%|${PTHREAD_LIBS:C/-pthread/${GECKO_PTHREAD_LIBS}/}|' \ ${WRKSRC}/storage/build/Makefile.in \ + ${WRKSRC}/toolkit/library/Makefile.in \ ${WRKSRC}/db/sqlite3/src/Makefile.in @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \ ${WRKSRC}/security/manager/ssl/src/Makefile.in \ Modified: branches/experimental/www/firefox-devel/files/patch-js-src-Makefile.in ============================================================================== --- branches/experimental/www/firefox-devel/files/patch-js-src-Makefile.in Sun Nov 7 13:07:39 2010 (r431) +++ branches/experimental/www/firefox-devel/files/patch-js-src-Makefile.in Mon Nov 8 14:27:48 2010 (r432) @@ -1,9 +1,10 @@ --- js/src/Makefile.in.orig 2009-05-11 15:21:19.000000000 +0200 +++ js/src/Makefile.in 2009-05-11 15:21:34.000000000 +0200 -@@ -427,7 +427,7 @@ +@@ -427,7 +427,8 @@ endif # WINNT ifeq ($(OS_ARCH),FreeBSD) ++DEFINES += -DFREEBSD -EXTRA_LIBS += -pthread +EXTRA_LIBS += -pthread -lc endif Added: branches/experimental/www/firefox-devel/files/patch-js-src-jsnativestack.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/experimental/www/firefox-devel/files/patch-js-src-jsnativestack.cpp Mon Nov 8 14:27:48 2010 (r432) @@ -0,0 +1,12 @@ +--- js/src/jsnativestack.cpp~ ++++ js/src/jsnativestack.cpp +@@ -50,7 +50,8 @@ + #elif defined(XP_MACOSX) || defined(DARWIN) || defined(XP_UNIX) + # include + +-# if defined(__FreeBSD__) ++# if defined(FREEBSD) ++# include + # include + # endif + Modified: branches/experimental/www/firefox-devel/files/patch-toolkit_library_Makefile.in ============================================================================== --- branches/experimental/www/firefox-devel/files/patch-toolkit_library_Makefile.in Sun Nov 7 13:07:39 2010 (r431) +++ branches/experimental/www/firefox-devel/files/patch-toolkit_library_Makefile.in Mon Nov 8 14:27:48 2010 (r432) @@ -5,7 +5,7 @@ $(INSTALL) $^ . -EXTRA_DSO_LDOPTS += $(LIBS_DIR) $(EXTRA_DSO_LIBS) -+EXTRA_DSO_LDOPTS += -Wl,--warn-unresolved-symbols -Wl,--as-needed $(LIBS_DIR) $(EXTRA_DSO_LIBS) ++EXTRA_DSO_LDOPTS += $(LIBS_DIR) $(EXTRA_DSO_LIBS) %%PTHREAD_LIBS%% ifdef MOZ_ENABLE_LIBXUL include $(srcdir)/libxul-rules.mk Modified: trunk/Mk/bsd.gecko.mk ============================================================================== --- trunk/Mk/bsd.gecko.mk Sun Nov 7 13:07:39 2010 (r431) +++ trunk/Mk/bsd.gecko.mk Mon Nov 8 14:27:48 2010 (r432) @@ -516,6 +516,7 @@ .for subdir in "" nsprpub js/src @if [ -f ${MOZSRC}/${subdir}/config/system-headers ] ; then \ ${ECHO_CMD} "fenv.h" >> ${MOZSRC}/${subdir}/config/system-headers ; \ + ${ECHO_CMD} "pthread_np.h" >> ${MOZSRC}/${subdir}/config/system-headers ; \ fi .endfor @${REINPLACE_CMD} -e 's|%%MOZILLA%%|${MOZILLA}|g' \ From owner-freebsd-gecko@FreeBSD.ORG Mon Nov 8 17:56:17 2010 Return-Path: Delivered-To: gecko@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E9AF7106566B; Mon, 8 Nov 2010 17:56:17 +0000 (UTC) (envelope-from antonio@antonioshome.net) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id B0B918FC1D; Mon, 8 Nov 2010 17:56:17 +0000 (UTC) Received: by iwn39 with SMTP id 39so6360851iwn.13 for ; Mon, 08 Nov 2010 09:56:17 -0800 (PST) MIME-Version: 1.0 Received: by 10.231.10.200 with SMTP id q8mr4123464ibq.144.1289238976322; Mon, 08 Nov 2010 09:56:16 -0800 (PST) Received: by 10.231.15.67 with HTTP; Mon, 8 Nov 2010 09:56:15 -0800 (PST) X-Originating-IP: [87.223.131.158] In-Reply-To: <4CD47C1C.3040602@yandex.ru> References: <4CD4504A.7070107@antonioshome.net> <4CD47C1C.3040602@yandex.ru> Date: Mon, 8 Nov 2010 18:56:15 +0100 Message-ID: From: Antonio Vieiro To: Ruslan Mahmatkhanov Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: quoted-printable Cc: gecko@freebsd.org, freebsd-ports@freebsd.org Subject: Re: firefox in 8.1-RELEASE: High CPU consumption? X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Nov 2010 17:56:18 -0000 Hi, I did upgrade to 3.6.12 and the problem seems to have disappeared. It's much better now. I'll keep an eye on firefox CPU consumption on standby, and will let you know if the problem arises again. Kind regards, Antonio 2010/11/5 Ruslan Mahmatkhanov : > > Hi! > > 05.11.2010 21:43, Antonio Vieiro =D0=C9=DB=C5=D4: >> >> Hi all, >> >> I'm observing what I think a high CPU usage with the "www/firefox" port >> in 8.1-RELEASE. >> >> Even with a blank page loaded (about:blank) I see CPU loads around 7-9%. >> >> I've done a truss on the browser and I see what appears to be a loop and >> some "timeout" and "resource temporarily unavailable" results on calls >> to "read". I'm attaching a gzipped file with the result of truss. >> * Where the problem occurs: >> When running firefox (3.6.4). > > First of all please try to update to latest version (3.6.12) and check if > the problem persists. If it does, run truss again and send the output (yo= u > forgot to attach the gzipped file in original message). > > -- > Regards, > Ruslan > From owner-freebsd-gecko@FreeBSD.ORG Thu Nov 11 05:01:55 2010 Return-Path: Delivered-To: freebsd-gecko@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1AC90106566C; Thu, 11 Nov 2010 05:01:55 +0000 (UTC) (envelope-from swell.k@gmail.com) Received: from mail-yw0-f54.google.com (mail-yw0-f54.google.com [209.85.213.54]) by mx1.freebsd.org (Postfix) with ESMTP id B05748FC15; Thu, 11 Nov 2010 05:01:54 +0000 (UTC) Received: by ywa8 with SMTP id 8so443234ywa.13 for ; Wed, 10 Nov 2010 21:01:54 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:references :date:in-reply-to:message-id:user-agent:mime-version:content-type; bh=Sg5K5D+/66eYxVH+1IYjZnjtWJDz5woyvRybKpsxXlE=; b=c0ShGoOS5hxPKToxWd3ZmWybzNCTT/1IKR83dRQK8Hi1cuWdCTaP7AnE0BCRqx+tOJ quYkJfRt8jv2Jxsei/X5mFsrnQD3ZGtOIm5biYn1HB7ClYpklVpcS7VetzUJauPv0o5B +iRRcb+XHZJNd8EHGk436cT+gJLXKuilYGM1c= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type; b=VUZvjWLRDANbkyLQDZFVCbqX1Hz1NNkOpxK1Xf0klS3Mvf98o0B+KThQez2n2JUZ8D PSwRKbrOVzQICdBlqg7x2vJPKr6w7bl56sEtW+13xWtXJfSvvTybO4Y2RGW0afsFUd3E 5Z7NvOQgKjwxUW/hiitbh4OUa76kOnHwNs2aM= Received: by 10.150.215.10 with SMTP id n10mr991462ybg.124.1289451713724; Wed, 10 Nov 2010 21:01:53 -0800 (PST) Received: from localhost (tor-exit-proxy1-readme.formlessnetworking.net [208.53.142.37]) by mx.google.com with ESMTPS id z33sm1182371yhc.33.2010.11.10.21.01.51 (version=SSLv3 cipher=RC4-MD5); Wed, 10 Nov 2010 21:01:52 -0800 (PST) From: Anonymous To: bronek References: <201011091110.oA9BABMC018361@freefall.freebsd.org> Date: Thu, 11 Nov 2010 08:01:44 +0300 In-Reply-To: <201011091110.oA9BABMC018361@freefall.freebsd.org> (bronek's message of "Tue, 9 Nov 2010 11:10:11 GMT") Message-ID: <86r5esbghz.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain Cc: freebsd-gecko@FreeBSD.org, bug-followup@FreeBSD.org Subject: Re: ports/152043: WITH_DEBUG doesn't work when compiling Firefox X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Nov 2010 05:01:55 -0000 bronek writes: > When it could be committed? It isn't auto-assigned to gecko@ and no one with GNATS access fixed it yet. Unlike bugzilla you can't edit/assign your own PRs. And maintainer may not be aware of unassigned PRs. In future to avoid this either use port's origin in subject line and rely on auto-assigner or manually specify >Responsible: when filing PR. From owner-freebsd-gecko@FreeBSD.ORG Fri Nov 12 21:26:37 2010 Return-Path: Delivered-To: gecko@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1DEEB106566B; Fri, 12 Nov 2010 21:26:37 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E2FC48FC26; Fri, 12 Nov 2010 21:26:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id oACLQaNd024239; Fri, 12 Nov 2010 21:26:36 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id oACLQal5024235; Fri, 12 Nov 2010 21:26:36 GMT (envelope-from linimon) Date: Fri, 12 Nov 2010 21:26:36 GMT Message-Id: <201011122126.oACLQal5024235@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gecko@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/152043: [patch] bsd.gecko.mk: WITH_DEBUG doesn't work when compiling Firefox X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Nov 2010 21:26:37 -0000 Old Synopsis: WITH_DEBUG doesn't work when compiling Firefox New Synopsis: [patch] bsd.gecko.mk: WITH_DEBUG doesn't work when compiling Firefox Responsible-Changed-From-To: freebsd-ports-bugs->gecko Responsible-Changed-By: linimon Responsible-Changed-When: Fri Nov 12 21:25:17 UTC 2010 Responsible-Changed-Why: Reclassify, and note that a patch that seems to work is included. http://www.freebsd.org/cgi/query-pr.cgi?pr=152043 From owner-freebsd-gecko@FreeBSD.ORG Sat Nov 13 10:02:36 2010 Return-Path: Delivered-To: gecko@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A99CC1065675; Sat, 13 Nov 2010 10:02:36 +0000 (UTC) (envelope-from beat@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7EFEA8FC13; Sat, 13 Nov 2010 10:02:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id oADA2aqa044169; Sat, 13 Nov 2010 10:02:36 GMT (envelope-from beat@freefall.freebsd.org) Received: (from beat@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id oADA2aH4044165; Sat, 13 Nov 2010 10:02:36 GMT (envelope-from beat) Date: Sat, 13 Nov 2010 10:02:36 GMT Message-Id: <201011131002.oADA2aH4044165@freefall.freebsd.org> To: beat@FreeBSD.org, gecko@FreeBSD.org, beat@FreeBSD.org From: beat@FreeBSD.org Cc: Subject: Re: ports/152043: [patch] bsd.gecko.mk: WITH_DEBUG doesn't work when compiling Firefox X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Nov 2010 10:02:36 -0000 Synopsis: [patch] bsd.gecko.mk: WITH_DEBUG doesn't work when compiling Firefox Responsible-Changed-From-To: gecko->beat Responsible-Changed-By: beat Responsible-Changed-When: Sat Nov 13 10:02:36 UTC 2010 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=152043 From owner-freebsd-gecko@FreeBSD.ORG Sat Nov 13 10:07:08 2010 Return-Path: Delivered-To: gecko@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E42EA1065674; Sat, 13 Nov 2010 10:07:08 +0000 (UTC) (envelope-from beat@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B9CF68FC08; Sat, 13 Nov 2010 10:07:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id oADA78lO044368; Sat, 13 Nov 2010 10:07:08 GMT (envelope-from beat@freefall.freebsd.org) Received: (from beat@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id oADA788U044364; Sat, 13 Nov 2010 10:07:08 GMT (envelope-from beat) Date: Sat, 13 Nov 2010 10:07:08 GMT Message-Id: <201011131007.oADA788U044364@freefall.freebsd.org> To: vsityz@gmail.com, beat@FreeBSD.org, gecko@FreeBSD.org From: beat@FreeBSD.org Cc: Subject: Re: ports/149594: /usr/ports/mail/thunderbird no build X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Nov 2010 10:07:09 -0000 Synopsis: /usr/ports/mail/thunderbird no build State-Changed-From-To: feedback->closed State-Changed-By: beat State-Changed-When: Sat Nov 13 10:07:08 UTC 2010 State-Changed-Why: No feedback within two months. http://www.freebsd.org/cgi/query-pr.cgi?pr=149594 From owner-freebsd-gecko@FreeBSD.ORG Sat Nov 13 10:09:59 2010 Return-Path: Delivered-To: gecko@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 995361065673; Sat, 13 Nov 2010 10:09:59 +0000 (UTC) (envelope-from beat@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6EEC98FC18; Sat, 13 Nov 2010 10:09:59 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id oADA9xxA044490; Sat, 13 Nov 2010 10:09:59 GMT (envelope-from beat@freefall.freebsd.org) Received: (from beat@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id oADA9wBR044486; Sat, 13 Nov 2010 10:09:58 GMT (envelope-from beat) Date: Sat, 13 Nov 2010 10:09:58 GMT Message-Id: <201011131009.oADA9wBR044486@freefall.freebsd.org> To: nkoch@gmx.de, beat@FreeBSD.org, gecko@FreeBSD.org From: beat@FreeBSD.org Cc: Subject: Re: ports/144145: www/firefox: Firefox 3.6 does not allow any https-connection X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Nov 2010 10:09:59 -0000 Synopsis: www/firefox: Firefox 3.6 does not allow any https-connection State-Changed-From-To: open->closed State-Changed-By: beat State-Changed-When: Sat Nov 13 10:09:58 UTC 2010 State-Changed-Why: Problem solved by removing obsolete libc_r from the system. Thanks for the report and nailing this down! http://www.freebsd.org/cgi/query-pr.cgi?pr=144145