Hi,
aptitude install build-essential libpcre3-dev
cd /usr/src
wget http://apache.rediris.es//httpd/httpd-2.4.23.tar.gz
wget http://apache.rediris.es//apr/apr-1.5.2.tar.gz
wget http://apache.rediris.es//apr/apr-util-1.5.4.tar.gz
tar -xzvf httpd-2.4.23.tar.gz
tar -xzvf apr-1.5.2.tar.gz
tar -xzvf apr-util-1.5.4.tar.gz
mv apr-1.5.2 httpd-2.4.23/srclib/apr
mv apr-util-1.5.4 httpd-2.4.23/srclib/apr-util
cd httpd-2.4.23
./configure
make
make install
./configure --help | less
./configure --prefix=/usr/local/apache2 --enable-ssl --enable-so --with-included-apr
make
make install
Regards,