I think they don't have ssl kit for apache2 yet . So if you want to use ssl , you have to choose apache 1.x .
php4.2.1+apache2.0.36 is like this .
tar xvzf httpd-2.0.36.tar.gz
cd httpd-2.0.36
./configure --enable-shared=max --enable-module=most
make;make install
tar xvzf php-4.2.1.tar.gz
cd php-4.2.1
./configure --with-mysql --enable-track-vars --with-apxs2=/usr/local/apache2/bin/apxs --enable-versioning --enable-mbstring
make;make install
regards,