Como instalar o pacote libyajl no Ubuntu?

2

Estou tentando instalar o pacote libvert para o qual este erro está chegando:

**configure: error: You must install the libyajl library & headers to compile libvirt**

Como resolver esse erro, tentei as etapas abaixo:

  1. Pacote transferido de git/lloyd

  2. ./configure

por favor me ajude a completar a instalação. Depois de ./configure qual etapa devo fazer?

    
por Swapnil Patil 17.01.2016 / 14:12

1 resposta

5

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.

    
por Westporch 25.08.2016 / 11:06