Perl faltando ao instalar o nginx no centos

1

Eu estou tentando instalar o nginx no meu servidor, mas ele continua retornando "./configure: error: perl 5.6.1 ou superior é necessário" mesmo que eu tenha perl v5.8.8 !!!!

Eu já fiz o download do perl e tentei configurá-lo usando o seguinte comando:

./configure --with-http_stub_status_module --with-http_perl_module --with-http_flv_module --add-module=nginx_mod_h264_streaming

aqui está a saída:

[root@fst nginx-0.8.55]# ./configure --with-http_stub_status_module --with-http_perl_module --with-http_flv_module --add-module=nginx_mod_h264_streaming
checking for OS
 + Linux 2.6.18-308.el5 x86_64
checking for C compiler ... found
 + using GNU C compiler
 + gcc version: 4.1.2 20080704 (Red Hat 4.1.2-52)
checking for gcc -pipe switch ... found
checking for gcc builtin atomic operations ... found
checking for C99 variadic macros ... found
checking for gcc variadic macros ... found
checking for unistd.h ... found
checking for inttypes.h ... found
checking for limits.h ... found
checking for sys/filio.h ... not found
checking for sys/param.h ... found
checking for sys/mount.h ... found
checking for sys/statvfs.h ... found
checking for crypt.h ... found
checking for Linux specific features
checking for epoll ... found
checking for sendfile() ... found
checking for sendfile64() ... found
checking for sys/prctl.h ... found
checking for prctl(PR_SET_DUMPABLE) ... found
checking for sched_setaffinity() ... found
checking for crypt_r() ... found
checking for sys/vfs.h ... found
checking for nobody group ... found
checking for poll() ... found
checking for /dev/poll ... not found
checking for kqueue ... not found
checking for crypt() ... not found
checking for crypt() in libcrypt ... found
checking for F_READAHEAD ... not found
checking for posix_fadvise() ... found
checking for O_DIRECT ... found
checking for F_NOCACHE ... not found
checking for directio() ... not found
checking for statfs() ... found
checking for statvfs() ... found
checking for dlopen() ... not found
checking for dlopen() in libdl ... found
checking for sched_yield() ... found
checking for SO_SETFIB ... not found
configuring additional modules
adding module in nginx_mod_h264_streaming
 + ngx_http_h264_streaming_module was configured
checking for PCRE library ... found
checking for system md library ... not found
checking for system md5 library ... not found
checking for OpenSSL md5 crypto library ... found
checking for zlib library ... found
checking for perl
 + perl version: v5.8.8 built for x86_64-linux-thread-multi

./configure: error: perl 5.6.1 or higher is required
    
por Ahoura Ghotbi 08.04.2012 / 23:52

3 respostas

4

A menos que você realmente saiba o que está fazendo, recomendo usar o yum para instalar o nginx. Está disponível no repositório EPEL, provavelmente rpmforge também.

Edit: Já que você precisa de módulos customizados para o nginx, pode ser melhor colocar sua custom build em um RPM. A manutenção de compilações de origem em mais de uma dúzia de servidores se torna problemática para uma pequena equipe administrativa.

    
por 09.04.2012 / 00:14
1

Talvez você esteja perdendo os arquivos de cabeçalho do Perl. Tente instalar o pacote de desenvolvimento Perl:

yum install perl-devel
    
por 07.06.2012 / 06:51
0

você provavelmente está perdendo os arquivos de desenvolvimento. Eu vi isso acontecer se você não tiver o seguinte pacote instalado

yum install glibc-headers
    
por 09.04.2012 / 02:45