Erro ao tentar instalar o GPGME

3

Estou tentando seguir este descrption para instalar a interface do GnuPG no Ubuntu. A saída de ./configure é

checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking whether make supports nested variables... (cached) yes
checking for style of include used by make... GNU
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: in '/home/batzinger/Downloads/gpgme-1.8.0':
configure: error: no acceptable C compiler found in $PATH
See 'config.log' for more details

O pacote build-essential já está instalado. E parece não haver outra solução na internet. Alguma outra maneira de corrigir esse problema?

    
por tux 19.03.2017 / 02:05

1 resposta

2

Se estiver usando o Ubuntu, você deve estar bem apenas instalando alguns pacotes do repositório. php-gnupg tem o pacote libgpgme11 do GPGME como dependência. Então, em vez de compilar o GPGME sozinho, basta instalar os pacotes necessários:

sudo apt-get install php-gnupg

Isso também significa que você obterá atualizações do GPGME e da biblioteca PHP junto com o sistema operacional e não precisará se preocupar com elas manualmente.

    
por Jens Erat 19.03.2017 / 12:36