Ruby Gem の C 拡張機能を作成しています。しかし、 #find_header の動作は非常に奇妙です。
# extconf.rb
require 'mkmf'
find_header 'pocketsphinx.h', '/usr/local/include/pocketsphinx'
find_header 'cmd_ln.h', '/usr/local/include/sphinxbase'
find_library 'pocketsphinx', 'ps_args'
find_library 'sphinxbase', 'cmd_ln_init'
create_makefile 'pocket_sphinx/pocket_sphinx'
$ rake compile
rake-compiler が提供する実行によって得られたものは次のとおりです。
$ rake compile
cd tmp/x86_64-darwin13.0/pocket_sphinx/2.1.2
/Users/siegfried/.rvm/rubies/ruby-2.1.2/bin/ruby -I. ../../../../ext/pocket_sphinx/extconf.rb
checking for pocketsphinx.h in /usr/local/include/pocketsphinx... no
checking for cmd_ln.h in /usr/local/include/sphinxbase... yes
checking for ps_args() in -lpocketsphinx... yes
checking for cmd_ln_init() in -lsphinxbase... yes
creating Makefile
ヘッダーが欠落していることを示していますが、実際にはそうではありません。
$ ls /usr/local/include/pocketsphinx
cmdln_macro.h fsg_set.h pocketsphinx.h pocketsphinx.pxd pocketsphinx_export.h ps_lattice.h ps_mllr.h
なにが問題ですか?