19.0.2 firefox19
authorWolfgang Rosenauer <wr@rosenauer.org>
Sat, 16 Mar 2013 00:07:21 +0100
branchfirefox19
changeset 631 e5ead5bc3360
parent 623 9bf0a4872e3d
child 633 7c6f56a37ed6
19.0.2 arm fixes
MozillaFirefox/MozillaFirefox.changes
MozillaFirefox/MozillaFirefox.spec
MozillaFirefox/create-tar.sh
--- a/MozillaFirefox/MozillaFirefox.changes	Thu Feb 28 23:07:39 2013 +0100
+++ b/MozillaFirefox/MozillaFirefox.changes	Sat Mar 16 00:07:21 2013 +0100
@@ -1,4 +1,18 @@
 -------------------------------------------------------------------
+Tue Mar 12 23:08:15 UTC 2013 - dmueller@suse.com
+
+- build fixes for armv7hl:
+  * disable debug build as armv7hl does not have enough memory
+  * disable webrtc on armv7hl as it is non-compiling
+
+-------------------------------------------------------------------
+Thu Mar  7 19:03:32 UTC 2013 - wr@rosenauer.org
+
+- update to Firefox 19.0.2 (bnc#808243)
+  * MFSA 2013-29/CVE-2013-0787 (bmo#848644)
+    Use-after-free in HTML Editor
+
+-------------------------------------------------------------------
 Thu Feb 28 22:06:36 UTC 2013 - wr@rosenauer.org
 
 - update to Firefox 19.0.1
--- a/MozillaFirefox/MozillaFirefox.spec	Thu Feb 28 23:07:39 2013 +0100
+++ b/MozillaFirefox/MozillaFirefox.spec	Sat Mar 16 00:07:21 2013 +0100
@@ -18,7 +18,7 @@
 
 
 %define major 19
-%define mainver %major.0.1
+%define mainver %major.0.2
 %define update_channel release
 
 Name:           MozillaFirefox
@@ -54,7 +54,7 @@
 %endif
 Version:        %{mainver}
 Release:        0
-%define         releasedate 2013022700
+%define         releasedate 2013030600
 Provides:       firefox = %{mainver}
 Provides:       firefox = %{version}-%{release}
 Provides:       web_browser
@@ -268,6 +268,9 @@
 export BUILD_OFFICIAL=1
 export MOZ_TELEMETRY_REPORTING=1
 export CFLAGS="$RPM_OPT_FLAGS -Os -fno-strict-aliasing"
+%ifarch %arm
+export CFLAGS="${CFLAGS/-g/}"
+%endif
 %ifarch ppc64
 export CFLAGS="$CFLAGS -mminimal-toc"
 %endif
@@ -328,6 +331,7 @@
 %ifarch %arm
 cat << EOF >> $MOZCONFIG
 ac_add_options --disable-neon
+ac_add_options --disable-webrtc
 EOF
 %endif
 make -f client.mk build
--- a/MozillaFirefox/create-tar.sh	Thu Feb 28 23:07:39 2013 +0100
+++ b/MozillaFirefox/create-tar.sh	Sat Mar 16 00:07:21 2013 +0100
@@ -2,8 +2,8 @@
 
 CHANNEL="release"
 BRANCH="releases/mozilla-$CHANNEL"
-RELEASE_TAG="FIREFOX_19_0_1_RELEASE"
-VERSION="19.0.1"
+RELEASE_TAG="FIREFOX_19_0_2_RELEASE"
+VERSION="19.0.2"
 
 # mozilla
 echo "cloning $BRANCH..."