Por favor, compile o yajl.
root@localhost:/tmp# git clone git://github.com/lloyd/yajl
root@localhost:/tmp# cd yajl
root@localhost:/tmp/yajl# ./configure && make && make install
Se você se deparar com a seguinte mensagem de erro, instale o pacote cmake.
E então compile o yajl.
root@localhost:/tmp/yajl# ./configure && make && make install
== removing old build files
== running CMake in build directory
./configure: 41: ./configure: cmake: not found
The "cmake" program is required to configure yajl.
It's available from most ports/packaging systems and http://cmake.org
root@localhost:/tmp/yajl# apt-get install cmake
root@localhost:/tmp/yajl# ./configure && make && make install
Obrigado.