diff options
author | joerg <joerg@pkgsrc.org> | 2013-05-09 13:59:47 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2013-05-09 13:59:47 +0000 |
commit | 6e5aec910519aad904ccdc7bd14b4c9f8f9a8b0a (patch) | |
tree | 5432044864f9308ad4558daeebe59b7b6eefaff5 /mail/thunderbird10 | |
parent | 1091447e99361c665d3c107f67ace2f8573379c3 (diff) | |
download | pkgsrc-6e5aec910519aad904ccdc7bd14b4c9f8f9a8b0a.tar.gz |
Fix missing includes.
Diffstat (limited to 'mail/thunderbird10')
3 files changed, 36 insertions, 0 deletions
diff --git a/mail/thunderbird10/patches/patch-mozilla_ipc_chromium_src_base_message__pump__libevent.cc b/mail/thunderbird10/patches/patch-mozilla_ipc_chromium_src_base_message__pump__libevent.cc new file mode 100644 index 00000000000..9902fcad776 --- /dev/null +++ b/mail/thunderbird10/patches/patch-mozilla_ipc_chromium_src_base_message__pump__libevent.cc @@ -0,0 +1,12 @@ +$NetBSD: patch-mozilla_ipc_chromium_src_base_message__pump__libevent.cc,v 1.1 2013/05/09 13:59:47 joerg Exp $ + +--- mozilla/ipc/chromium/src/base/message_pump_libevent.cc.orig 2013-01-05 14:22:10.000000000 +0000 ++++ mozilla/ipc/chromium/src/base/message_pump_libevent.cc +@@ -6,6 +6,7 @@ + + #include <errno.h> + #include <fcntl.h> ++#include <unistd.h> + + #include "eintr_wrapper.h" + #include "base/logging.h" diff --git a/mail/thunderbird10/patches/patch-mozilla_ipc_chromium_src_base_time__posix.cc b/mail/thunderbird10/patches/patch-mozilla_ipc_chromium_src_base_time__posix.cc new file mode 100644 index 00000000000..e4af205ed66 --- /dev/null +++ b/mail/thunderbird10/patches/patch-mozilla_ipc_chromium_src_base_time__posix.cc @@ -0,0 +1,12 @@ +$NetBSD: patch-mozilla_ipc_chromium_src_base_time__posix.cc,v 1.1 2013/05/09 13:59:47 joerg Exp $ + +--- mozilla/ipc/chromium/src/base/time_posix.cc.orig 2013-01-05 14:22:10.000000000 +0000 ++++ mozilla/ipc/chromium/src/base/time_posix.cc +@@ -13,6 +13,7 @@ + #else + #include <time.h> + #endif ++#include <unistd.h> + + #include <limits> + diff --git a/mail/thunderbird10/patches/patch-mozilla_ipc_chromium_src_chrome_common_ipc__channel__posix.cc b/mail/thunderbird10/patches/patch-mozilla_ipc_chromium_src_chrome_common_ipc__channel__posix.cc new file mode 100644 index 00000000000..441f681fc49 --- /dev/null +++ b/mail/thunderbird10/patches/patch-mozilla_ipc_chromium_src_chrome_common_ipc__channel__posix.cc @@ -0,0 +1,12 @@ +$NetBSD: patch-mozilla_ipc_chromium_src_chrome_common_ipc__channel__posix.cc,v 1.1 2013/05/09 13:59:47 joerg Exp $ + +--- mozilla/ipc/chromium/src/chrome/common/ipc_channel_posix.cc.orig 2013-01-05 14:22:10.000000000 +0000 ++++ mozilla/ipc/chromium/src/chrome/common/ipc_channel_posix.cc +@@ -12,6 +12,7 @@ + #include <sys/stat.h> + #include <sys/un.h> + #include <sys/uio.h> ++#include <unistd.h> + + #include <string> + #include <map> |