[SVN-Commit] r1534 - in trunk/www: firefox firefox-nightly seamonkey

2014-03-03 Thread svn-freebsd-gecko
Author: jbeich
Date: Tue Mar  4 04:33:37 2014
New Revision: 1534

Log:
- use -msse2 if available to avoid clang crash
- allow building anyway with TRYBROKEN

Modified:
   trunk/www/firefox-nightly/Makefile
   trunk/www/firefox/Makefile
   trunk/www/seamonkey/Makefile

Modified: trunk/www/firefox-nightly/Makefile
==
--- trunk/www/firefox-nightly/Makefile  Tue Mar  4 00:18:54 2014(r1533)
+++ trunk/www/firefox-nightly/Makefile  Tue Mar  4 04:33:37 2014(r1534)
@@ -74,11 +74,16 @@
 # http://svnweb.freebsd.org/changeset/base/255804
 .if ${CHOSEN_COMPILER_TYPE} == clang && ${ARCH} == i386 && ${OSVERSION} < 
156
 . if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS}
-IGNORE=Cannot build with OPTIMIZED_CFLAGS option due to \
+BROKEN=Cannot build with OPTIMIZED_CFLAGS option due to \
a ${CHOSEN_COMPILER_TYPE} bug: unset the option or \
use FAVORITE_COMPILER=gcc in Makefile.local/make.conf
+# apply workaround only for -O2 or greater
 . elif ${CXXFLAGS:M-O*} && ! ${CXXFLAGS:M-O[01]}
+.  if ${MACHINE_CPU:Msse2}
+CXXFLAGS+= -msse2
+.  else
 CXXFLAGS+= -O1
+.  endif
 . endif
 .endif
 

Modified: trunk/www/firefox/Makefile
==
--- trunk/www/firefox/Makefile  Tue Mar  4 00:18:54 2014(r1533)
+++ trunk/www/firefox/Makefile  Tue Mar  4 04:33:37 2014(r1534)
@@ -62,11 +62,16 @@
 # http://svnweb.freebsd.org/changeset/base/255804
 .if ${CHOSEN_COMPILER_TYPE} == clang && ${ARCH} == i386 && ${OSVERSION} < 
156
 . if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS}
-IGNORE=Cannot build with OPTIMIZED_CFLAGS option due to \
+BROKEN=Cannot build with OPTIMIZED_CFLAGS option due to \
a ${CHOSEN_COMPILER_TYPE} bug: unset the option or \
use FAVORITE_COMPILER=gcc in Makefile.local/make.conf
+# apply workaround only for -O2 or greater
 . elif ${CXXFLAGS:M-O*} && ! ${CXXFLAGS:M-O[01]}
+.  if ${MACHINE_CPU:Msse2}
+CXXFLAGS+= -msse2
+.  else
 CXXFLAGS+= -O1
+.  endif
 . endif
 .endif
 

Modified: trunk/www/seamonkey/Makefile
==
--- trunk/www/seamonkey/MakefileTue Mar  4 00:18:54 2014(r1533)
+++ trunk/www/seamonkey/MakefileTue Mar  4 04:33:37 2014(r1534)
@@ -87,11 +87,16 @@
 # http://svnweb.freebsd.org/changeset/base/255804
 .if ${CHOSEN_COMPILER_TYPE} == clang && ${ARCH} == i386 && ${OSVERSION} < 
156
 . if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS}
-IGNORE=Cannot build with OPTIMIZED_CFLAGS option due to \
+BROKEN=Cannot build with OPTIMIZED_CFLAGS option due to \
a ${CHOSEN_COMPILER_TYPE} bug: unset the option or \
use FAVORITE_COMPILER=gcc in Makefile.local/make.conf
+# apply workaround only for -O2 or greater
 . elif ${CXXFLAGS:M-O*} && ! ${CXXFLAGS:M-O[01]}
+.  if ${MACHINE_CPU:Msse2}
+CXXFLAGS+= -msse2
+.  else
 CXXFLAGS+= -O1
+.  endif
 . endif
 .endif
 
___
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] r1531 - trunk/Mk

2014-03-03 Thread svn-freebsd-gecko
Author: jbeich
Date: Tue Mar  4 00:18:37 2014
New Revision: 1531

Log:
use -rpath to avoid ambiguity with --just-symbols

Modified:
   trunk/Mk/bsd.gecko.mk

