2017年1月7日土曜日

cygwinでansibleインストール時に「 /usr/include/sys/time.h:104:34: エラー: 不明な型名 'u_int' です」のエラー解決方法

cyginでansibleをインストールしたら、以下のエラーが出来ました
 /usr/include/sys/time.h:104:34: エラー: 不明な型名 'u_int' です

解決方法は、ファイル「/usr/include/sys/time.h」に「u_int」の定義を追加すること

vi /usr/include/sys/time.h


#ifndef u_int
typedef unsigned int u_int;
#endif

0 件のコメント:

コメントを投稿