# HG changeset patch # User Wolfgang Rosenauer # Date 1363388841 -3600 # Node ID e5ead5bc3360835df4ae7f7c1b8bb7a23f047261 # Parent 9bf0a4872e3deda92803aef272d091613e5fd11f 19.0.2 arm fixes diff -r 9bf0a4872e3d -r e5ead5bc3360 MozillaFirefox/MozillaFirefox.changes --- 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 diff -r 9bf0a4872e3d -r e5ead5bc3360 MozillaFirefox/MozillaFirefox.spec --- 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 diff -r 9bf0a4872e3d -r e5ead5bc3360 MozillaFirefox/create-tar.sh --- 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..."