Modified: trunk/Mk/bsd.gecko.mk
==
--- trunk/Mk/bsd.gecko.mk   Tue Mar  4 00:18:30 2014(r1530)
+++ trunk/Mk/bsd.gecko.mk   Tue Mar  4 00:18:37 2014(r1531)
@@ -539,7 +539,7 @@
 MOZ_OPTIONS+=  --prefix="${FAKEDIR}"
 
 CPPFLAGS+= -isystem${LOCALBASE}/include
-LDFLAGS+=  -L${LOCALBASE}/lib -Wl,-R,${PREFIX}/lib/${MOZILLA}
+LDFLAGS+=  -L${LOCALBASE}/lib -Wl,-rpath,${PREFIX}/lib/${MOZILLA}
 
 # use jemalloc 3.0.0 API for stats/tuning
 MOZ_EXPORT+=   MOZ_JEMALLOC3=1
___
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] r1530 - in trunk: Mk mail/thunderbird www/firefox www/firefox-esr www/firefox-nightly www/libxul www/seamonkey

2014-03-03 Thread svn-freebsd-gecko
Author: jbeich
Date: Tue Mar  4 00:18:30 2014
New Revision: 1530

Log:
- drop zip from USE_MOZILLA as it's always required
- adjust USE_MOZILLA comment as it often gets out of date

Modified:
   trunk/Mk/bsd.gecko.mk
   trunk/mail/thunderbird/Makefile
   trunk/www/firefox-esr/Makefile
   trunk/www/firefox-nightly/Makefile
   trunk/www/firefox/Makefile
   trunk/www/libxul/Makefile
   trunk/www/seamonkey/Makefile

Modified: trunk/Mk/bsd.gecko.mk
==
--- trunk/Mk/bsd.gecko.mk   Sat Mar  1 02:30:32 2014(r1529)
+++ trunk/Mk/bsd.gecko.mk   Tue Mar  4 00:18:30 2014(r1530)
@@ -436,12 +436,11 @@
 #
 # Ports can use the following:
 #
-# USE_MOZILLA  By default, it enables the denendencies: cairo,
-#  event, ffi, hunspell, jpeg, 
nspr, nss, png, sqlite,
-#  vpx and zip. Search for 
'_ALL_DEPENDS' below to see
-#  the list. If your port doesn't 
need one of list then
-#  you can use '-' like 
'USE_MOZILLA= -png -zip' to
-#  subtract the dependencies.
+# USE_MOZILLA  By default, it enables every system dependency
+#  listed in '_ALL_DEPENDS'. If 
your port doesn't
+#  need one of those then you can 
use '-' like
+#  'USE_MOZILLA= -png -vpx' to 
subtract the
+#  dependencies.
 #
 # GECKO_PLIST_PRE_FILESManual add files in the plist if it needs.
 #
@@ -549,7 +548,7 @@
 .endif
 
 # Standard depends
-_ALL_DEPENDS=  cairo event ffi harfbuzz hunspell icu jpeg nspr nss opus png 
sqlite vorbis vpx zip
+_ALL_DEPENDS=  cairo event ffi harfbuzz hunspell icu jpeg nspr nss opus png 
sqlite vorbis vpx
 
 cairo_LIB_DEPENDS= cairo:${PORTSDIR}/graphics/cairo
 cairo_MOZ_OPTIONS= --enable-system-cairo --enable-system-pixman
@@ -612,9 +611,6 @@
 vpx_MOZ_OPTIONS=   --with-system-libvpx
 vpx_EXTRACT_AFTER_ARGS=--exclude mozilla*/media/libvpx
 
-zip_BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip
-zip_RUN_DEPENDS=   ${zip_BUILD_DEPENDS}
-
 .for use in ${USE_MOZILLA}
 ${use:S/-/_WITHOUT_/}= ${TRUE}
 .endfor

Modified: trunk/mail/thunderbird/Makefile
==
--- trunk/mail/thunderbird/Makefile Sat Mar  1 02:30:32 2014(r1529)
+++ trunk/mail/thunderbird/Makefile Tue Mar  4 00:18:30 2014(r1530)
@@ -21,6 +21,7 @@
libvorbis>=1.3.4:${PORTSDIR}/audio/libvorbis \
opus>=1.1:${PORTSDIR}/audio/opus \
v4l_compat>0:${PORTSDIR}/multimedia/v4l_compat \
+   zip:${PORTSDIR}/archivers/zip \
unzip:${PORTSDIR}/archivers/unzip
 LIB_DEPENDS=   libv4l2.so:${PORTSDIR}/multimedia/libv4l
 

