diff --git a/.gitignore b/.gitignore index 04e5933..7e4026e 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,14 @@ xulrunner-1.9.2.7.source.tar.bz2 +/xulrunner-1.9.2.9.source.tar.bz2 +/xulrunner-1.9.2.11.source.tar.bz2 +/xulrunner-1.9.2.12.source.tar.bz2 +/xulrunner-1.9.2.13.source.tar.bz2 +/xulrunner-1.9.2.14.source.tar.bz2 +/xulrunner-1.9.2.15.source.tar.bz2 +/xulrunner-1.9.2.16.source.tar.bz2 +/xulrunner-1.9.2.17.source.tar.bz2 +/xulrunner-1.9.2.18.source.tar.bz2 +/xulrunner-1.9.2.20.source.tar.bz2 +/xulrunner-1.9.2.22.source.tar.bz2 +/xulrunner-1.9.2.23.source.tar.bz2 +/xulrunner-1.9.2.24.source.tar.bz2 diff --git a/crashreporter-remove-static.patch b/crashreporter-remove-static.patch new file mode 100644 index 0000000..b94d165 --- /dev/null +++ b/crashreporter-remove-static.patch @@ -0,0 +1,11 @@ +diff -up comm-1.9.2/mozilla/toolkit/crashreporter/google-breakpad/src/tools/linux/dump_syms/Makefile.in.static comm-1.9.2/mozilla/toolkit/crashreporter/google-breakpad/src/tools/linux/dump_syms/Makefile.in +--- mozilla/toolkit/crashreporter/google-breakpad/src/tools/linux/dump_syms/Makefile.in.static 2010-06-23 19:47:11.000000000 +0200 ++++ mozilla/toolkit/crashreporter/google-breakpad/src/tools/linux/dump_syms/Makefile.in 2010-07-12 15:51:41.000000000 +0200 +@@ -64,6 +64,6 @@ FORCE_USE_PIC = 1 + + #XXX: bug 554854 causes us to be unable to run binaries on the build slaves + # due to them having an older libstdc++ +-HOST_LDFLAGS += -static ++#HOST_LDFLAGS += -static + + include $(topsrcdir)/config/rules.mk diff --git a/mozilla-513747.patch b/mozilla-513747.patch new file mode 100644 index 0000000..f74e2ab --- /dev/null +++ b/mozilla-513747.patch @@ -0,0 +1,97 @@ +diff -up xulrunner-1.9.2.13/mozilla-1.9.2/browser/installer/package-manifest.in.513747 xulrunner-1.9.2.13/mozilla-1.9.2/browser/installer/package-manifest.in +--- xulrunner-1.9.2.13/mozilla-1.9.2/browser/installer/package-manifest.in.513747 2010-12-03 16:47:53.000000000 +0100 ++++ xulrunner-1.9.2.13/mozilla-1.9.2/browser/installer/package-manifest.in 2011-01-03 13:29:14.000000000 +0100 +@@ -99,7 +99,7 @@ + #elifdef XP_OS2 + @BINPATH@/plugins/npnulos2.dll + #endif +-@BINPATH@/@DLL_PREFIX@sqlite3@DLL_SUFFIX@ ++@BINPATH@/@DLL_PREFIX@mozsqlite3@DLL_SUFFIX@ + @BINPATH@/README.txt + @BINPATH@/LICENSE + @BINPATH@/blocklist.xml +diff -up xulrunner-1.9.2.13/mozilla-1.9.2/browser/installer/removed-files.in.513747 xulrunner-1.9.2.13/mozilla-1.9.2/browser/installer/removed-files.in +--- xulrunner-1.9.2.13/mozilla-1.9.2/browser/installer/removed-files.in.513747 2010-12-03 16:47:53.000000000 +0100 ++++ xulrunner-1.9.2.13/mozilla-1.9.2/browser/installer/removed-files.in 2011-01-03 13:20:16.000000000 +0100 +@@ -811,5 +811,6 @@ install.rdf + components/nsUpdateService.js + components/nsUpdateServiceStub.js + #endif ++@DLL_PREFIX@sqlite3@DLL_SUFFIX@ + old-homepage-default.properties + mozilla-runtime@BIN_SUFFIX@ +diff -up xulrunner-1.9.2.13/mozilla-1.9.2/build/automation.py.in.513747 xulrunner-1.9.2.13/mozilla-1.9.2/build/automation.py.in +--- xulrunner-1.9.2.13/mozilla-1.9.2/build/automation.py.in.513747 2010-12-03 16:47:53.000000000 +0100 ++++ xulrunner-1.9.2.13/mozilla-1.9.2/build/automation.py.in 2011-01-03 13:20:16.000000000 +0100 +@@ -448,7 +448,7 @@ user_pref("camino.use_system_proxy_setti + if self.UNIXISH or self.IS_MAC: + envVar = "LD_LIBRARY_PATH" + if self.IS_MAC: +- envVar = "DYLD_LIBRARY_PATH" ++ envVar = "DYLD_LIBRARY_PATH_DISABLED" + else: # unixish + env['MOZILLA_FIVE_HOME'] = xrePath + if envVar in env: +diff -up xulrunner-1.9.2.13/mozilla-1.9.2/configure.in.513747 xulrunner-1.9.2.13/mozilla-1.9.2/configure.in +--- xulrunner-1.9.2.13/mozilla-1.9.2/configure.in.513747 2011-01-03 13:20:16.000000000 +0100 ++++ xulrunner-1.9.2.13/mozilla-1.9.2/configure.in 2011-01-03 13:28:11.000000000 +0100 +@@ -6332,8 +6332,8 @@ MOZ_NATIVE_SQLITE= ) + + if test -z "$MOZ_NATIVE_SQLITE" + then +- SQLITE_CFLAGS= +- SQLITE_LIBS='$(call EXPAND_LIBNAME_PATH,sqlite3,$(DIST)/lib)' ++ SQLITE_CFLAGS= ++ SQLITE_LIBS='$(call EXPAND_LIBNAME_PATH,mozsqlite3,$(DIST)/lib)' + else + PKG_CHECK_MODULES(SQLITE, sqlite3 >= $SQLITE_VERSION) + dnl =================================== +diff -up xulrunner-1.9.2.13/mozilla-1.9.2/db/sqlite3/src/Makefile.in.513747 xulrunner-1.9.2.13/mozilla-1.9.2/db/sqlite3/src/Makefile.in +--- xulrunner-1.9.2.13/mozilla-1.9.2/db/sqlite3/src/Makefile.in.513747 2010-12-03 16:47:59.000000000 +0100 ++++ xulrunner-1.9.2.13/mozilla-1.9.2/db/sqlite3/src/Makefile.in 2011-01-03 13:20:16.000000000 +0100 +@@ -46,7 +46,7 @@ VPATH = @srcdir@ + include $(DEPTH)/config/autoconf.mk + + MODULE = sqlite3 +-LIBRARY_NAME = sqlite3 ++LIBRARY_NAME = mozsqlite3 + FORCE_SHARED_LIB = 1 + VISIBILITY_FLAGS = + LIB_IS_C_ONLY = 1 +diff -up xulrunner-1.9.2.13/mozilla-1.9.2/db/sqlite3/src/sqlite.def.513747 xulrunner-1.9.2.13/mozilla-1.9.2/db/sqlite3/src/sqlite.def +--- xulrunner-1.9.2.13/mozilla-1.9.2/db/sqlite3/src/sqlite.def.513747 2010-12-03 16:47:59.000000000 +0100 ++++ xulrunner-1.9.2.13/mozilla-1.9.2/db/sqlite3/src/sqlite.def 2011-01-03 13:20:16.000000000 +0100 +@@ -33,7 +33,7 @@ + ; + ; ***** END LICENSE BLOCK ***** + +-LIBRARY sqlite3.dll ++LIBRARY mozsqlite3.dll + + EXPORTS + sqlite3_aggregate_context +diff -up xulrunner-1.9.2.13/mozilla-1.9.2/security/manager/Makefile.in.513747 xulrunner-1.9.2.13/mozilla-1.9.2/security/manager/Makefile.in +--- xulrunner-1.9.2.13/mozilla-1.9.2/security/manager/Makefile.in.513747 2011-01-03 13:20:16.000000000 +0100 ++++ xulrunner-1.9.2.13/mozilla-1.9.2/security/manager/Makefile.in 2011-01-03 13:30:23.000000000 +0100 +@@ -179,6 +179,9 @@ DEFAULT_GMAKE_FLAGS += NSPR_INCLUDE_DIR= + DEFAULT_GMAKE_FLAGS += NSPR_LIB_DIR=$(NSPR_LIB_DIR) + DEFAULT_GMAKE_FLAGS += MOZILLA_CLIENT=1 + DEFAULT_GMAKE_FLAGS += NO_MDUPDATE=1 ++ifndef MOZ_NATIVE_SQLITE ++DEFAULT_GMAKE_FLAGS += SQLITE=$(call EXPAND_LIBNAME,mozsqlite3) ++endif + ifdef NSS_DISABLE_DBM + DEFAULT_GMAKE_FLAGS += NSS_DISABLE_DBM=1 + endif +diff -up xulrunner-1.9.2.13/mozilla-1.9.2/xpcom/stub/Makefile.in.513747 xulrunner-1.9.2.13/mozilla-1.9.2/xpcom/stub/Makefile.in +--- xulrunner-1.9.2.13/mozilla-1.9.2/xpcom/stub/Makefile.in.513747 2010-12-03 16:49:21.000000000 +0100 ++++ xulrunner-1.9.2.13/mozilla-1.9.2/xpcom/stub/Makefile.in 2011-01-03 13:20:16.000000000 +0100 +@@ -85,7 +85,7 @@ DEPENDENT_LIBS_LIST += \ + ifdef MOZ_ENABLE_LIBXUL + + DEPENDENT_LIBS_LIST += \ +- $(LIB_PREFIX)sqlite3$(DLL_SUFFIX) \ ++ $(LIB_PREFIX)mozsqlite3$(DLL_SUFFIX) \ + $(LIB_PREFIX)nssutil3$(DLL_SUFFIX) \ + $(LIB_PREFIX)softokn3$(DLL_SUFFIX) \ + $(LIB_PREFIX)nss3$(DLL_SUFFIX) \ diff --git a/mozilla-build-s390.patch b/mozilla-build-s390.patch index 92f5cbb..2bfe1d5 100644 --- a/mozilla-build-s390.patch +++ b/mozilla-build-s390.patch @@ -1,8 +1,8 @@ -diff -up mozilla-1.9.2/js/src/jstl.h.old mozilla-1.9.2/js/src/jstl.h ---- mozilla-1.9.2/js/src/jstl.h.old 2010-03-10 10:01:51.000000000 +0100 -+++ mozilla-1.9.2/js/src/jstl.h 2010-03-10 12:24:55.000000000 +0100 +diff -up mozilla-1.9.2/js/src/jstl.h.s390 mozilla-1.9.2/js/src/jstl.h +--- mozilla-1.9.2/js/src/jstl.h.s390 2011-02-18 19:33:24.000000000 +0100 ++++ mozilla-1.9.2/js/src/jstl.h 2011-03-07 08:41:29.000000000 +0100 @@ -195,7 +195,6 @@ class ReentrancyGuard - static JS_ALWAYS_INLINE size_t + JS_ALWAYS_INLINE size_t RoundUpPow2(size_t x) { - typedef tl::StaticAssert::result>::result _; diff --git a/mozilla-crashreporter-static.patch b/mozilla-crashreporter-static.patch new file mode 100644 index 0000000..610b66e --- /dev/null +++ b/mozilla-crashreporter-static.patch @@ -0,0 +1,11 @@ +diff -up mozilla-1.9.2/toolkit/crashreporter/google-breakpad/src/tools/linux/dump_syms/Makefile.in.static mozilla-1.9.2/toolkit/crashreporter/google-breakpad/src/tools/linux/dump_syms/Makefile.in +--- mozilla-1.9.2/toolkit/crashreporter/google-breakpad/src/tools/linux/dump_syms/Makefile.in.static 2010-09-14 20:53:09.000000000 +0200 ++++ mozilla-1.9.2/toolkit/crashreporter/google-breakpad/src/tools/linux/dump_syms/Makefile.in 2010-10-13 14:21:14.000000000 +0200 +@@ -64,6 +64,6 @@ FORCE_USE_PIC = 1 + + #XXX: bug 554854 causes us to be unable to run binaries on the build slaves + # due to them having an older libstdc++ +-HOST_LDFLAGS += -static ++#HOST_LDFLAGS += -static + + include $(topsrcdir)/config/rules.mk diff --git a/mozilla-gdk-pixbuf.patch b/mozilla-gdk-pixbuf.patch new file mode 100644 index 0000000..0596b1b --- /dev/null +++ b/mozilla-gdk-pixbuf.patch @@ -0,0 +1,15 @@ +diff -up mozilla-1.9.2/configure.in.gdk-pixbuf mozilla-1.9.2/configure.in +--- mozilla-1.9.2/configure.in.gdk-pixbuf 2010-07-13 21:10:45.000000000 +0200 ++++ mozilla-1.9.2/configure.in 2010-08-03 15:38:43.113733420 +0200 +@@ -5354,7 +5354,10 @@ then + then + if test "$MOZ_ENABLE_LIBNOTIFY" + then +- PKG_CHECK_MODULES(MOZ_LIBNOTIFY, libnotify >= $LIBNOTIFY_VERSION) ++ dnl Code which requires gdk-pixbuf is only in ++ dnl toolkit/system/gnome/nsAlertsIconListener.cpp and is compiled ++ dnl only when libnotify is enabled ++ PKG_CHECK_MODULES(MOZ_LIBNOTIFY, libnotify >= $LIBNOTIFY_VERSION gdk-pixbuf-2.0 gtk+-2.0) + fi + fi + fi diff --git a/mozilla-plugin.patch b/mozilla-plugin.patch deleted file mode 100644 index 75eac7e..0000000 --- a/mozilla-plugin.patch +++ /dev/null @@ -1,10 +0,0 @@ -diff -up mozilla-1.9.2/xulrunner/installer/mozilla-plugin.pc.in.old mozilla-1.9.2/xulrunner/installer/mozilla-plugin.pc.in ---- mozilla-1.9.2/xulrunner/installer/mozilla-plugin.pc.in.old 2009-11-25 05:13:11.000000000 +0100 -+++ mozilla-1.9.2/xulrunner/installer/mozilla-plugin.pc.in 2009-12-03 10:14:41.000000000 +0100 -@@ -5,5 +5,5 @@ includedir=%includedir% - Name: Mozilla Plug-In API - Description: Mozilla Plug-In API - Version: %MOZILLA_VERSION% --Cflags: -I${includedir}/stable -DXP_UNIX %ojidef% -+Cflags: -I${includedir} -DXP_UNIX %ojidef% - diff --git a/mozilla-ps-pdf-simplify-operators.patch b/mozilla-ps-pdf-simplify-operators.patch deleted file mode 100644 index cab1341..0000000 --- a/mozilla-ps-pdf-simplify-operators.patch +++ /dev/null @@ -1,42 +0,0 @@ -https://bugzilla.mozilla.org/show_bug.cgi?id=435313 - -Index: mozilla/gfx/thebes/public/gfxPDFSurface.h -=================================================================== -RCS file: /cvsroot/mozilla/gfx/thebes/public/gfxPDFSurface.h,v -retrieving revision 1.13 -diff -d -u -p -r1.13 gfxPDFSurface.h ---- mozilla/gfx/thebes/public/gfxPDFSurface.h 19 Mar 2008 20:51:42 -0000 1.13 -+++ mozilla/gfx/thebes/public/gfxPDFSurface.h 23 May 2008 00:50:31 -0000 -@@ -63,7 +63,11 @@ public: - // this is in points! - const gfxSize& GetSize() const { return mSize; } - -- virtual PRInt32 GetDefaultContextFlags() const { return gfxContext::FLAG_DISABLE_SNAPPING; } -+ virtual PRInt32 GetDefaultContextFlags() const -+ { -+ return gfxContext::FLAG_SIMPLIFY_OPERATORS | -+ gfxContext::FLAG_DISABLE_SNAPPING; -+ } - - private: - nsCOMPtr mStream; -Index: mozilla/gfx/thebes/public/gfxPSSurface.h -=================================================================== -RCS file: /cvsroot/mozilla/gfx/thebes/public/gfxPSSurface.h,v -retrieving revision 1.13 -diff -d -u -p -r1.13 gfxPSSurface.h ---- mozilla/gfx/thebes/public/gfxPSSurface.h 19 Mar 2008 20:51:42 -0000 1.13 -+++ mozilla/gfx/thebes/public/gfxPSSurface.h 23 May 2008 00:50:31 -0000 -@@ -63,7 +63,11 @@ public: - // this is in points! - const gfxSize& GetSize() const { return mSize; } - -- virtual PRInt32 GetDefaultContextFlags() const { return gfxContext::FLAG_DISABLE_SNAPPING; } -+ virtual PRInt32 GetDefaultContextFlags() const -+ { -+ return gfxContext::FLAG_SIMPLIFY_OPERATORS | -+ gfxContext::FLAG_DISABLE_SNAPPING; -+ } - - private: - nsCOMPtr mStream; diff --git a/sources b/sources index 9322d49..0f0e0fd 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -e240541898766e44a407e543c70d4949 xulrunner-1.9.2.7.source.tar.bz2 +28e37363782c47b4718d82ce5a699c14 xulrunner-1.9.2.24.source.tar.bz2 diff --git a/xulrunner-mozconfig b/xulrunner-mozconfig index 8c42114..0330b67 100644 --- a/xulrunner-mozconfig +++ b/xulrunner-mozconfig @@ -11,8 +11,10 @@ ac_add_options --with-system-jpeg ac_add_options --with-system-zlib ac_add_options --with-system-bz2 ac_add_options --enable-system-hunspell -ac_add_options --enable-system-sqlite -ac_add_options --enable-system-cairo +# Temporary since System Sqlite library is not compiled with SQLITE_SECURE_DELETE +ac_add_options --disable-system-sqlite +# disabled because of rhbz#628331 +ac_add_options --disable-system-cairo ac_add_options --with-pthreads ac_add_options --disable-strip ac_add_options --disable-tests diff --git a/xulrunner-mozconfig-debuginfo b/xulrunner-mozconfig-debuginfo index a0ef07a..4dd2427 100644 --- a/xulrunner-mozconfig-debuginfo +++ b/xulrunner-mozconfig-debuginfo @@ -1,5 +1,5 @@ # For mozilla's debuginfo: -export CFLAGS="-gstabs+" -export CXXFLAGS="-gstabs+" +export CFLAGS="$CFLAGS -gdwarf-2" +export CXXFLAGS="$CXXFLAGS -gdwarf-2" export MOZ_DEBUG_SYMBOLS=1 ac_add_options --enable-crashreporter diff --git a/xulrunner.spec b/xulrunner.spec index 8abc8f4..d75ad9a 100644 --- a/xulrunner.spec +++ b/xulrunner.spec @@ -7,12 +7,17 @@ # Minimal required versions %define nspr_version 4.8 -%define nss_version 3.12.6 +%define nss_version 3.12.8 %define cairo_version 1.6.0 %define freetype_version 2.1.9 %define sqlite_version 3.6.16 %define tarballdir mozilla-1.9.2 -%define enable_mozilla_crashreporter 0 +# enable crash reporter only for iX86 +%ifarch %{ix86} x86_64 +%define enable_mozilla_crashreporter 1 +%else +%define enable_mozilla_crashreporter 0 +%endif # The actual sqlite version (see #480989): %global sqlite_build_version %(pkg-config --silence-errors --modversion sqlite3 2>/dev/null || echo 65536) @@ -22,7 +27,7 @@ Summary: XUL Runtime for Gecko Applications Name: xulrunner -Version: 1.9.2.7 +Version: 1.9.2.24 Release: 1%{?pretag}%{?dist} URL: http://developer.mozilla.org/En/XULRunner License: MPLv1.1 or GPLv2+ or LGPLv2+ @@ -41,16 +46,18 @@ Patch1: mozilla-build.patch Patch3: mozilla-jemalloc.patch Patch4: mozilla-about-firefox-version.patch Patch7: xulrunner-1.9.2.1-build.patch -Patch8: mozilla-plugin.patch Patch9: mozilla-build-sbrk.patch Patch10: mozilla-build-s390.patch +Patch11: mozilla-gdk-pixbuf.patch # Fedora specific patches Patch20: mozilla-192-pkgconfig.patch Patch21: mozilla-libjpeg-turbo.patch +Patch22: mozilla-crashreporter-static.patch +Patch24: crashreporter-remove-static.patch # Upstream patches -Patch100: mozilla-ps-pdf-simplify-operators.patch +Patch30: mozilla-513747.patch # --------------------------------------------------- @@ -121,6 +128,8 @@ Requires: sqlite-devel Requires: startup-notification-devel Requires: alsa-lib-devel Requires: libnotify-devel +Requires: curl-devel +BuildRequires: libcurl-devel %description devel Gecko development files. @@ -139,17 +148,17 @@ sed -e 's/__RPM_VERSION_INTERNAL__/%{version_internal}/' %{P:%%PATCH0} \ %patch3 -p1 -b .jemalloc %patch4 -p1 -b .about-firefox-version %patch7 -p2 -b .del -%patch8 -p1 -b .plugin %patch9 -p2 -b .sbrk %ifarch s390 %patch10 -p1 -b .s390 %endif +%patch11 -p1 -b .gdk-pixbuf %patch20 -p1 -b .pk %patch21 -p2 -b .jpeg-turbo +%patch22 -p1 -b .static -%patch100 -p1 -b .ps-pdf-simplify-operators - +%patch30 -p2 -b .513747 %{__rm} -f .mozconfig %{__cp} %{SOURCE10} .mozconfig @@ -161,6 +170,12 @@ sed -e 's/__RPM_VERSION_INTERNAL__/%{version_internal}/' %{P:%%PATCH0} \ echo "ac_add_options --disable-ipc" >> .mozconfig %endif +# Upstream bug filed without resolution +# for now make sure jit is not enabled on sparc64 +%ifarch sparc64 +echo "ac_add_options --disable-jit" >> .mozconfig +%endif + #--------------------------------------------------------------------- %build @@ -180,7 +195,11 @@ MOZ_APP_DIR=%{_libdir}/%{name}-${INTERNAL_GECKO} # Mozilla builds with -Wall with exception of a few warnings which show up # everywhere in the code; so, don't override that. -MOZ_OPT_FLAGS=$(echo $RPM_OPT_FLAGS | %{__sed} -e 's/-Wall//') +# +# -fpermissive is needed to build with gcc 4.6+ which has become stricter +# +MOZ_OPT_FLAGS=$(echo "$RPM_OPT_FLAGS -fpermissive" | \ + %{__sed} -e 's/-Wall//' ) export CFLAGS=$MOZ_OPT_FLAGS export CXXFLAGS=$MOZ_OPT_FLAGS @@ -362,9 +381,10 @@ touch $RPM_BUILD_ROOT${MOZ_APP_DIR}/components/xpti.dat # Add debuginfo for crash-stats.mozilla.com %if %{enable_mozilla_crashreporter} -mkdir -p $RPM_BUILD_ROOT%{_libdir}/debug%{mozappdir} -cp dist/%{name}-%{version}.en-US.linux-*.crashreporter-symbols.zip $RPM_BUILD_ROOT/%{_libdir}/debug%{mozappdir} -#cp %{moz_objdir}/mozilla/dist/firefox-%{version}.en-US.linux-i686.crashreporter-symbols.zip $RPM_BUILD_ROOT%{_libdir}/debug%{mozappdir} +# Debug symbols are stored in /usr/lib even in x86_64 arch +DEBUG_LIB_DIR=`echo %{_libdir}|sed -e "s/lib64/lib/"` +mkdir -p $RPM_BUILD_ROOT$DEBUG_LIB_DIR/debug%{mozappdir} +cp dist/%{name}-%{version}*.crashreporter-symbols.zip $RPM_BUILD_ROOT$DEBUG_LIB_DIR/debug%{mozappdir} %endif #--------------------------------------------------------------------- @@ -452,6 +472,73 @@ fi #--------------------------------------------------------------------- %changelog +* Tue Nov 8 2011 Jan Horak - 1.9.2.24-1 +- Update to 1.9.2.24 + +* Tue Sep 27 2011 Jan Horak - 1.9.2.23-1 +- Update to 1.9.2.23 + +* Tue Sep 6 2011 Jan Horak - 1.9.2.22-1 +- Update to 1.9.2.22 + +* Wed Aug 31 2011 Jan Horak - 1.9.2.20-2 +- Distrust a specific Certificate Authority + +* Tue Aug 16 2011 Jan Horak - 1.9.2.20-1 +- Update to 1.9.2.20 + +* Tue Jun 21 2011 Jan Horak - 1.9.2.18-1 +- Update to 1.9.2.18 + +* Thu Apr 28 2011 Jan Horak - 1.9.2.17-2 +- Update to 1.9.2.17 + +* Tue Mar 22 2011 Christopher Aillon - 3.6.16-1 +- Update to 1.9.2.16 + +* Mon Mar 7 2011 Jan Horak - 1.9.2.15-1 +- Update to 1.9.2.15 + +* Tue Mar 1 2011 Jan Horak - 1.9.2.14-1 +- Update to 1.9.2.14 + +* Mon Jan 10 2011 Dennis Gilmore 1.9.2.13-6 +- disable nanojit on sparc64 its not supported and doesnt get automatically switched off + +* Mon Jan 3 2011 Martin Stransky 1.9.2.13-5 +- renamed libsqlite3.so to libmozsqlite3.so (rhbz#658471) + +* Mon Jan 3 2011 Jan Horak - 1.9.2.13-4 +- Enabled mozilla crash reporter + +* Mon Jan 3 2011 Martin Stransky 1.9.2.13-3 +- reverted fix for rhbz#658471, breaks gnome shell +- disabled system cairo, breaks animated gifs (rhbz#628331) + +* Mon Dec 20 2010 Martin Stransky 1.9.2.13-2 +- removed unused library path (rhbz#658471) + +* Thu Dec 9 2010 Jan Horak - 1.9.2.13-1 +- Update to 1.9.2.13 + +* Wed Oct 27 2010 Jan Horak - 1.9.2.12-1 +- Update to 1.9.2.12 + +* Tue Oct 19 2010 Jan Horak - 1.9.2.11-1 +- Update to 1.9.2.11 + +* Tue Oct 05 2010 jkeating - 1.9.2.10-1.1 +- Rebuilt for gcc bug 634757 + +* Tue Sep 21 2010 Martin Stransky 1.9.2.10-1 +- Update to 1.9.2.10 + +* Mon Sep 6 2010 Jan Horak - 1.9.2.9-1 +- Update to 1.9.2.9 + +* Mon Aug 9 2010 Martin Stransky 1.9.2.7-2 +- added build-fix by Adam Tkac + * Tue Jul 20 2010 Jan Horak - 1.9.2.7-1 - Update to 1.9.2.7