Import of pkgsrc-2015Q1

This commit is contained in:
2015-04-22 14:34:26 +02:00
committed by Lionel Sambuc
parent 9a8c06dafb
commit 4af1cdf7a9
25114 changed files with 870550 additions and 795435 deletions

View File

@@ -0,0 +1,25 @@
$NetBSD: patch-mail_components_shell_nsMailGNOMEIntegration.cpp,v 1.1 2014/08/10 12:52:08 abs Exp $
Avoid warning storing a size_t in an unsigned int on LP64
--- mail/components/shell/nsMailGNOMEIntegration.cpp.orig 2014-07-18 00:04:06.000000000 +0000
+++ mail/components/shell/nsMailGNOMEIntegration.cpp
@@ -50,15 +50,15 @@ struct AppTypeAssociation {
static const AppTypeAssociation sAppTypes[] = {
{
- nsIShellService::MAIL, sMailProtocols, ArrayLength(sMailProtocols),
+ nsIShellService::MAIL, sMailProtocols, (unsigned int)ArrayLength(sMailProtocols),
"message/rfc822", "eml"
},
{
- nsIShellService::NEWS, sNewsProtocols, ArrayLength(sNewsProtocols),
+ nsIShellService::NEWS, sNewsProtocols, (unsigned int)ArrayLength(sNewsProtocols),
nullptr, nullptr
},
{
- nsIShellService::RSS, sFeedProtocols, ArrayLength(sFeedProtocols),
+ nsIShellService::RSS, sFeedProtocols, (unsigned int)ArrayLength(sFeedProtocols),
"application/rss+xml", "rss"
}
};