Can php-4.3.6 be built with multiple SAPI modules at once? I've always built PHP as a dynamic Apache module, but now I need to include thttpd support. Running configure with both --with-apxs=/usr/site/apache/sbin/apxs and --with-thttpd=/build/thttpd-2.21b/src/dist seems to work fine: checking for Apache 1.x module support via DSO through APXS... yes ........... checking for thttpd... yes, using /build/thttpd-2.21b/src/dist but then make and "make install" only handle thttpd. Running "make distclean", removing --with-thttpd, and re-building works fine for the apache side of things, but now I'm left wondering if I will run into trouble down the line.
Tod