summaryrefslogtreecommitdiff
path: root/inputmethod/mozc-server/patches/patch-ipc_unix__ipc.cc
diff options
context:
space:
mode:
Diffstat (limited to 'inputmethod/mozc-server/patches/patch-ipc_unix__ipc.cc')
-rw-r--r--inputmethod/mozc-server/patches/patch-ipc_unix__ipc.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/inputmethod/mozc-server/patches/patch-ipc_unix__ipc.cc b/inputmethod/mozc-server/patches/patch-ipc_unix__ipc.cc
index de8aa1d1851..d161cd39de5 100644
--- a/inputmethod/mozc-server/patches/patch-ipc_unix__ipc.cc
+++ b/inputmethod/mozc-server/patches/patch-ipc_unix__ipc.cc
@@ -1,13 +1,13 @@
-$NetBSD: patch-ipc_unix__ipc.cc,v 1.3 2013/09/07 18:42:14 ryoon Exp $
+$NetBSD: patch-ipc_unix__ipc.cc,v 1.4 2016/05/16 11:51:49 ryoon Exp $
---- ipc/unix_ipc.cc.orig 2013-08-28 05:25:59.000000000 +0000
+--- ipc/unix_ipc.cc.orig 2016-05-15 08:11:11.000000000 +0000
+++ ipc/unix_ipc.cc
@@ -28,7 +28,7 @@
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- // skip all if non-Linux or Android.
--#if defined(OS_LINUX) && !defined(OS_ANDROID)
-+#if (defined(OS_LINUX) && !defined(OS_ANDROID)) || defined(OS_NETBSD)
+ // OS_LINUX only. Note that OS_ANDROID/OS_NACL don't reach here.
+-#if defined(OS_LINUX)
++#if defined(OS_LINUX) || defined(OS_NETBSD)
#include "ipc/ipc.h"