diff options
author | Florian Smeets <flo@FreeBSD.org> | 2013-01-10 22:29:23 +0000 |
---|---|---|
committer | Florian Smeets <flo@FreeBSD.org> | 2013-01-10 22:29:23 +0000 |
commit | e676e2910f592704af67424758ebd4cfdff9ebcd (patch) | |
tree | dd14b47bf2d53036668a1976cb68d74952705242 /www/seamonkey/files/patch-bug798354 | |
parent | - bump PORTREVISION since shlib version of gflags was changed (diff) |
- update www/firefox to 18.0
- update www/firefox-esr to 17.0.2
- update www/seamonkey to 2.15 (enigmail to 1.5.0)
- remove QT4 option to avoid confusion (it turned out to be too experimental)
In collaboration with: Jan Beich <jbeich@tormail.org>
Security: http://www.vuxml.org/freebsd/a4ed6632-5aa9-11e2-8fcb-c8600054b392.html
Diffstat (limited to 'www/seamonkey/files/patch-bug798354')
-rw-r--r-- | www/seamonkey/files/patch-bug798354 | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/www/seamonkey/files/patch-bug798354 b/www/seamonkey/files/patch-bug798354 new file mode 100644 index 000000000000..26ce712479ff --- /dev/null +++ b/www/seamonkey/files/patch-bug798354 @@ -0,0 +1,15 @@ +--- mozilla/ipc/chromium/src/chrome/common/ipc_channel_posix.cc~ ++++ mozilla/ipc/chromium/src/chrome/common/ipc_channel_posix.cc +@@ -133,7 +133,12 @@ int ChannelNameToClientFD(const std::string& channel_id) { + } + + //------------------------------------------------------------------------------ ++#if !defined(__clang__) && defined(__GNUC__) && __GNUC_MINOR__ <= 2 ++sockaddr_un sizecheck; ++const size_t kMaxPipeNameLength = sizeof(sizecheck.sun_path); ++#else + const size_t kMaxPipeNameLength = sizeof(sockaddr_un::sun_path); ++#endif + + // Creates a Fifo with the specified name ready to listen on. + bool CreateServerFifo(const std::string& pipe_name, int* server_listen_fd) { |