When compiling PHP3RC4 with Stronghold 2.3 you will get an
error right away. It will complain about parse errors at
line 621 of httpd.h.
To fix the problem note the following
The original lines in question will look like
------------
/* STRONGHOLD */
SSL *ssl; /* active ssl connection. NULL if not being used. */
X509 *cert; /* cache of certificate received */
char *hashname; /* filename where certificate is stored */
-------------
If your change it to ...
-------------
/* STRONGHOLD */
#if defined(STRONGHOLD)
SSL *ssl; /* active ssl connection. NULL if not being used. */
X509 *cert; /* cache of certificate received */
char *hashname; /* filename where certificate is stored */
#endif
-------------