php-mecabインストールで「checking for mecab-config... configure: error: not found」の対応メモ
phpでmecab - Qiita
ここを参考にやったら1箇所だけ詰まったのでメモ
> ./configure --with-php-config=/usr/bin/php-config --with-mecab=/usr/bin/mecab-config ・・・ configure: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers. checking for gawk... gawk checking whether to enable MeCab support... yes, shared checking for mecab-config... configure: error: not found
mecab-configがないらしいエラーで以下をインストールしたら上手くいった
sudo yum install mecab-devel
以上です