Modified: trunk/www/firefox-esr/Makefile
==
--- trunk/www/firefox-esr/Makefile  Sat Mar  1 02:30:32 2014(r1529)
+++ trunk/www/firefox-esr/Makefile  Tue Mar  4 00:18:30 2014(r1530)
@@ -21,6 +21,7 @@
libvorbis>=1.3.4:${PORTSDIR}/audio/libvorbis \
opus>=1.1:${PORTSDIR}/audio/opus \
v4l_compat>0:${PORTSDIR}/multimedia/v4l_compat \
+   zip:${PORTSDIR}/archivers/zip \
unzip:${PORTSDIR}/archivers/unzip
 LIB_DEPENDS=   libv4l2.so:${PORTSDIR}/multimedia/libv4l
 

Modified: trunk/www/firefox-nightly/Makefile
==
--- trunk/www/firefox-nightly/Makefile  Sat Mar  1 02:30:32 2014(r1529)
+++ trunk/www/firefox-nightly/Makefile  Tue Mar  4 00:18:30 2014(r1530)
@@ -23,6 +23,7 @@
opus>=1.1:${PORTSDIR}/audio/opus \
libvpx>=1.3.0:${PORTSDIR}/multimedia/libvpx \
nspr>=4.10.3:${PORTSDIR}/devel/nspr \
+   zip:${PORTSDIR}/archivers/zip \
unzip:${PORTSDIR}/archivers/unzip
 #  cairo>=1.12.16,2:${PORTSDIR}/graphics/cairo \
 #  nss>=3.15.5:${PORTSDIR}/security/nss \

Modified: trunk/www/firefox/Makefile
==
--- trunk/www/firefox/Makefile  Sat Mar  1 02:30:32 2014(r1529)
+++ trunk/www/firefox/Makefile  Tue Mar  4 00:18:30 2014(r1530)
@@ -21,6 +21,7 @@
sqlite3>=3.8.1:${PORTSDIR}/databases/sqlite3 \

