Tomoeのインストール
Tomoeという日本語の手書き文字認識ライブラリがある。
手書き文字認識エンジン Tomoe
使いたいと思ったのだが、Macでビルドしようとしたところビルドエラーが出たので、その解決方法をメモ。
その1
tomoe-0.6.0/lib/glib-utils.hを開いて
#include <glib/garray.h>
を
#include <glib.h>
に変更。
その2
../../../tomoe-0.6.0/module/dict/tomoe-dict-mysql.c:35:10: fatal error: 'mysql/errmsg.h' file not found #include <mysql/errmsg.h> ^ 1 error generated.
tomoe-0.6.0/module/dict/tomoe-dict-mysql.cを開いて
#include <mysql/errmsg.h>
を
#include <errmsg.h>
に変更。