requisitos - ubuntu versiones
¿Qué paquete debo instalar para ''pcre-devel''? (2)
En Ubuntu 9.10:
$ apt-cache search pcre | grep -- -dev
libpcre3-dev - Perl 5 Compatible Regular Expression Library - development files
libghc6-pcre-light-dev - Haskell library for Perl 5-compatible regular expressions
libghc6-regex-base-dev - GHC 6 library providing an API for regular expressions
libpcre++-dev - C++ wrapper class for pcre (development)
libpcre-ocaml-dev - OCaml bindings for PCRE (Perl Compatible Regular Expression)
$
Eso sería libpcre3-dev
para C, o libpcre++-dev
para C ++.
De la misma manera, el lighthttpd
ya existe también:
$ apt-cache search lighttpd
collectd - statistics collection and monitoring daemon
lighttpd - A fast webserver with minimal memory footprint
lighttpd-dev - Development files for lighttpd
lighttpd-doc - Documentation for lighttpd
lighttpd-mod-cml - Cache meta language module for lighttpd
lighttpd-mod-magnet - Control the request handling module for lighttpd
lighttpd-mod-mysql-vhost - MySQL-based virtual host configuration for lighttpd
lighttpd-mod-trigger-b4-dl - Anti-deep-linking module for lighttpd
lighttpd-mod-webdav - WebDAV module for lighttpd
mongrel-cluster - Mongrel plugin to manage a cluster of Mongrel servers
mono-fastcgi-server - ASP.NET backend for FastCGI webservers - default version
mono-fastcgi-server1 - ASP.NET 1.1 backend for FastCGI webservers
mono-fastcgi-server2 - ASP.NET 2.0 backend for FastCGI webservers
$
Necesito instalar el paquete pcre-devel
para compilar lighttpd
en Ubuntu:
configure: error: pcre-config no encontrado, instale el paquete pcre-devel o compile con --without-pcre
¿Puedes decirme cómo hacer eso?
Intente usar la apt-cache search
, por ejemplo,
sudo apt-cache search pcre
Para mí esto resulta mucho, así que grep para la palabra clave dev
.
Esto activa libpcre3-dev
y libpcre++-dev
.
lighttpd
utilizará uno de esos sin duda.
Entonces, si su búsqueda muestra libpcre3-dev
, puede instalar usando:
sudo apt-get install libpcre3-dev
Sin embargo, ¿hay alguna razón por la que estás compilando lighttpd?
¿Por qué no instalar usando apt-get
?
Incluyendo lighttpd-dev
, lighttpd-doc
y algunos módulos relacionados.