Forum Moderators: bakedjake
...and please don't put the obvious answer, which is "both". :-)
The joys and often frustrations of compiling code.
Yes I enjoy compiling but prefer to be called a geek
--------------------------------------------------------
cd openssl-0.9.7a
sh config
make
cd ../mod_ssl-2.8.12-1.3.27
./configure --with-apache=../apache_1.3.27
cd ../mod_perl-1.27
perl Makefile.PL \
APACHE_SRC=../apache_1.3.27/src \
DO_HTTPD=1 \
USE_APACI=1 \
EVERYTHING=1
make
make install
cd ../apache_1.3.27
patch -p0 < fp-suexec
patch -p0 < fp-patch
SSL_BASE=../openssl-0.9.7a \
./configure \
--prefix=/usr/local/apache \
--enable-suexec \
--suexec-caller=nobody \
--suexec-userdir=.www \
--suexec-docroot=/home \
--suexec-logfile=/usr/local/apache/logs/suexec.log \
--suexec-uidmin=500 \
--suexec-gidmin=500 \
--suexec-safepath="/usr/bin:/usr/sbin" \
--enable-module=most \
--enable-shared=max \
--add-module=mod_frontpage.c \
--activate-module=src/modules/perl/libperl.a \
--enable-shared=perl
make
make install
Using configure is totally uncool. Running configure -> make -> make test -> make install is just no fun any more. Manually figuring out the compiler flags, locations of libs, etc. and compiling and linking yourself, thatīs where the fun begins ;) ME THINKS NOT!
Andreas