${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \
v4l_compat>0:${PORTSDIR}/multimedia/v4l_compat \
+   zip:${PORTSDIR}/archivers/zip \
unzip:$

[SVN-Commit] r1533 - in trunk/www: firefox/files seamonkey/files

2014-03-03 Thread svn-freebsd-gecko
Author: jbeich
Date: Tue Mar  4 00:18:54 2014
New Revision: 1533

Log:
cherry-pick matroskademux hack removal to avoid gst-1.0 pessimization

Added:
   trunk/www/firefox/files/patch-bug973744
   trunk/www/seamonkey/files/patch-bug973744

Added: trunk/www/firefox/files/patch-bug973744
==
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ trunk/www/firefox/files/patch-bug973744 Tue Mar  4 00:18:54 2014
(r1533)
@@ -0,0 +1,38 @@
+commit 2506904
+Author: Alessandro Decina 
+Date:   Wed Feb 19 11:30:09 2014 -0500
+
+Bug 973744 - Remove matroska seek hack in the gstreamer media backend. 
r=edwin
+---
+ content/media/gstreamer/GStreamerReader.cpp | 21 -
+ 1 file changed, 21 deletions(-)
+
+diff --git content/media/gstreamer/GStreamerReader.cpp 
content/media/gstreamer/GStreamerReader.cpp
+index e21ffdd..82dadeb 100644
+--- content/media/gstreamer/GStreamerReader.cpp
 content/media/gstreamer/GStreamerReader.cpp
+@@ -381,24 +381,6 @@ nsresult GStreamerReader::ReadMetadata(MediaInfo* aInfo,
+ /* we couldn't get this to play */
+ return ret;
+ 
+-  /* FIXME: workaround for a bug in matroskademux. This seek makes 
matroskademux
+-   * parse the index */
+-  LOG(PR_LOG_DEBUG, "doing matroskademux seek hack");
+-  if (gst_element_seek_simple(mPlayBin, GST_FORMAT_TIME,
+-GST_SEEK_FLAG_FLUSH, 0)) {
+-/* after a seek we need to wait again for ASYNC_DONE */
+-message = gst_bus_timed_pop_filtered(mBus, 5 * GST_SECOND,
+-   (GstMessageType)(GST_MESSAGE_ASYNC_DONE | GST_MESSAGE_ERROR));
+-LOG(PR_LOG_DEBUG, "matroskademux seek hack done");
+-if (GST_MESSAGE_TYPE(message) != GST_MESSAGE_ASYNC_DONE) {
+-  gst_element_set_state(mPlayBin, GST_STATE_NULL);
+-  gst_message_unref(message);
+-  return NS_ERROR_FAILURE;
+-}
+-  } else {
+-LOG(PR_LOG_DEBUG, "matroskademux seek hack failed (non fatal)");
+-  }
+-
+   /* report the duration */
+   gint64 duration;
+ 

Added: trunk/www/seamonkey/files/patch-bug973744
==
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ trunk/www/seamonkey/files/patch-bug973744   Tue Mar  4 00:18:54 2014
(r1533)
@@ -0,0 +1,38 @@
+commit 2506904
+Author: Alessandro Decina 
+Date:   Wed Feb 19 11:30:09 2014 -0500
+
+Bug 973744 - Remove matroska seek hack in the gstreamer media backend. 
r=edwin
+---
+ content/media/gstreamer/GStreamerReader.cpp | 21 -
+ 1 file changed, 21 deletions(-)
+
+diff --git content/media/gstreamer/GStreamerReader.cpp 
content/media/gstreamer/GStreamerReader.cpp
+index e21ffdd..82dadeb 100644
+--- mozilla/content/media/gstreamer/GStreamerReader.cpp
 mozilla/content/media/gstreamer/GStreamerReader.cpp
+@@ -366,24 +366,6 @@ nsresult GStreamerReader::ReadMetadata(MediaInfo* aInfo,
+ /* we couldn't get this to play */
+ return ret;
+ 
+-  /* FIXME: workaround for a bug in matroskademux. This seek makes 
matroskademux
+-   * parse the index */
+-  LOG(PR_LOG_DEBUG, ("doing matroskademux seek hack"));
+-  if (gst_element_seek_simple(mPlayBin, GST_FORMAT_TIME,
+-GST_SEEK_FLAG_FLUSH, 0)) {
+-/* after a seek we need to wait again for ASYNC_DONE */
+-message = gst_bus_timed_pop_filtered(mBus, 5 * GST_SECOND,
+-   (GstMessageType)(GST_MESSAGE_ASYNC_DONE | GST_MESSAGE_ERROR));
+-LOG(PR_LOG_DEBUG, ("matroskademux seek hack done"));
+-if (GST_MESSAGE_TYPE(message) != GST_MESSAGE_ASYNC_DONE) {
+-  gst_element_set_state(mPlayBin, GST_STATE_NULL);
+-  gst_message_unref(message);
+-  return NS_ERROR_FAILURE;
+-}
+-  } else {
+-LOG(PR_LOG_DEBUG, ("matroskademux seek hack failed (non fatal)"));
+-  }
+-
+   bool isMP3 = 
mDecoder->GetResource()->GetContentType().EqualsASCII(AUDIO_MP3);
+   if (isMP3) {
+ ParseMP3Headers();
___
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] r1532 - in trunk: . Mk www/firefox www/firefox-i18n www/firefox-nightly www/firefox-nightly/files www/firefox/files www/linux-firefox

2014-03-03 Thread svn-freebsd-gecko
Author: jbeich
Date: Tue Mar  4 00:18:47 2014
New Revision: 1532

Log:
update

Deleted:
   trunk/Gecko_UPDATING
   trunk/www/firefox-nightly/files/patch-bug977457
Modified:
   trunk/Gecko_ChangeLog
   trunk/Mk/bsd.gecko.mk
   trunk/www/firefox-i18n/Makefile
   trunk/www/firefox-i18n/distinfo
   trunk/www/firefox-nightly/Makefile.hgrev
   trunk/www/firefox-nightly/distinfo
   trunk/www/firefox/Makefile
   trunk/www/firefox/distinfo
   trunk/www/firefox/files/patch-bug806917
   trunk/www/linux-firefox/Makefile
   trunk/www/linux-firefox/distinfo

Modified: trunk/Gecko_ChangeLog
==
--- trunk/Gecko_ChangeLog   Tue Mar  4 00:18:37 2014(r1531)
+++ trunk/Gecko_ChangeLog   Tue Mar  4 00:18:47 2014(r1532)
@@ -1,4 +1,4 @@
-- switch to GSTREAMER option to depend on multimedia/gstreamer1
+- switch GSTREAMER option for non-esr ports to depend on multimedia/gstreamer1 
[2]
 - use port dependencies for libogg, libvorbis, libopus, harfbuzz, graphite2
 - enable readahead in url-classifier, asmjs, download resume like on Linux
 - build www/firefox and www/seamonkey faster using unified compilation
@@ -8,3 +8,4 @@
 - add gstreamer note to pkg-message
 
 PR:ports/186580 [1]
+Requested by:  kwm [2]

Deleted: trunk/Gecko_UPDATING
==
--- trunk/Gecko_UPDATINGTue Mar  4 00:18:47 2014(r1531)
+++ /dev/null   00:00:00 1970   (deleted)
@@ -1,7 +0,0 @@
-20121010:
-  AFFECTS: users of www/firefox and www/seamonkey
-  AUTHOR: ge...@freebsd.org
-
-  When using Firefox or SeaMonkey compiled with ALSA option ON it may
-  crash on assert in alsa_refill_stream as described in ports/170473.
-  To workaround enable BUFSZ_P2 in audio/alsa-plugins or use PULSEAUDIO.

Modified: trunk/Mk/bsd.gecko.mk
==
--- trunk/Mk/bsd.gecko.mk   Tue Mar  4 00:18:37 2014(r1531)
+++ trunk/Mk/bsd.gecko.mk   Tue Mar  4 00:18:47 2014(r1532)
@@ -574,7 +574,7 @@
 icu_MOZ_OPTIONS=   --with-system-icu --with-intl-api 
--enable-intl-api
 
 -jpeg_BUILD_DEPENDS=yasm:${PORTSDIR}/devel/yasm
-# XXX: depends on pkgng package flavor support
+# XXX depends on ports/180159 or package flavor support
 #jpeg_LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/libjpeg-turbo
 jpeg_LIB_DEPENDS=  jpeg:${PORTSDIR}/graphics/jpeg
 jpeg_MOZ_OPTIONS=  --with-system-jpeg=${LOCALBASE}

Modified: trunk/www/firefox-i18n/Makefile
==
--- trunk/www/firefox-i18n/Makefile Tue Mar  4 00:18:37 2014(r1531)
+++ trunk/www/firefox-i18n/Makefile Tue Mar  4 00:18:47 2014(r1532)
@@ -2,7 +2,7 @@
 # $FreeBSD: head/www/firefox-i18n/Makefile 336446 2013-12-14 13:42:06Z flo $
 
 PORTNAME=  firefox-i18n
-PORTVERSION=   28.0b6
+PORTVERSION=   28.0b7
 CATEGORIES=www
 MASTER_SITES=  
MOZILLA/${PORTNAME:S|-i18n||}/releases/${PORTVERSION}/linux-i686/xpi
 PKGNAMEPREFIX=

Modified: trunk/www/firefox-i18n/distinfo
==
--- trunk/www/firefox-i18n/distinfo Tue Mar  4 00:18:37 2014(r1531)
+++ trunk/www/firefox-i18n/distinfo Tue Mar  4 00:18:47 2014(r1532)
@@ -1,40 +1,170 @@
-SHA256 (xpi/firefox-i18n-28.0b6/ar.xpi) = 
2ada90df7410447a589e626d5cd1f1ae4357654844dcc2e20754ececb93f40ae
-SIZE (xpi/firefox-i18n-28.0b6/ar.xpi) = 388946
-SHA256 (xpi/firefox-i18n-28.0b6/bn-IN.xpi) = 
affa0953821d2a64fbf1463da22dc85bb147139ec683b22d68079be61ef4f264
-SIZE (xpi/firefox-i18n-28.0b6/bn-IN.xpi) = 413513
-SHA256 (xpi/firefox-i18n-28.0b6/br.xpi) = 
fc472722444d85865335925530b3bbd2719358aba1fbe583aa3e51f33d1aadbf
-SIZE (xpi/firefox-i18n-28.0b6/br.xpi) = 353934
-SHA256 (xpi/firefox-i18n-28.0b6/de.xpi) = 
e045050cbd8b15608d90095bab71bdaf4d8b93aab492df7a73c992da2fd67e8b
-SIZE (xpi/firefox-i18n-28.0b6/de.xpi) = 355691
-SHA256 (xpi/firefox-i18n-28.0b6/es-ES.xpi) = 
6f93ca61f16f163835357d70863d01f75cdc8f532f0c11c158f698a6b0506328
-SIZE (xpi/firefox-i18n-28.0b6/es-ES.xpi) = 300664
-SHA256 (xpi/firefox-i18n-28.0b6/et.xpi) = 
94d296d8a40cec1f03388d1eef3f04f52f61ba87f397d96caef84b276ac0b874
-SIZE (xpi/firefox-i18n-28.0b6/et.xpi) = 345631
-SHA256 (xpi/firefox-i18n-28.0b6/fr.xpi) = 
cae03bebd2206100970ba1ecb77c11752e823b68e6bab07e5e023f2b8eb7184f
-SIZE (xpi/firefox-i18n-28.0b6/fr.xpi) = 368898
-SHA256 (xpi/firefox-i18n-28.0b6/hi-IN.xpi) = 
5d340fed15f958762c689a03fcdda91e4040d9ae0a0fc47f1966f718e30cbad9
-SIZE (xpi/firefox-i18n-28.0b6/hi-IN.xpi) = 402367
-SHA256 (xpi/firefox-i18n-28.0b6/id.xpi) = 
9f48190ec013a998dac6ce6687a0d554fcafc89f283c9017b7aa41af8fa18bc9
-SIZE (xpi/firefox-i18n-28.0b6/id.xpi) = 342616
-SHA256 (xpi/firefox-i18n-28.0b6/it.xpi) = 
893b6346a31ce89db7d479cb3f9c0948a0f5ace32bec3d60b14a1da9507d37bf
-SIZE (xpi/firefox-i18n-28.0b6/it

Current problem reports assigned to freebsd-gecko@FreeBSD.org

2014-03-03 Thread FreeBSD bugmaster
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/186748 gecko  mail/thunderbird 24.3.0_1 does not work with amd (am-u
o ports/186128 gecko  [PATCH] www/xpi-adblock: fix stagin for all XPI ports

2 problems total.

___
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"


Current problem reports assigned to ge...@freebsd.org

2014-03-03 Thread FreeBSD bugmaster
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/187092 gecko  www/xpi-quick-locale-switcher broken on pre-pkgNG syst
o ports/187010 gecko  problem with www/libxul after upgrade to 24.3.0 - exte
o ports/186580 gecko  www/seamonkey fails to build on sparc64
o ports/186541 gecko  installing www/libxul fails
o ports/186174 gecko  add LIB_DEPENDS=  libv4l2 to www/firefox/Makefile
o ports/185527 gecko  [PATCH] security/nss: Added forgotten libnsssysinit.so
o ports/185210 gecko  www/seamonkey-i18n: options sometimes ignored
o ports/184630 gecko  mail/thunderbird jobserver unavailable
o ports/184399 gecko  www/seamonkey build error on i386
o ports/183630 gecko  www/firefox: Firefox 25.0_1,1 cannot built on amd64
o ports/182499 gecko  www/firefox crash when i try use textproc/ibus/
o ports/182411 gecko  mail/thunderbird: Does not build with poudriere on 9.1
o ports/182386 gecko  mail/thunderbird-i18n: fail to build at install stage
o ports/182351 gecko  mail/thunderbird - doesn't build with qt3
o ports/182346 gecko  mail/thunderbird - fails to build with gtk3
o ports/181393 gecko  www/xpi-quick-locale-switcher 1.7.8.5 does not works w
o ports/181005 gecko  mail/thunderbird - Enigmail failes to start pinentry
o ports/180938 gecko  www/firefox: ia64: ../../../js/src/gc/Heap.h:827:1: er
o ports/180855 gecko  www/firefox: Firefox 22 crashes on HTML 5 videos
o ports/180766 gecko  Flash not work in www/firefox
o ports/180563 gecko  www/seamonkey compilation error with Clang (*pp = '\0'
o ports/180380 gecko  www/firefox: Firefox 22.0 dies instantly when I try to
o ports/179420 gecko  www/seamonkey freezes completely by accessing citrix x
o ports/178524 gecko  BATCH=yes not work for www/firefox-i18n
o ports/177404 gecko  www/firefox: youtube videos in firefox not working
o ports/170310 gecko  mail/thunderbird: coredump/crash when used with OpenLD
o ports/168091 gecko  Mk/bsd.gecko.mk error: USE_FIREFOX doesn't work correc
f ports/165263 gecko  mail/thunderbird: core dumping most time when users ar
o ports/160387 gecko  security/ca_root_nss: Allow user to trust extra local 
f ports/155949 gecko  www/firefox: firefox 4, WITH_PGO, better Text against 
o ports/144044 gecko  [PATCH] www/firefox: Makefile.webplugins target order 

31 problems total.

___
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"