[EMAIL PROTECTED] wrote: > I am attempting to run lighttpd with FastCGI. I understand I > must first get FastCGI support into php4. Can anyone point me > in the right direction? I have tried all types of switches while > compiling php4. > > I have been looking for any switches I can set by scanning > through the Makefile of php4 in the ports.
PHP has a meta-port for cgi: www/php4-cgi. Use that to start. There are a few options you have to define, in the Makefile of lang/php4, you will find: .if ${PHP_SAPI} == "cgi" OPTIONS= REDIRECT "Enable force-cgi-redirect support" off \ DISCARD "Enable discard-path support" off \ FASTCGI "Enable fastcgi support" off \ PATHINFO "Enable path-info-check support" on .endif And .if ${PHP_SAPI} == "cgi" .if defined(WITH_REDIRECT) CONFIGURE_ARGS+=--enable-force-cgi-redirect .endif .if defined(WITH_DISCARD) CONFIGURE_ARGS+=--enable-discard-path .endif .if defined(WITH_FASTCGI) CONFIGURE_ARGS+=--enable-fastcgi .endif .if defined(WITHOUT_PATHINFO) CONFIGURE_ARGS+=--disable-path-info-check .endif .endif You want WITH_REDIRECT, as well as WITH_DISCARD and WITH_FASTCGI. (Forgot what to do with PATHINFO). Kind Regards, Sander Holthaus _______________________________________________ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"