configure: error: “não foi possível encontrar o zlib libaray.” no Bash

0

Estou tentando instalar um programa "bfast" no meu sistema linux, mas estou recebendo os seguintes erros:

OS = CentOS

Pacote libdv-devel-1.0.0-17.el7.x86_64 já instalado e versão mais recente

Pacote glibc-devel-2.17-106.el7_2.1.i686 já instalado e versão mais recente

Bfast:

link

sh autogen.sh

./ configure

**fatal: Not a git repository (or any of the parent directories): .git**
checking bzlib.h usability... yes
checking bzlib.h presence... yes
checking for bzlib.h... yes
**checking for special C compiler options needed for large files... no**
**checking for _FILE_OFFSET_BITS value needed for large files... no**
checking for an ANSI C-conforming const... yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible malloc... no
checking for stdlib.h... (cached) yes
**checking for GNU libc compatible realloc... no
checking for pow in -lm... no
checking for gzread in -lz... no
configure: error: "could not find the zlib libaray."**

No entanto, eu já instalei pacotes de pré-requisitos para isso.

whereis zlib
**zlib: /usr/include/zlib.h** /usr/share/man/man3/zlib.3.g

whereis bzip2
**bzip2: /usr/bin/bzip2** /usr/share/man/man1/bzip2.1.gz
    
por Rupesh 22.01.2016 / 15:37

1 resposta

1

Você precisa instalar os pacotes de desenvolvimento, geralmente chamados de foo-devel ou similar. Ou você pode estar tentando construir a arquitetura errada.

    
por 22.01.2016 / 16:30