diff options
author | Florian Smeets <flo@FreeBSD.org> | 2012-09-07 22:10:01 +0000 |
---|---|---|
committer | Florian Smeets <flo@FreeBSD.org> | 2012-09-07 22:10:01 +0000 |
commit | 9e2d4844cf86e9e0c1fee084c644a471b97d4d89 (patch) | |
tree | 260671c3ea7a2a410e3f9cc7f050e3a71604a633 /mail/thunderbird/files/patch-bug753046 | |
parent | Add a sanity check to ensure vuxml is actually installed prior to performing (diff) |
- Update firefox to 15.0.1
- Sync changes from gecko repository@r995
general
- don't specify prefix for libevent when using pkg-config
- ia64 and sparc64 use 8k pagesize by default
- add visibility hack for clang 3.2 with libc++
- fix build using clang 3.2 (on FreeBSD 10-CURRENT)
- rename a few more patches to ease tracking of bugzilla bugs
www/seamonkey
- unbreak unsetting LDAP and MAILNEWS options after bug 707305
- use compile time debugging WITH_DEBUG
security/nss
- unbreak install WITH_DEBUG
- unbreak powerpc64
devel/nspr
- use absolute paths when specifiying srcdir to make gdb(1) happy
In collaboration with: andreast, zeising, Jan Beich <jbeich@tormail.org>
Diffstat (limited to 'mail/thunderbird/files/patch-bug753046')
-rw-r--r-- | mail/thunderbird/files/patch-bug753046 | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mail/thunderbird/files/patch-bug753046 b/mail/thunderbird/files/patch-bug753046 index 8d1ccbf2b748..d20eebb42a3c 100644 --- a/mail/thunderbird/files/patch-bug753046 +++ b/mail/thunderbird/files/patch-bug753046 @@ -264,7 +264,7 @@ new file mode 100644 index 0000000..3fc1a87 --- /dev/null +++ mozilla/ipc/chromium/src/base/dir_reader_bsd.h -@@ -0,0 +1,108 @@ +@@ -0,0 +1,112 @@ +// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. @@ -316,7 +316,11 @@ index 0000000..3fc1a87 + bool Next() { + if (size_) { + struct dirent* dirent = reinterpret_cast<struct dirent*>(&buf_[offset_]); ++#ifdef OS_DRAGONFLY ++ offset_ += _DIRENT_DIRSIZ(dirent); ++#else + offset_ += dirent->d_reclen; ++#endif + } + + if (offset_ != size_) |