[Anthy-dev 2588] Re: anthy-7100

Back to archive index

Koga Youichirou y-kog****@cq*****
2005年 11月 1日 (火) 20:53:54 JST


Etsushi Kato <ek.ka****@gmail*****>:
> 7029 を試さなかったので気付きませんでしたが、どちらのものも
> Mac OS X 10.3.9 でコンパイルできなくなっていました。

もちろん FreeBSD 4.x でも通りません。

> src-diclib/file_dic.c の、#include <netinet/in.h> によって
> parse error になります。インクルードする順序の問題だと
> 思いますが、network 関係は使われていないようなので手元
> では削除しました。
> 
> また src-diclib/filemap.c でも parse error になります。
> #include <sys/mman.h> は
> #include <sys/types.h> の後にある必要があります。
> 
> とりあえず以上の 2点の変更で動いています。

src-diclib/matrix.c
src-splitter/depgraph.c
src-splitter/wordlist.c
depgraph/mkdepgraph.c

でも同様です。

ということで、ビルドを通すためのパッチです。

--- ../anthy-7100/src-diclib/file_dic.c	Sat Oct 22 00:13:09 2005
+++ src-diclib/file_dic.c	Tue Nov  1 20:36:42 2005
@@ -16,7 +16,6 @@
  *
  */
 
-#include <netinet/in.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
--- ../anthy-7100/src-diclib/matrix.c	Sat Oct 22 00:13:09 2005
+++ src-diclib/matrix.c	Tue Nov  1 20:36:50 2005
@@ -54,7 +54,6 @@
  */
 #include <stdio.h>
 #include <stdlib.h>
-#include <netinet/in.h>
 
 /* public APIs */
 #include "matrix.h"
--- ../anthy-7100/src-diclib/filemap.c	Sat Oct 22 00:13:09 2005
+++ src-diclib/filemap.c	Tue Nov  1 20:32:26 2005
@@ -21,8 +21,8 @@
   License along with this library; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
  */
-#include <sys/mman.h>
 #include <sys/types.h>
+#include <sys/mman.h>
 #include <sys/stat.h>
 #include <unistd.h>
 #include <fcntl.h>
--- ../anthy-7100/src-splitter/depgraph.c	Sat Oct 22 00:13:09 2005
+++ src-splitter/depgraph.c	Tue Nov  1 20:37:38 2005
@@ -22,7 +22,6 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
-#include <netinet/in.h>
 
 #include "config.h"
 #include <anthy.h>
--- ../anthy-7100/src-splitter/wordlist.c	Sat Oct 22 00:13:09 2005
+++ src-splitter/wordlist.c	Tue Nov  1 20:37:46 2005
@@ -18,7 +18,6 @@
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>
-#include <netinet/in.h>
 
 #include <alloc.h>
 #include <record.h>
--- ../anthy-7100/depgraph/mkdepgraph.c	Sat Oct 22 00:13:08 2005
+++ depgraph/mkdepgraph.c	Tue Nov  1 20:36:23 2005
@@ -9,7 +9,6 @@
 #include <stdio.h>
 #include <string.h>
 #include <stdlib.h>
-#include <netinet/in.h>
 
 #include <alloc.h>
 #include <conf.h>


----
こがよういちろう



Anthy-dev メーリングリストの案内
Back to archive index