* ibus-mozc depends on mozc-server and mozc-tool. * Add CFLAGS+=-std=c++0x in gyp/common.gypi. Changelog: r163 2013-07-17 1.11.1502.102 Fixes cursor movement issue on Emacs 24 ( Issue 168 ) Support numpad keys in mozc.el ( Issue 170 ) Fix build failure on Windows ( Issue 185 , Issue 191) Support GCC 4.8.0 ( Issue 186 ) Fix build failure when use_libprotobuf=1 is specified ( Issue 189 ) Support Emacs 24 in mozc.el ( Issue 190 ) Development of ibus-mozc is now in maintenance mode (Issue 194) Intorduce Mode Indicator for Windows Support per-user input mode for Windows 8 (TSF-mozc) Support InputScope for Windows 8 (TSF-mozc) Support surrounding text on Windows, Mac, LInux and NaCl Enable a developer to configure document directory and/or Zinnia model file path at build time for GNU/Linux build. See the build instruction about how to customize them. Dictionary update
13 lines
588 B
C++
13 lines
588 B
C++
$NetBSD: patch-ipc_ipc__path__manager__test.cc,v 1.2 2013/07/20 04:34:53 ryoon Exp $
|
|
|
|
--- ipc/ipc_path_manager_test.cc.orig 2013-07-17 02:37:50.000000000 +0000
|
|
+++ ipc/ipc_path_manager_test.cc
|
|
@@ -103,7 +103,7 @@ TEST_F(IPCPathManagerTest, IPCPathManage
|
|
EXPECT_FALSE(manager->GetServerProductVersion().empty());
|
|
EXPECT_GT(manager->GetServerProcessId(), 0);
|
|
EXPECT_EQ(t.path(), path);
|
|
-#ifdef OS_LINUX
|
|
+#if defined(OS_LINUX) || defined(OS_NETBSD)
|
|
// On Linux, |path| should be abstract (see man unix(7) for details.)
|
|
ASSERT_FALSE(path.empty());
|
|
EXPECT_EQ('\0', path[0]);
|