rpms/thunderbird/devel thunderbird-clipboard-crash.patch, NONE, 1.1 thunderbird-debuginfo-fix-include.patch, NONE, 1.1 thunderbird-mozconfig-debuginfo, NONE, 1.1 .cvsignore, 1.28, 1.29 sources, 1.35, 1.36 thunderbird-mozconfig, 1.16, 1.17 thunderbird-redhat-default-prefs.js, 1.5, 1.6 thunderbird.spec, 1.152, 1.153

Jan Horak xhorak at fedoraproject.org
Wed Nov 25 10:56:33 UTC 2009


Author: xhorak

Update of /cvs/pkgs/rpms/thunderbird/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15709

Modified Files:
	.cvsignore sources thunderbird-mozconfig 
	thunderbird-redhat-default-prefs.js thunderbird.spec 
Added Files:
	thunderbird-clipboard-crash.patch 
	thunderbird-debuginfo-fix-include.patch 
	thunderbird-mozconfig-debuginfo 
Log Message:
Sync with Mozilla latest RC1 build

thunderbird-clipboard-crash.patch:
 nsClipboard.cpp   |    4 ++--
 nsDragService.cpp |   21 +++++++++------------
 2 files changed, 11 insertions(+), 14 deletions(-)

--- NEW FILE thunderbird-clipboard-crash.patch ---
diff -r 7f1f309a34f8 widget/src/gtk2/nsClipboard.cpp
--- a/mozilla/widget/src/gtk2/nsClipboard.cpp	Thu Oct 22 12:45:52 2009 +0800
+++ b/mozilla/widget/src/gtk2/nsClipboard.cpp	Fri Nov 13 11:19:27 2009 +0100
@@ -424,25 +424,25 @@ nsClipboard::HasDataMatchingFlavors(cons
     for (PRUint32 i = 0; i < aLength && !*_retval; i++) {
         // We special case text/unicode here.
         if (!strcmp(aFlavorList[i], kUnicodeMime) && 
             gtk_selection_data_targets_include_text(selection_data)) {
             *_retval = PR_TRUE;
             break;
         }
 
         for (PRInt32 j = 0; j < n_targets; j++) {
             gchar *atom_name = gdk_atom_name(targets[j]);
-            if (!strcmp(atom_name, aFlavorList[i]))
+            if (!g_strcmp0(atom_name, aFlavorList[i]))
                 *_retval = PR_TRUE;
 
             // X clipboard wants image/jpeg, not image/jpg
-            if (!strcmp(aFlavorList[i], kJPEGImageMime) && !strcmp(atom_name, "image/jpeg"))
+            if (!g_strcmp0(aFlavorList[i], kJPEGImageMime) && !g_strcmp0(atom_name, "image/jpeg"))
                 *_retval = PR_TRUE;
 
             g_free(atom_name);
 
             if (*_retval)
                 break;
         }
     }
     gtk_selection_data_free(selection_data);
     g_free(targets);
diff -r 7f1f309a34f8 widget/src/gtk2/nsDragService.cpp
--- a/mozilla/widget/src/gtk2/nsDragService.cpp	Thu Oct 22 12:45:52 2009 +0800
+++ b/mozilla/widget/src/gtk2/nsDragService.cpp	Fri Nov 13 11:19:27 2009 +0100
@@ -824,50 +824,47 @@ nsDragService::IsDataFlavorSupported(con
 
     // check the target context vs. this flavor, one at a time
     GList *tmp;
     for (tmp = mTargetDragContext->targets; tmp; tmp = tmp->next) {
         /* Bug 331198 */
         GdkAtom atom = GDK_POINTER_TO_ATOM(tmp->data);
         gchar *name = NULL;
         name = gdk_atom_name(atom);
         PR_LOG(sDragLm, PR_LOG_DEBUG,
                ("checking %s against %s\n", name, aDataFlavor));
-        if (name && (strcmp(name, aDataFlavor) == 0)) {
+        if (g_strcmp0(name, aDataFlavor) == 0) {
             PR_LOG(sDragLm, PR_LOG_DEBUG, ("good!\n"));
             *_retval = PR_TRUE;
         }
         // check for automatic text/uri-list -> text/x-moz-url mapping
         if (*_retval == PR_FALSE && 
-            name &&
-            (strcmp(name, gTextUriListType) == 0) &&
-            (strcmp(aDataFlavor, kURLMime) == 0)) {
+            (g_strcmp0(name, gTextUriListType) == 0) &&
+            (g_strcmp0(aDataFlavor, kURLMime) == 0)) {
             PR_LOG(sDragLm, PR_LOG_DEBUG,
                    ("good! ( it's text/uri-list and \
                    we're checking against text/x-moz-url )\n"));
             *_retval = PR_TRUE;
         }
         // check for automatic _NETSCAPE_URL -> text/x-moz-url mapping
         if (*_retval == PR_FALSE && 
-            name &&
-            (strcmp(name, gMozUrlType) == 0) &&
-            (strcmp(aDataFlavor, kURLMime) == 0)) {
+            (g_strcmp0(name, gMozUrlType) == 0) &&
+            (g_strcmp0(aDataFlavor, kURLMime) == 0)) {
             PR_LOG(sDragLm, PR_LOG_DEBUG,
                    ("good! ( it's _NETSCAPE_URL and \
                    we're checking against text/x-moz-url )\n"));
             *_retval = PR_TRUE;
         }
         // check for auto text/plain -> text/unicode mapping
         if (*_retval == PR_FALSE && 
-            name &&
-            (strcmp(name, kTextMime) == 0) &&
-            ((strcmp(aDataFlavor, kUnicodeMime) == 0) ||
-             (strcmp(aDataFlavor, kFileMime) == 0))) {
+            (g_strcmp0(name, kTextMime) == 0) &&
+            ((g_strcmp0(aDataFlavor, kUnicodeMime) == 0) ||
+             (g_strcmp0(aDataFlavor, kFileMime) == 0))) {
             PR_LOG(sDragLm, PR_LOG_DEBUG,
                    ("good! ( it's text plain and we're checking \
                    against text/unicode or application/x-moz-file)\n"));
             *_retval = PR_TRUE;
         }
         g_free(name);
     }
     return NS_OK;
 }
 
@@ -974,21 +971,21 @@ nsDragService::IsTargetContextList(void)
 
     GList *tmp;
 
     // walk the list of context targets and see if one of them is a list
     // of items.
     for (tmp = mTargetDragContext->targets; tmp; tmp = tmp->next) {
         /* Bug 331198 */
         GdkAtom atom = GDK_POINTER_TO_ATOM(tmp->data);
         gchar *name = NULL;
         name = gdk_atom_name(atom);
-        if (strcmp(name, gMimeListType) == 0)
+        if (g_strcmp0(name, gMimeListType) == 0)
             retval = PR_TRUE;
         g_free(name);
         if (retval)
             break;
     }
     return retval;
 }
 
 // Maximum time to wait for a "drag_received" arrived, in microseconds
 #define NS_DND_TIMEOUT 500000

thunderbird-debuginfo-fix-include.patch:
 client/linux/handler/exception_handler.cc  |    1 +
 client/linux/handler/minidump_generator.cc |    1 +
 common/linux/dump_symbols.cc               |    1 +
 3 files changed, 3 insertions(+)

--- NEW FILE thunderbird-debuginfo-fix-include.patch ---
diff -up comm-central/mozilla/toolkit/crashreporter/google-breakpad/src/client/linux/handler/exception_handler.cc.include comm-central/mozilla/toolkit/crashreporter/google-breakpad/src/client/linux/handler/exception_handler.cc
--- comm-central/mozilla/toolkit/crashreporter/google-breakpad/src/client/linux/handler/exception_handler.cc.include	2009-09-16 02:57:07.000000000 +0200
+++ comm-central/mozilla/toolkit/crashreporter/google-breakpad/src/client/linux/handler/exception_handler.cc	2009-10-12 09:47:59.000000000 +0200
@@ -33,6 +33,7 @@
 #include <sys/stat.h>
 #include <sys/types.h>
 #include <unistd.h>
+#include <stdio.h>
 
 #include <cassert>
 #include <cstdlib>
diff -up comm-central/mozilla/toolkit/crashreporter/google-breakpad/src/client/linux/handler/minidump_generator.cc.include comm-central/mozilla/toolkit/crashreporter/google-breakpad/src/client/linux/handler/minidump_generator.cc
--- comm-central/mozilla/toolkit/crashreporter/google-breakpad/src/client/linux/handler/minidump_generator.cc.include	2009-09-16 02:57:07.000000000 +0200
+++ comm-central/mozilla/toolkit/crashreporter/google-breakpad/src/client/linux/handler/minidump_generator.cc	2009-10-12 09:47:59.000000000 +0200
@@ -37,6 +37,7 @@
 #include <unistd.h>
 #include <sys/utsname.h>
 #include <sys/wait.h>
+#include <stdio.h>
 
 #include <cstdlib>
 #include <ctime>
diff -up comm-central/mozilla/toolkit/crashreporter/google-breakpad/src/common/linux/dump_symbols.cc.include comm-central/mozilla/toolkit/crashreporter/google-breakpad/src/common/linux/dump_symbols.cc
--- comm-central/mozilla/toolkit/crashreporter/google-breakpad/src/common/linux/dump_symbols.cc.include	2009-09-16 02:57:07.000000000 +0200
+++ comm-central/mozilla/toolkit/crashreporter/google-breakpad/src/common/linux/dump_symbols.cc	2009-10-12 10:09:56.000000000 +0200
@@ -41,6 +41,7 @@
 #include <sys/types.h>
 #include <unistd.h>
 #include <algorithm>
+#include <stdio.h>
 
 #include <functional>
 #include <list>


--- NEW FILE thunderbird-mozconfig-debuginfo ---
# For mozilla's debuginfo:
export CFLAGS="-gstabs+"
export CXXFLAGS="-gstabs+"
export MOZ_DEBUG_SYMBOLS=1
ac_add_options --enable-crashreporter


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/thunderbird/devel/.cvsignore,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -p -r1.28 -r1.29
--- .cvsignore	19 Nov 2009 13:59:49 -0000	1.28
+++ .cvsignore	25 Nov 2009 10:56:33 -0000	1.29
@@ -5,3 +5,4 @@ thunderbird-3.0b4-source.tar.bz2
 thunderbird-langpacks-3.0b4-20090917.tar.bz2
 thunderbird-3.0rc1.source.tar.bz2
 thunderbird-langpacks-3.0rc1-20091118.tar.bz2
+thunderbird-langpacks-3.0rc1-20091125.tar.bz2


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/thunderbird/devel/sources,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -p -r1.35 -r1.36
--- sources	19 Nov 2009 13:59:49 -0000	1.35
+++ sources	25 Nov 2009 10:56:33 -0000	1.36
@@ -1,2 +1,2 @@
-f9da82698c8171a4cf68bdd234065844  thunderbird-3.0rc1.source.tar.bz2
-70d5100c83a6b188bc6bbc5284682aed  thunderbird-langpacks-3.0rc1-20091118.tar.bz2
+49028d9de4c4e167d469bbd4c6665b8c  thunderbird-3.0rc1.source.tar.bz2
+a25c36e9320f3a16a10e3141ceed841d  thunderbird-langpacks-3.0rc1-20091125.tar.bz2


Index: thunderbird-mozconfig
===================================================================
RCS file: /cvs/pkgs/rpms/thunderbird/devel/thunderbird-mozconfig,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -p -r1.16 -r1.17
--- thunderbird-mozconfig	19 Nov 2009 13:59:49 -0000	1.16
+++ thunderbird-mozconfig	25 Nov 2009 10:56:33 -0000	1.17
@@ -1,5 +1,3 @@
-#export CFLAGS=-gstabs+
-#export CXXFLAGS=-gstabs+
 mk_add_options MOZ_CO_PROJECT=mail
 ac_add_options --enable-application=mail
 mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/objdir-tb/
@@ -29,9 +27,6 @@ ac_add_options --enable-svg
 ac_add_options --enable-canvas
 ac_add_options --enable-system-hunspell
 ac_add_options --disable-crashreporter
-#ac_add_options --disable-static
-#ac_add_options --disable-static-mail
-#ac_add_options --enable-libxul
 
 export BUILD_OFFICIAL=1
 export MOZILLA_OFFICIAL=1


Index: thunderbird-redhat-default-prefs.js
===================================================================
RCS file: /cvs/pkgs/rpms/thunderbird/devel/thunderbird-redhat-default-prefs.js,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -p -r1.5 -r1.6
--- thunderbird-redhat-default-prefs.js	6 Aug 2009 08:43:56 -0000	1.5
+++ thunderbird-redhat-default-prefs.js	25 Nov 2009 10:56:33 -0000	1.6
@@ -1,6 +1,7 @@
 pref("app.update.enabled", false);
 pref("app.update.autoInstallEnabled", false);
-pref("browser.display.use_system_colors",   true);
+# Allow users to set custom colors
+# pref("browser.display.use_system_colors",   true);
 pref("general.useragent.vendor", "Fedora");
 pref("general.useragent.vendorSub", "THUNDERBIRD_RPM_VR");
 pref("intl.locale.matchOS", true);
@@ -11,3 +12,9 @@ pref("toolkit.networkmanager.disable", f
 pref("network.protocol-handler.app.http", "COMMAND");
 pref("network.protocol-handler.app.https", "COMMAND");
 pref("network.protocol-handler.app.ftp", "COMMAND");
+
+# Disable global indexing by default
+pref("mailnews.database.global.indexer.enabled", false);
+
+# Do not switch to Smart Folders after upgrade to 3.0b4
+pref("mail.folder.views.version", "1")


Index: thunderbird.spec
===================================================================
RCS file: /cvs/pkgs/rpms/thunderbird/devel/thunderbird.spec,v
retrieving revision 1.152
retrieving revision 1.153
diff -u -p -r1.152 -r1.153
--- thunderbird.spec	19 Nov 2009 13:59:49 -0000	1.152
+++ thunderbird.spec	25 Nov 2009 10:56:33 -0000	1.153
@@ -17,6 +17,7 @@
 
 %define mozappdir %{_libdir}/thunderbird-%{version}
 %define official_branding 1
+%define include_debuginfo 0
 
 Summary:        Mozilla Thunderbird mail/newsgroup client
 Name:           thunderbird
@@ -37,15 +38,16 @@ Source1:        thunderbird-langpacks-%{
 Source10:       thunderbird-mozconfig
 Source11:       thunderbird-mozconfig-branded
 Source12:       thunderbird-redhat-default-prefs.js
+Source13:       thunderbird-mozconfig-debuginfo
 Source20:       thunderbird.desktop
 Source21:       thunderbird.sh.in
-Source22:       thunderbird.png
 Source30:       thunderbird-open-browser.sh
 Source100:      find-external-requires
 
 Patch1:         mozilla-jemalloc.patch
 Patch2:         thunderbird-shared-error.patch
-#Patch3:         fix-include.patch
+Patch3:         thunderbird-debuginfo-fix-include.patch
+Patch4:         thunderbird-clipboard-crash.patch
 
 %if %{official_branding}
 # Required by Mozilla Corporation
@@ -96,37 +98,37 @@ AutoProv: 0
 %description
 Mozilla Thunderbird is a standalone mail and newsgroup client.
 
-%package devel
-Summary: Development files for Thunderbird
-Group: Development/Libraries
-Provides: thunderbird-devel = %{version}
-
-Requires: thunderbird = %{version}-%{release}
-Requires: nspr-devel >= %{nspr_version}
-Requires: nss-devel >= %{nss_version}
-Requires: cairo-devel >= %{cairo_version}
-Requires: libjpeg-devel
-Requires: bzip2-devel
-Requires: zlib-devel
-Requires: libIDL-devel
-Requires: gtk2-devel
-Requires: gnome-vfs2-devel
-Requires: libgnome-devel
-Requires: libgnomeui-devel
-Requires: krb5-devel
-Requires: pango-devel
-Requires: freetype-devel >= %{freetype_version}
-Requires: libXt-devel
-Requires: libXrender-devel
-Requires: hunspell-devel
-#TEMP Requires: sqlite-devel
-Requires: startup-notification-devel
-Requires: alsa-lib-devel
+#%package devel
+#Summary: Development files for Thunderbird
+#Group: Development/Libraries
+#Provides: thunderbird-devel = %{version}
+#
+#Requires: thunderbird = %{version}-%{release}
+#Requires: nspr-devel >= %{nspr_version}
+#Requires: nss-devel >= %{nss_version}
+#Requires: cairo-devel >= %{cairo_version}
+#Requires: libjpeg-devel
+#Requires: bzip2-devel
+#Requires: zlib-devel
+#Requires: libIDL-devel
+#Requires: gtk2-devel
+#Requires: gnome-vfs2-devel
+#Requires: libgnome-devel
+#Requires: libgnomeui-devel
+#Requires: krb5-devel
+#Requires: pango-devel
+#Requires: freetype-devel >= %{freetype_version}
+#Requires: libXt-devel
+#Requires: libXrender-devel
+#Requires: hunspell-devel
+#Requires: sqlite-devel
+#Requires: startup-notification-devel
+#Requires: alsa-lib-devel
 #Requires: libnotify-devel
 
-%description devel
-Thunderbird development files.
-
+#%description devel
+#Thunderbird development files.
+#
 #===============================================================================
 
 %prep
@@ -135,7 +137,12 @@ cd %{tarballdir}
 
 %patch1 -p0 -b .jemalloc
 %patch2 -p1 -b .shared-error
-#%patch3 -p1 -b .fix-include
+
+%if %{include_debuginfo}
+%patch3 -p1 -b .fix-include
+%endif
+
+%patch4 -p1 -b .clipboard-crash
 
 %if %{official_branding}
 # Required by Mozilla Corporation
@@ -153,6 +160,9 @@ cd %{tarballdir}
 %if %{official_branding}
 %{__cat} %{SOURCE11} >> .mozconfig
 %endif
+%if %{include_debuginfo}
+%{__cat} %{SOURCE13} >> .mozconfig
+%endif
 
 #===============================================================================
 
@@ -179,8 +189,10 @@ export MAKE="gmake %{moz_make_flags}"
 make -f client.mk build
 
 # create debuginfo for crash-stats.mozilla.com
-#cd %{moz_objdir}
-#make buildsymbols
+%if %{include_debuginfo}
+cd %{moz_objdir}
+make buildsymbols
+%endif
 
 #===============================================================================
 
@@ -191,10 +203,29 @@ cd %{tarballdir}
 cd %{moz_objdir}
 DESTDIR=$RPM_BUILD_ROOT make install
 
+# install icons
 cd -
-%{__mkdir_p} $RPM_BUILD_ROOT{%{_libdir},%{_bindir},%{_datadir}/applications,%{_datadir}/icons/hicolor/48x48/apps}
+%{__cp} other-licenses/branding/%{name}/mailicon16.png \
+        $RPM_BUILD_ROOT/%{mozappdir}/icons/
+%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/16x16/apps
+%{__cp} other-licenses/branding/%{name}/mailicon16.png \
+        $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/16x16/apps/thunderbird.png
+%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/22x22/apps
+%{__cp} other-licenses/branding/%{name}/mailicon22.png \
+        $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/22x22/apps/thunderbird.png
+%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/24x24/apps
+%{__cp} other-licenses/branding/%{name}/mailicon24.png \
+        $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/24x24/apps/thunderbird.png
+%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps
+%{__cp} other-licenses/branding/%{name}/mailicon32.png \
+        $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps/thunderbird.png
+%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps
+%{__cp} other-licenses/branding/%{name}/mailicon48.png \
+        $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/thunderbird.png
+%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/256x256/apps
+%{__cp} other-licenses/branding/%{name}/mailicon256.png \
+        $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/256x256/apps/thunderbird.png
 
-%{__install} -p -D %{SOURCE22} $RPM_BUILD_ROOT%{_datadir}/pixmaps/%{name}.png
 
 desktop-file-install --vendor mozilla \
   --dir $RPM_BUILD_ROOT%{_datadir}/applications \
@@ -284,9 +315,11 @@ touch $RPM_BUILD_ROOT%{mozappdir}/compon
 
 
 # Add debuginfo for crash-stats.mozilla.com 
-#cp mozilla/dist/thunderbird-%{version_internal}.en-US.linux-%{_target_cpu}-crashreporter-symbols.zip $RPM_BUILD_ROOT/%{_libdir}/debug%{mozappdir} TODO arch
-#%{__mkdir_p} $RPM_BUILD_ROOT%{_libdir}/debug%{mozappdir}
-#%{__cp} %{moz_objdir}/mozilla/dist/thunderbird-%{version_internal}.en-US.linux-*.crashreporter-symbols.zip $RPM_BUILD_ROOT%{_libdir}/debug%{mozappdir}
+%if %{include_debuginfo}
+cp mozilla/dist/thunderbird-%{version_internal}.en-US.linux-%{_target_cpu}-crashreporter-symbols.zip $RPM_BUILD_ROOT/%{_libdir}/debug%{mozappdir}
+mkdir -p $RPM_BUILD_ROOT%{_libdir}/debug%{mozappdir}
+cp %{moz_objdir}/mozilla/dist/thunderbird-%{version_internal}.en-US.linux-i686.crashreporter-symbols.zip $RPM_BUILD_ROOT%{_libdir}/debug%{mozappdir}
+%endif
 
 %clean
 %{__rm} -rf $RPM_BUILD_ROOT
@@ -309,7 +342,6 @@ fi
 %defattr(-,root,root,-)
 %attr(755,root,root) %{_bindir}/thunderbird
 %attr(644,root,root) %{_datadir}/applications/mozilla-thunderbird.desktop
-%attr(644,root,root) %{_datadir}/pixmaps/thunderbird.png
 %dir %{mozappdir}
 %doc %{mozappdir}/LICENSE
 %{mozappdir}/chrome
@@ -334,9 +366,6 @@ fi
 %{mozappdir}/thunderbird
 %{mozappdir}/updater
 %{mozappdir}/*.so
-#%{mozappdir}/crashreporter
-#%{mozappdir}/crashreporter.ini
-#%{mozappdir}/Throbber-small.gif
 %dir %{mozappdir}/modules
 %{mozappdir}/modules/*.jsm
 %{mozappdir}/modules/*.js
@@ -348,11 +377,20 @@ fi
 %{mozappdir}/platform.ini
 %{mozappdir}/updater.ini
 %{mozappdir}/application.ini
-#%exclude %{mozappdir}/LICENSE.txt
-#%exclude %{mozappdir}/license.html
 %exclude %{mozappdir}/dependentlibs.list
 %exclude %{mozappdir}/removed-files
 %{mozappdir}/update.locale
+%{_datadir}/icons/hicolor/16x16/apps/thunderbird.png
+%{_datadir}/icons/hicolor/22x22/apps/thunderbird.png
+%{_datadir}/icons/hicolor/24x24/apps/thunderbird.png
+%{_datadir}/icons/hicolor/256x256/apps/thunderbird.png
+%{_datadir}/icons/hicolor/32x32/apps/thunderbird.png
+%{_datadir}/icons/hicolor/48x48/apps/thunderbird.png
+%if %{include_debuginfo}
+%{mozappdir}/crashreporter
+%{mozappdir}/crashreporter.ini
+%{mozappdir}/Throbber-small.gif
+%endif
 
 # TODO: devel package
 #%files devel 
@@ -366,7 +404,10 @@ fi
 #===============================================================================
 
 %changelog
-* Thu Nov 19 2009 Jan Horak <jhorak at redhat.com> - 3.0-3.10.rc1
+* Wed Nov 25 2009 Jan Horak <jhorak at redhat.com> - 3.0-3.12.rc1
+- Sync with Mozilla latest RC1 build
+
+* Thu Nov 19 2009 Jan Horak <jhorak at redhat.com> - 3.0-3.11.rc1
 - Update to RC1
 
 * Thu Sep 17 2009 Christopher Aillon <caillon at redhat.com> - 3.0-3.9.b4




More information about the fedora-extras-commits mailing list